From 369789aeb2d881aea4f53a70cff4d88fe7a6c75a Mon Sep 17 00:00:00 2001 From: "timeless%mozdev.org" Date: Wed, 5 Nov 2003 22:27:34 +0000 Subject: [PATCH] Bug 224215 Edit Attribute says "Enter the attribute name" instead of "Enter the attribute value" r=caillon sr=heikki git-svn-id: svn://10.0.0.236/trunk@148881 18797224-902f-48f8-a5cc-f745e15eee43 --- .../inspector/resources/content/viewers/domNode/domNode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/extensions/inspector/resources/content/viewers/domNode/domNode.js b/mozilla/extensions/inspector/resources/content/viewers/domNode/domNode.js index 03c3df50e7e..85853ddbcec 100644 --- a/mozilla/extensions/inspector/resources/content/viewers/domNode/domNode.js +++ b/mozilla/extensions/inspector/resources/content/viewers/domNode/domNode.js @@ -389,7 +389,7 @@ cmdEditEdit.prototype = var dummy = { value: false }; var bundle = viewer.pane.panelset.stringBundle; - var msg = bundle.getString("enterAttrName.message"); + var msg = bundle.getString("enterAttrValue.message"); var title = bundle.getString("editAttribute.title"); if (gPromptService.prompt(window, title, msg, attrValue, null, dummy)) {