Title: [191418] trunk/Source/WebInspectorUI
Revision
191418
Author
commit-qu...@webkit.org
Date
2015-10-21 17:29:51 -0700 (Wed, 21 Oct 2015)

Log Message

Web Inspector: Add forgotten WebInspector.UIString from r190521
https://bugs.webkit.org/show_bug.cgi?id=150425

Patch by Devin Rousso <dcrousso+web...@gmail.com> on 2015-10-21
Reviewed by Timothy Hatcher.

* Localizations/en.lproj/localizedStrings.js:
* UserInterface/Views/CSSStyleDeclarationTextEditor.js:
(UserInterface/Views/CSSStyleDeclarationTextEditor.prototype._createTextMarkerForPropertyIfNeeded)

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (191417 => 191418)


--- trunk/Source/WebInspectorUI/ChangeLog	2015-10-22 00:26:29 UTC (rev 191417)
+++ trunk/Source/WebInspectorUI/ChangeLog	2015-10-22 00:29:51 UTC (rev 191418)
@@ -1,5 +1,16 @@
 2015-10-21  Devin Rousso  <dcrousso+web...@gmail.com>
 
+        Web Inspector: Add forgotten WebInspector.UIString from r190521
+        https://bugs.webkit.org/show_bug.cgi?id=150425
+
+        Reviewed by Timothy Hatcher.
+
+        * Localizations/en.lproj/localizedStrings.js:
+        * UserInterface/Views/CSSStyleDeclarationTextEditor.js:
+        (UserInterface/Views/CSSStyleDeclarationTextEditor.prototype._createTextMarkerForPropertyIfNeeded)
+
+2015-10-21  Devin Rousso  <dcrousso+web...@gmail.com>
+
         Web Inspector: Adjust usages of classList.toggle to ensure a true/false value instead of undefined
         https://bugs.webkit.org/show_bug.cgi?id=150424
 

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


--- trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js	2015-10-22 00:26:29 UTC (rev 191417)
+++ trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js	2015-10-22 00:29:51 UTC (rev 191418)
@@ -417,6 +417,7 @@
 localizedStrings["Opacity"] = "Opacity";
 localizedStrings["Option-click to show all units"] = "Option-click to show all units";
 localizedStrings["Option-click to show all values"] = "Option-click to show all values";
+localizedStrings["Option-click to show source"] = "Option-click to show source";
 localizedStrings["Options"] = "Options";
 localizedStrings["Order"] = "Order";
 localizedStrings["Original"] = "Original";

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationTextEditor.js (191417 => 191418)


--- trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationTextEditor.js	2015-10-22 00:26:29 UTC (rev 191417)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationTextEditor.js	2015-10-22 00:29:51 UTC (rev 191418)
@@ -967,7 +967,7 @@
                 && !property.implicit && typeof this._delegate.cssStyleDeclarationTextEditorShowProperty === "function") {
 
             let arrowElement = WebInspector.createGoToArrowButton();
-            arrowElement.title = "Option-click to show source";
+            arrowElement.title = WebInspector.UIString("Option-click to show source");
 
             let delegate = this._delegate;
             arrowElement.addEventListener("click", function(event) {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to