Title: [224595] trunk/Source/WebInspectorUI
Revision
224595
Author
bb...@apple.com
Date
2017-11-08 13:48:13 -0800 (Wed, 08 Nov 2017)

Log Message

Web Inspector: fix incorrect curly quote orientation in a UIString
https://bugs.webkit.org/show_bug.cgi?id=179353
<rdar://problem/35368697>

Reviewed by Joseph Pecoraro.

I didn't see any other instances of this mistake in our localized strings.

* Localizations/en.lproj/localizedStrings.js:
* UserInterface/Views/ResourceTimelineDataGridNode.js:
Fix it.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (224594 => 224595)


--- trunk/Source/WebInspectorUI/ChangeLog	2017-11-08 21:26:33 UTC (rev 224594)
+++ trunk/Source/WebInspectorUI/ChangeLog	2017-11-08 21:48:13 UTC (rev 224595)
@@ -1,3 +1,17 @@
+2017-11-08  Brian Burg  <bb...@apple.com>
+
+        Web Inspector: fix incorrect curly quote orientation in a UIString
+        https://bugs.webkit.org/show_bug.cgi?id=179353
+        <rdar://problem/35368697>
+
+        Reviewed by Joseph Pecoraro.
+
+        I didn't see any other instances of this mistake in our localized strings.
+
+        * Localizations/en.lproj/localizedStrings.js:
+        * UserInterface/Views/ResourceTimelineDataGridNode.js:
+        Fix it.
+
 2017-11-08  Joseph Pecoraro  <pecor...@apple.com>
 
         Web Inspector: Remove unused Page.ScriptIdentifier protocol type

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


--- trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js	2017-11-08 21:26:33 UTC (rev 224594)
+++ trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js	2017-11-08 21:48:13 UTC (rev 224595)
@@ -764,7 +764,7 @@
 localizedStrings["Resource failed to load."] = "Resource failed to load.";
 localizedStrings["Resource has no content"] = "Resource has no content";
 localizedStrings["Resource has no timing data"] = "Resource has no timing data";
-localizedStrings["Resource was loaded with the “data“ scheme."] = "Resource was loaded with the “data“ scheme.";
+localizedStrings["Resource was loaded with the “data” scheme."] = "Resource was loaded with the “data” scheme.";
 localizedStrings["Resource was served from the cache."] = "Resource was served from the cache.";
 localizedStrings["Resources"] = "Resources";
 localizedStrings["Response"] = "Response";

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ResourceTimelineDataGridNode.js (224594 => 224595)


--- trunk/Source/WebInspectorUI/UserInterface/Views/ResourceTimelineDataGridNode.js	2017-11-08 21:26:33 UTC (rev 224594)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ResourceTimelineDataGridNode.js	2017-11-08 21:48:13 UTC (rev 224595)
@@ -360,7 +360,7 @@
             if (resource.failed)
                 descriptionElement.textContent = WI.UIString("Resource failed to load.");
             else if (resource.urlComponents.scheme === "data")
-                descriptionElement.textContent = WI.UIString("Resource was loaded with the “data“ scheme.");
+                descriptionElement.textContent = WI.UIString("Resource was loaded with the “data” scheme.");
             else
                 descriptionElement.textContent = WI.UIString("Resource was served from the cache.");
             popoverContentElement.appendChild(descriptionElement);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to