Title: [214719] trunk/Source
- Revision
- 214719
- Author
- m...@apple.com
- Date
- 2017-04-01 17:03:51 -0700 (Sat, 01 Apr 2017)
Log Message
Localizable strings files are out of date
https://bugs.webkit.org/show_bug.cgi?id=170383
Reviewed by Tim Horton.
Ran update-webkit-localizable-strings.
Source/WebCore:
* English.lproj/Localizable.strings:
Source/WebInspectorUI:
* Localizations/en.lproj/localizedStrings.js:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (214718 => 214719)
--- trunk/Source/WebCore/ChangeLog 2017-04-01 22:57:47 UTC (rev 214718)
+++ trunk/Source/WebCore/ChangeLog 2017-04-02 00:03:51 UTC (rev 214719)
@@ -1,5 +1,16 @@
2017-04-01 Dan Bernstein <m...@apple.com>
+ Localizable strings files are out of date
+ https://bugs.webkit.org/show_bug.cgi?id=170383
+
+ Reviewed by Tim Horton.
+
+ Ran update-webkit-localizable-strings.
+
+ * English.lproj/Localizable.strings:
+
+2017-04-01 Dan Bernstein <m...@apple.com>
+
[Xcode] In engineering builds, linker warns about libwebrtc.dylib’s install name being invalid
https://bugs.webkit.org/show_bug.cgi?id=170385
Modified: trunk/Source/WebCore/English.lproj/Localizable.strings (214718 => 214719)
--- trunk/Source/WebCore/English.lproj/Localizable.strings 2017-04-01 22:57:47 UTC (rev 214718)
+++ trunk/Source/WebCore/English.lproj/Localizable.strings 2017-04-02 00:03:51 UTC (rev 214719)
@@ -67,6 +67,12 @@
/* Label for PDF page number indicator. */
"%d of %d" = "%d of %d";
+/* window title for a standalone image (uses multiplication symbol, not x) */
+"%s %d×%d pixels" = "%s %d×%d pixels";
+
+/* Name of application's single WebCrypto master key in Keychain */
+"%s WebCrypto Master Key" = "%s WebCrypto Master Key";
+
/* Present the number of selected <option> items in a <select multiple> element (iOS only) */
"%zu Items" = "%zu Items";
@@ -88,9 +94,6 @@
/* Menu item title for KEYGEN pop-up menu */
"2048 (High Grade)" = "2048 (High Grade)";
-/* window title for a standalone image (uses multiplication symbol, not x) */
-"<filename> %d×%d pixels" = "<filename> %d×%d pixels";
-
/* WKErrorJavaScriptExceptionOccurred description */
"A _javascript_ exception occurred" = "A _javascript_ exception occurred";
@@ -173,7 +176,7 @@
"Click to restart" = "Click to restart";
/* WKErrorContentExtensionStoreCompileFailed description */
-"Compiling a WKContentExtension failed" = "Compiling a WKContentExtension failed";
+"Compiling a WKUserContentExtension failed" = "Compiling a WKUserContentExtension failed";
/* WebKitErrorCannotShowMIMEType description */
"Content with specified MIME type can’t be shown" = "Content with specified MIME type can’t be shown";
@@ -359,13 +362,13 @@
"Look Up “%@”" = "Look Up “%@”";
/* Look Up context menu item with selected word */
-"Look Up “<selection>”" = "Look Up “<selection>”";
+"Look Up “%s”" = "Look Up “%s”";
/* WKErrorContentExtensionStoreLookupFailed description */
-"Looking up a WKContentExtension failed" = "Looking up a WKContentExtension failed";
+"Looking up a WKUserContentExtension failed" = "Looking up a WKUserContentExtension failed";
/* WKErrorContentExtensionStoreVersionMismatch description */
-"Looking up a WKContentExtension found a binary that is incompatible" = "Looking up a WKContentExtension found a binary that is incompatible";
+"Looking up a WKUserContentExtension found a binary that is incompatible" = "Looking up a WKUserContentExtension found a binary that is incompatible";
/* Media Loop context menu item */
"Loop" = "Loop";
@@ -506,7 +509,7 @@
"Reload" = "Reload";
/* WKErrorContentExtensionStoreRemoveFailed description */
-"Removing a WKContentExtension failed" = "Removing a WKContentExtension failed";
+"Removing a WKUserContentExtension failed" = "Removing a WKUserContentExtension failed";
/* default label for Reset buttons in forms on web pages */
"Reset" = "Reset";
@@ -763,9 +766,15 @@
/* Validation message for input form controls with value lower than allowed minimum */
"Value must be greater than or equal to %@" = "Value must be greater than or equal to %@";
+/* Validation message for input form controls with value lower than allowed minimum */
+"Value must be greater than or equal to %s" = "Value must be greater than or equal to %s";
+
/* Validation message for input form controls with value higher than allowed maximum */
"Value must be less than or equal to %@" = "Value must be less than or equal to %@";
+/* Validation message for input form controls with value higher than allowed maximum */
+"Value must be less than or equal to %s" = "Value must be less than or equal to %s";
+
/* Web Inspector window title when inspecting Web Inspector */
"Web Inspector [%d] — %@" = "Web Inspector [%d] — %@";
@@ -1069,12 +1078,6 @@
/* HTTP result code string */
"proxy authentication required" = "proxy authentication required";
-/* Validation message for input form controls with value higher than allowed maximum */
-"range overflow" = "range overflow";
-
-/* Validation message for input form controls with value lower than allowed minimum */
-"range underflow" = "range underflow";
-
/* HTTP result code string */
"redirected" = "redirected";
Modified: trunk/Source/WebInspectorUI/ChangeLog (214718 => 214719)
--- trunk/Source/WebInspectorUI/ChangeLog 2017-04-01 22:57:47 UTC (rev 214718)
+++ trunk/Source/WebInspectorUI/ChangeLog 2017-04-02 00:03:51 UTC (rev 214719)
@@ -1,3 +1,14 @@
+2017-04-01 Dan Bernstein <m...@apple.com>
+
+ Localizable strings files are out of date
+ https://bugs.webkit.org/show_bug.cgi?id=170383
+
+ Reviewed by Tim Horton.
+
+ Ran update-webkit-localizable-strings.
+
+ * Localizations/en.lproj/localizedStrings.js:
+
2017-03-30 Matt Baker <mattba...@apple.com>
Web Inspector: Styles sidebar warning icon appears inside property value text
Modified: trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js (214718 => 214719)
--- trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js 2017-04-01 22:57:47 UTC (rev 214718)
+++ trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js 2017-04-02 00:03:51 UTC (rev 214719)
@@ -418,7 +418,7 @@
localizedStrings["HTML Attributes"] = "HTML Attributes";
localizedStrings["HTTP"] = "HTTP";
localizedStrings["Heading Level"] = "Heading Level";
-localizedStrings["Heap Snapshot Object (@%d)"] = "Heap Snapshot Object (@%d)";
+localizedStrings["Heap Snapshot Object (%s)"] = "Heap Snapshot Object (%s)";
localizedStrings["Height"] = "Height";
localizedStrings["Hide compositing borders"] = "Hide compositing borders";
localizedStrings["Hide shadow DOM nodes"] = "Hide shadow DOM nodes";
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes