Title: [212702] trunk/Source/WebInspectorUI
Revision
212702
Author
[email protected]
Date
2017-02-20 22:37:30 -0800 (Mon, 20 Feb 2017)

Log Message

Web Inspector: Tooltip for "Show console tab" should read "Show Console tab"
https://bugs.webkit.org/show_bug.cgi?id=168630
<rdar://problem/30621662>

Patch by Joseph Pecoraro <[email protected]> on 2017-02-20
Reviewed by Brian Burg.

* Localizations/en.lproj/localizedStrings.js:
* UserInterface/Views/LogContentView.js:
(WebInspector.LogContentView):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (212701 => 212702)


--- trunk/Source/WebInspectorUI/ChangeLog	2017-02-21 06:37:06 UTC (rev 212701)
+++ trunk/Source/WebInspectorUI/ChangeLog	2017-02-21 06:37:30 UTC (rev 212702)
@@ -1,3 +1,15 @@
+2017-02-20  Joseph Pecoraro  <[email protected]>
+
+        Web Inspector: Tooltip for "Show console tab" should read "Show Console tab"
+        https://bugs.webkit.org/show_bug.cgi?id=168630
+        <rdar://problem/30621662>
+
+        Reviewed by Brian Burg.
+
+        * Localizations/en.lproj/localizedStrings.js:
+        * UserInterface/Views/LogContentView.js:
+        (WebInspector.LogContentView):
+
 2017-02-20  Brian Burg  <[email protected]>
 
         Web Inspector: RTL: back/forward navigation buttons should not be flipped

Modified: trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js (212701 => 212702)


--- trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js	2017-02-21 06:37:06 UTC (rev 212701)
+++ trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js	2017-02-21 06:37:30 UTC (rev 212702)
@@ -694,11 +694,11 @@
 localizedStrings["Show %d More"] = "Show %d More";
 localizedStrings["Show All"] = "Show All";
 localizedStrings["Show All Nodes (%d More)"] = "Show All Nodes (%d More)";
+localizedStrings["Show Console tab"] = "Show Console tab";
 localizedStrings["Show Remaining (%d)"] = "Show Remaining (%d)";
 localizedStrings["Show Source"] = "Show Source";
 localizedStrings["Show all resources"] = "Show all resources";
 localizedStrings["Show compositing borders"] = "Show compositing borders";
-localizedStrings["Show console tab"] = "Show console tab";
 localizedStrings["Show errors logged to the Console"] = "Show errors logged to the Console";
 localizedStrings["Show messages logged to the Console"] = "Show messages logged to the Console";
 localizedStrings["Show network information"] = "Show network information";

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.js (212701 => 212702)


--- trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.js	2017-02-21 06:37:06 UTC (rev 212701)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.js	2017-02-21 06:37:30 UTC (rev 212702)
@@ -84,7 +84,7 @@
         this._clearLogNavigationItem = new WebInspector.ButtonNavigationItem("clear-log", WebInspector.UIString("Clear log (%s or %s)").format(WebInspector.clearKeyboardShortcut.displayName, this._logViewController.messagesAlternateClearKeyboardShortcut.displayName), "Images/NavigationItemClear.svg", clearImageDimensions, clearImageDimensions);
         this._clearLogNavigationItem.addEventListener(WebInspector.ButtonNavigationItem.Event.Clicked, this._clearLog, this);
 
-        this._showConsoleTabNavigationItem = new WebInspector.ButtonNavigationItem("show-tab", WebInspector.UIString("Show console tab"), "Images/SplitToggleUp.svg", 16, 16);
+        this._showConsoleTabNavigationItem = new WebInspector.ButtonNavigationItem("show-tab", WebInspector.UIString("Show Console tab"), "Images/SplitToggleUp.svg", 16, 16);
         this._showConsoleTabNavigationItem.addEventListener(WebInspector.ButtonNavigationItem.Event.Clicked, this._showConsoleTab, this);
 
         this.messagesElement.addEventListener("contextmenu", this._handleContextMenuEvent.bind(this), false);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to