Title: [241794] releases/WebKitGTK/webkit-2.24/Source/WebInspectorUI
Revision
241794
Author
carlo...@webkit.org
Date
2019-02-20 04:43:23 -0800 (Wed, 20 Feb 2019)

Log Message

Merge r241732 - Web Inspector: duplicate left double quotation mark (\u201C) in 'Unable to show certificate for ā€œ%sā€œ.'
https://bugs.webkit.org/show_bug.cgi?id=194782
<rdar://problem/48159683>

Reviewed by Joseph Pecoraro.

* UserInterface/Models/Resource.js:
(WI.Resource.prototype.async showCertificate):
* Localizations/en.lproj/localizedStrings.js:

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.24/Source/WebInspectorUI/ChangeLog (241793 => 241794)


--- releases/WebKitGTK/webkit-2.24/Source/WebInspectorUI/ChangeLog	2019-02-20 12:43:19 UTC (rev 241793)
+++ releases/WebKitGTK/webkit-2.24/Source/WebInspectorUI/ChangeLog	2019-02-20 12:43:23 UTC (rev 241794)
@@ -1,3 +1,15 @@
+2019-02-18  Devin Rousso  <drou...@apple.com>
+
+        Web Inspector: duplicate left double quotation mark (\u201C) in 'Unable to show certificate for ā€œ%sā€œ.'
+        https://bugs.webkit.org/show_bug.cgi?id=194782
+        <rdar://problem/48159683>
+
+        Reviewed by Joseph Pecoraro.
+
+        * UserInterface/Models/Resource.js:
+        (WI.Resource.prototype.async showCertificate):
+        * Localizations/en.lproj/localizedStrings.js:
+
 2019-02-17  Matt Baker  <mattba...@apple.com>
 
         Web Inspector: Frontend performance is very slow reloading theverge.com - 50% of time in TreeOutline _indexOfTreeElement

Modified: releases/WebKitGTK/webkit-2.24/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js (241793 => 241794)


--- releases/WebKitGTK/webkit-2.24/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js	2019-02-20 12:43:19 UTC (rev 241793)
+++ releases/WebKitGTK/webkit-2.24/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js	2019-02-20 12:43:23 UTC (rev 241794)
@@ -371,6 +371,7 @@
 localizedStrings["Element may overlap another compositing element"] = "Element may overlap another compositing element";
 localizedStrings["Element overlaps other compositing element"] = "Element overlaps other compositing element";
 localizedStrings["Elements"] = "Elements";
+localizedStrings["Emulate User Gesture"] = "Emulate User Gesture";
 localizedStrings["Enable Breakpoint"] = "Enable Breakpoint";
 localizedStrings["Enable Breakpoints"] = "Enable Breakpoints";
 localizedStrings["Enable Changes Panel"] = "Enable Changes Panel";
@@ -460,7 +461,6 @@
 localizedStrings["Format: RGBA"] = "Format: RGBA";
 localizedStrings["Format: Short Hex"] = "Format: Short Hex";
 localizedStrings["Format: Short Hex with Alpha"] = "Format: Short Hex with Alpha";
-localizedStrings["Forms"] = "Forms";
 localizedStrings["Forward (%s)"] = "Forward (%s)";
 localizedStrings["Fragment"] = "Fragment";
 localizedStrings["Fragment Shader"] = "Fragment Shader";
@@ -1021,7 +1021,7 @@
 localizedStrings["URL Breakpoint\u2026"] = "URL Breakpoint\u2026";
 localizedStrings["Unable to determine path to property from root"] = "Unable to determine path to property from root";
 localizedStrings["Unable to parse as JSON: %s"] = "Unable to parse as JSON: %s";
-localizedStrings["Unable to show certificate for \u201C%s\u201C"] = "Unable to show certificate for \u201C%s\u201C";
+localizedStrings["Unable to show certificate for \u201C%s\u201D"] = "Unable to show certificate for \u201C%s\u201D";
 localizedStrings["Uncaught Exceptions"] = "Uncaught Exceptions";
 localizedStrings["Undefined custom element"] = "Undefined custom element";
 localizedStrings["Unique"] = "Unique";

Modified: releases/WebKitGTK/webkit-2.24/Source/WebInspectorUI/UserInterface/Models/Resource.js (241793 => 241794)


--- releases/WebKitGTK/webkit-2.24/Source/WebInspectorUI/UserInterface/Models/Resource.js	2019-02-20 12:43:19 UTC (rev 241793)
+++ releases/WebKitGTK/webkit-2.24/Source/WebInspectorUI/UserInterface/Models/Resource.js	2019-02-20 12:43:23 UTC (rev 241794)
@@ -1111,7 +1111,7 @@
 
     async showCertificate()
     {
-        let errorString = WI.UIString("Unable to show certificate for \u201C%s\u201C").format(this.url);
+        let errorString = WI.UIString("Unable to show certificate for \u201C%s\u201D").format(this.url);
 
         try {
             let {serializedCertificate} = await NetworkAgent.getSerializedCertificate(this._requestIdentifier);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to