Title: [214720] trunk/Source/WebCore
Revision
214720
Author
m...@apple.com
Date
2017-04-01 17:17:55 -0700 (Sat, 01 Apr 2017)

Log Message

[Cocoa] A couple of UI strings use three periods instead of an ellipsis
https://bugs.webkit.org/show_bug.cgi?id=170386

Reviewed by Tim Horton.

* English.lproj/Localizable.strings: Updated using update-webkit-localizable-strings.

* platform/LocalizedStrings.cpp:
(WebCore::mediaElementLoadingStateText): Changed "Loading..." to "Loading…".

* platform/cocoa/LocalizedStringsCocoa.mm:
(WebCore::contextMenuItemTagStyles): Changed "Styles..." to "Styles…".

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (214719 => 214720)


--- trunk/Source/WebCore/ChangeLog	2017-04-02 00:03:51 UTC (rev 214719)
+++ trunk/Source/WebCore/ChangeLog	2017-04-02 00:17:55 UTC (rev 214720)
@@ -1,5 +1,20 @@
 2017-04-01  Dan Bernstein  <m...@apple.com>
 
+        [Cocoa] A couple of UI strings use three periods instead of an ellipsis
+        https://bugs.webkit.org/show_bug.cgi?id=170386
+
+        Reviewed by Tim Horton.
+
+        * English.lproj/Localizable.strings: Updated using update-webkit-localizable-strings.
+
+        * platform/LocalizedStrings.cpp:
+        (WebCore::mediaElementLoadingStateText): Changed "Loading..." to "Loading…".
+
+        * platform/cocoa/LocalizedStringsCocoa.mm:
+        (WebCore::contextMenuItemTagStyles): Changed "Styles..." to "Styles…".
+
+2017-04-01  Dan Bernstein  <m...@apple.com>
+
         Localizable strings files are out of date
         https://bugs.webkit.org/show_bug.cgi?id=170383
 

Modified: trunk/Source/WebCore/English.lproj/Localizable.strings (214719 => 214720)


--- trunk/Source/WebCore/English.lproj/Localizable.strings	2017-04-02 00:03:51 UTC (rev 214719)
+++ trunk/Source/WebCore/English.lproj/Localizable.strings	2017-04-02 00:17:55 UTC (rev 214720)
@@ -350,7 +350,7 @@
 "Live Broadcast" = "Live Broadcast";
 
 /* Media controller status message when the media is loading */
-"Loading..." = "Loading...";
+"Loading…" = "Loading…";
 
 /* 'Website' name displayed when local documents have stored local data */
 "Local documents on your computer" = "Local documents on your computer";
@@ -623,7 +623,7 @@
 "Stop Speaking" = "Stop Speaking";
 
 /* Styles context menu item */
-"Styles..." = "Styles...";
+"Styles…" = "Styles…";
 
 /* default label for Submit buttons in forms on web pages */
 "Submit" = "Submit";

Modified: trunk/Source/WebCore/platform/LocalizedStrings.cpp (214719 => 214720)


--- trunk/Source/WebCore/platform/LocalizedStrings.cpp	2017-04-02 00:03:51 UTC (rev 214719)
+++ trunk/Source/WebCore/platform/LocalizedStrings.cpp	2017-04-02 00:17:55 UTC (rev 214720)
@@ -675,7 +675,7 @@
 
 String mediaElementLoadingStateText()
 {
-    return WEB_UI_STRING("Loading...", "Media controller status message when the media is loading");
+    return WEB_UI_STRING("Loading…", "Media controller status message when the media is loading");
 }
 
 String mediaElementLiveBroadcastStateText()

Modified: trunk/Source/WebCore/platform/cocoa/LocalizedStringsCocoa.mm (214719 => 214720)


--- trunk/Source/WebCore/platform/cocoa/LocalizedStringsCocoa.mm	2017-04-02 00:03:51 UTC (rev 214719)
+++ trunk/Source/WebCore/platform/cocoa/LocalizedStringsCocoa.mm	2017-04-02 00:17:55 UTC (rev 214720)
@@ -77,7 +77,7 @@
 
 String contextMenuItemTagStyles()
 {
-    return WEB_UI_STRING("Styles...", "Styles context menu item");
+    return WEB_UI_STRING("Styles…", "Styles context menu item");
 }
 
 String contextMenuItemTagShowColors()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to