Changeset 238751 in webkit


Ignore:
Timestamp:
Nov 30, 2018 1:18:13 PM (5 years ago)
Author:
Wenson Hsieh
Message:

Replace "auto fill" with "AutoFill" in some localizable strings
https://bugs.webkit.org/show_bug.cgi?id=192233
<rdar://problem/46311614>

Reviewed by Chris Fleizach.

Source/WebCore:

Replace "autofill" with "AutoFill".

  • en.lproj/Localizable.strings:
  • platform/LocalizedStrings.cpp:

(WebCore::AXAutoFillCredentialsLabel):
(WebCore::AXAutoFillContactsLabel):
(WebCore::AXAutoFillStrongPasswordLabel):
(WebCore::AXAutoFillCreditCardLabel):

LayoutTests:

Rebaseline a test.

  • accessibility/auto-fill-types-expected.txt:
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r238743 r238751  
     12018-11-30  Wenson Hsieh  <wenson_hsieh@apple.com>
     2
     3        Replace "auto fill" with "AutoFill" in some localizable strings
     4        https://bugs.webkit.org/show_bug.cgi?id=192233
     5        <rdar://problem/46311614>
     6
     7        Reviewed by Chris Fleizach.
     8
     9        Rebaseline a test.
     10
     11        * accessibility/auto-fill-types-expected.txt:
     12
    1132018-11-30  Devin Rousso  <drousso@apple.com>
    214
  • trunk/LayoutTests/accessibility/auto-fill-types-expected.txt

    r203711 r238751  
    88Auto-fill type: none
    99Contact button role: AXRole: AXButton
    10 Contact button label: AXDescription: contact info auto fill
     10Contact button label: AXDescription: contact info AutoFill
    1111Auto-fill type: contacts
    1212Credentials button role: AXRole: AXButton
    13 Credentials button label: AXDescription: password auto fill
     13Credentials button label: AXDescription: password AutoFill
    1414Auto-fill type: credentials
    1515Post auto-fill available: true
  • trunk/Source/WebCore/ChangeLog

    r238748 r238751  
     12018-11-30  Wenson Hsieh  <wenson_hsieh@apple.com>
     2
     3        Replace "auto fill" with "AutoFill" in some localizable strings
     4        https://bugs.webkit.org/show_bug.cgi?id=192233
     5        <rdar://problem/46311614>
     6
     7        Reviewed by Chris Fleizach.
     8
     9        Replace "autofill" with "AutoFill".
     10
     11        * en.lproj/Localizable.strings:
     12        * platform/LocalizedStrings.cpp:
     13        (WebCore::AXAutoFillCredentialsLabel):
     14        (WebCore::AXAutoFillContactsLabel):
     15        (WebCore::AXAutoFillStrongPasswordLabel):
     16        (WebCore::AXAutoFillCreditCardLabel):
     17
    1182018-11-29  Ryosuke Niwa  <rniwa@webkit.org>
    219
  • trunk/Source/WebCore/en.lproj/Localizable.strings

    r238503 r238751  
    974974"conflict" = "conflict";
    975975
    976 /* Label for the auto fill contacts button inside a text field. */
    977 "contact info auto fill" = "contact info auto fill";
     976/* Label for the AutoFill contacts button inside a text field. */
     977"contact info AutoFill" = "contact info AutoFill";
    978978
    979979/* An ARIA accessibility group that contains content. */
     
    986986"created" = "created";
    987987
    988 /* Label for the credit card auto fill button inside a text field. */
    989 "credit card auto fill" = "credit card auto fill";
     988/* Label for the credit card AutoFill button inside a text field. */
     989"credit card AutoFill" = "credit card AutoFill";
    990990
    991991/* The less good value description for a meter element. */
     
    11871187"partial content" = "partial content";
    11881188
    1189 /* Label for the auto fill credentials button inside a text field. */
    1190 "password auto fill" = "password auto fill";
     1189/* Label for the AutoFill credentials button inside a text field. */
     1190"password AutoFill" = "password AutoFill";
    11911191
    11921192/* accessibility label for pause button */
     
    12891289"stop displaying closed captions" = "stop displaying closed captions";
    12901290
    1291 /* Label for the strong password auto fill button inside a text field. */
    1292 "strong password auto fill" = "strong password auto fill";
     1291/* Label for the strong password AutoFill button inside a text field. */
     1292"strong password AutoFill" = "strong password AutoFill";
    12931293
    12941294/* The suboptimal value description for a meter element. */
  • trunk/Source/WebCore/platform/LocalizedStrings.cpp

    r238503 r238751  
    627627String AXAutoFillCredentialsLabel()
    628628{
    629     return WEB_UI_STRING("password auto fill", "Label for the auto fill credentials button inside a text field.");
     629    return WEB_UI_STRING("password AutoFill", "Label for the AutoFill credentials button inside a text field.");
    630630}
    631631
    632632String AXAutoFillContactsLabel()
    633633{
    634     return WEB_UI_STRING("contact info auto fill", "Label for the auto fill contacts button inside a text field.");
     634    return WEB_UI_STRING("contact info AutoFill", "Label for the AutoFill contacts button inside a text field.");
    635635}
    636636
    637637String AXAutoFillStrongPasswordLabel()
    638638{
    639     return WEB_UI_STRING("strong password auto fill", "Label for the strong password auto fill button inside a text field.");
     639    return WEB_UI_STRING("strong password AutoFill", "Label for the strong password AutoFill button inside a text field.");
    640640}
    641641
    642642String AXAutoFillCreditCardLabel()
    643643{
    644     return WEB_UI_STRING("credit card auto fill", "Label for the credit card auto fill button inside a text field.");
     644    return WEB_UI_STRING("credit card AutoFill", "Label for the credit card AutoFill button inside a text field.");
    645645}
    646646
Note: See TracChangeset for help on using the changeset viewer.