Title: [207853] trunk/Source/WebCore
Revision
207853
Author
[email protected]
Date
2016-10-25 16:01:18 -0700 (Tue, 25 Oct 2016)

Log Message

Numbered list should be represented without ‘…’
https://bugs.webkit.org/show_bug.cgi?id=163992
-and corresponding-
rdar://problem/28911337

Reviewed by Darin Adler.

* English.lproj/Localizable.strings:
* platform/LocalizedStrings.cpp:
(WebCore::insertListTypeNumbered):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (207852 => 207853)


--- trunk/Source/WebCore/ChangeLog	2016-10-25 22:41:09 UTC (rev 207852)
+++ trunk/Source/WebCore/ChangeLog	2016-10-25 23:01:18 UTC (rev 207853)
@@ -1,3 +1,16 @@
+2016-10-25  Beth Dakin  <[email protected]>
+
+        Numbered list should be represented without ‘…’
+        https://bugs.webkit.org/show_bug.cgi?id=163992
+        -and corresponding-
+        rdar://problem/28911337
+
+        Reviewed by Darin Adler.
+
+        * English.lproj/Localizable.strings:
+        * platform/LocalizedStrings.cpp:
+        (WebCore::insertListTypeNumbered):
+
 2016-10-25  Daniel Bates  <[email protected]>
 
         REGRESSION (r178265): XSS Auditor fails to block document.write() of incomplete tag

Modified: trunk/Source/WebCore/English.lproj/Localizable.strings (207852 => 207853)


--- trunk/Source/WebCore/English.lproj/Localizable.strings	2016-10-25 22:41:09 UTC (rev 207852)
+++ trunk/Source/WebCore/English.lproj/Localizable.strings	2016-10-25 23:01:18 UTC (rev 207853)
@@ -83,7 +83,7 @@
 "1 Video (file upload on page label for one video)" = "1 Video";
 
 /* Option in segmented control for choosing list type in text editing */
-"1. 2. 3.…" = "1. 2. 3.…";
+"1. 2. 3." = "1. 2. 3.";
 
 /* Menu item title for KEYGEN pop-up menu */
 "1024 (Medium Grade)" = "1024 (Medium Grade)";
@@ -934,8 +934,8 @@
 /* HTTP result code string */
 "length required" = "length required";
 
-/* The less good value description for a meter element */
-"less good" = "critical value";
+/* The less good value description for a meter element. */
+"less good" = "less good";
 
 /* accessibility role description for link */
 "link" = "link";
@@ -1021,12 +1021,12 @@
 /* accessibility help text for remaining time display */
 "number of seconds of movie remaining" = "number of seconds of movie remaining";
 
+/* The optimum value description for a meter element. */
+"optimum" = "optimum";
+
 /* accessibility role description for an output element */
 "output" = "output";
 
-/* The optimum value description for a meter element */
-"optimum" = "optimal value";
-
 /* HTTP result code string */
 "partial content" = "partial content";
 
@@ -1129,8 +1129,8 @@
 /* accessibility help text for hide closed captions button */
 "stop displaying closed captions" = "stop displaying closed captions";
 
-/* The suboptimal value description for a meter element */
-"suboptimal" = "suboptimal value";
+/* The suboptimal value description for a meter element. */
+"suboptimal" = "suboptimal";
 
 /* HTTP result code string */
 "success" = "success";

Modified: trunk/Source/WebCore/platform/LocalizedStrings.cpp (207852 => 207853)


--- trunk/Source/WebCore/platform/LocalizedStrings.cpp	2016-10-25 22:41:09 UTC (rev 207852)
+++ trunk/Source/WebCore/platform/LocalizedStrings.cpp	2016-10-25 23:01:18 UTC (rev 207853)
@@ -1279,7 +1279,7 @@
 
 String insertListTypeNumbered()
 {
-    return WEB_UI_STRING("1. 2. 3.…", "Option in segmented control for choosing list type in text editing");
+    return WEB_UI_STRING("1. 2. 3.", "Option in segmented control for choosing list type in text editing");
 }
 
 String insertListTypeNumberedAccessibilityTitle()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to