summaryrefslogtreecommitdiffstats
path: root/WebCore/inspector/front-end/ConsoleView.js
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/inspector/front-end/ConsoleView.js')
-rw-r--r--WebCore/inspector/front-end/ConsoleView.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/WebCore/inspector/front-end/ConsoleView.js b/WebCore/inspector/front-end/ConsoleView.js
index 9d5042e..b9f6d0a 100644
--- a/WebCore/inspector/front-end/ConsoleView.js
+++ b/WebCore/inspector/front-end/ConsoleView.js
@@ -82,11 +82,11 @@ WebInspector.ConsoleView = function(drawer)
return categoryElement;
}
- this.allElement = createFilterElement.call(this, "All");
+ this.allElement = createFilterElement.call(this, WebInspector.UIString("All"));
createDividerElement.call(this);
- this.errorElement = createFilterElement.call(this, "Errors");
- this.warningElement = createFilterElement.call(this, "Warnings");
- this.logElement = createFilterElement.call(this, "Logs");
+ this.errorElement = createFilterElement.call(this, WebInspector.UIString("Errors"));
+ this.warningElement = createFilterElement.call(this, WebInspector.UIString("Warnings"));
+ this.logElement = createFilterElement.call(this, WebInspector.UIString("Logs"));
this.filter(this.allElement, false);
this._registerShortcuts();