Title: [229724] trunk/Source/WebCore
Revision
229724
Author
dba...@webkit.org
Date
2018-03-19 15:47:39 -0700 (Mon, 19 Mar 2018)

Log Message

Fix case of Strong Password localized string

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (229723 => 229724)


--- trunk/Source/WebCore/ChangeLog	2018-03-19 22:31:30 UTC (rev 229723)
+++ trunk/Source/WebCore/ChangeLog	2018-03-19 22:47:39 UTC (rev 229724)
@@ -1,3 +1,11 @@
+2018-03-19  Daniel Bates  <daba...@apple.com>
+
+        Fix case of Strong Password localized string
+
+        * English.lproj/Localizable.strings:
+        * platform/LocalizedStrings.cpp:
+        (WebCore::autoFillStrongPasswordLabel):
+
 2018-03-19  Chris Dumez  <cdu...@apple.com>
 
         WebKit.WebsitePoliciesAutoplayQuirks API test times out with async policy delegates

Modified: trunk/Source/WebCore/English.lproj/Localizable.strings (229723 => 229724)


--- trunk/Source/WebCore/English.lproj/Localizable.strings	2018-03-19 22:31:30 UTC (rev 229723)
+++ trunk/Source/WebCore/English.lproj/Localizable.strings	2018-03-19 22:47:39 UTC (rev 229724)
@@ -1202,7 +1202,7 @@
 "strong confirmation password auto fill" = "strong confirmation password auto fill";
 
 /* Label for strong password. */
-"strong password" = "strong password";
+"Strong Password" = "Strong Password";
 
 /* Label for the strong password auto fill button inside a text field. */
 "strong password auto fill" = "strong password auto fill";

Modified: trunk/Source/WebCore/platform/LocalizedStrings.cpp (229723 => 229724)


--- trunk/Source/WebCore/platform/LocalizedStrings.cpp	2018-03-19 22:31:30 UTC (rev 229723)
+++ trunk/Source/WebCore/platform/LocalizedStrings.cpp	2018-03-19 22:47:39 UTC (rev 229724)
@@ -637,7 +637,7 @@
 
 String autoFillStrongPasswordLabel()
 {
-    return WEB_UI_STRING("strong password", "Label for strong password.");
+    return WEB_UI_STRING("Strong Password", "Label for strong password.");
 }
 
 String missingPluginText()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to