Changeset 244205 in webkit


Ignore:
Timestamp:
Apr 11, 2019 5:58:50 PM (5 years ago)
Author:
Megan Gardner
Message:

Update 'Save Image' to more clear instructions
https://bugs.webkit.org/show_bug.cgi?id=196833
<rdar://problem/47446845>

Reviewed by Wenson Hsieh.

Source/WebCore:

Not testable, UI change only.

  • en.lproj/Localizable.strings:

Source/WebKit:

Just updating to a new string.

  • UIProcess/API/Cocoa/_WKElementAction.mm:

(+[_WKElementAction _elementActionWithType:customTitle:assistant:]):

Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r244202 r244205  
     12019-04-11  Megan Gardner  <megan_gardner@apple.com>
     2
     3        Update 'Save Image' to more clear instructions
     4        https://bugs.webkit.org/show_bug.cgi?id=196833
     5        <rdar://problem/47446845>
     6
     7        Reviewed by Wenson Hsieh.
     8
     9        Not testable, UI change only.
     10
     11        * en.lproj/Localizable.strings:
     12
    1132019-04-11  Zalan Bujtas  <zalan@apple.com>
    214
  • trunk/Source/WebCore/en.lproj/Localizable.strings

    r244061 r244205  
    9595"A JavaScript exception occurred" = "A JavaScript exception occurred";
    9696
     97/* Title for Add to Photos action button */
     98"Add to Photos" = "Add to Photos";
     99
    97100/* Title for Add to Reading List action button */
    98101"Add to Reading List" = "Add to Reading List";
     
    626629"Right to Left" = "Right to Left";
    627630
    628 /* Title for Save Image action button */
    629 "Save Image" = "Save Image";
    630 
    631631/* Title of the Search button for zoomed form controls. */
    632632"Search" = "Search";
  • trunk/Source/WebKit/ChangeLog

    r244203 r244205  
     12019-04-11  Megan Gardner  <megan_gardner@apple.com>
     2
     3        Update 'Save Image' to more clear instructions
     4        https://bugs.webkit.org/show_bug.cgi?id=196833
     5        <rdar://problem/47446845>
     6
     7        Reviewed by Wenson Hsieh.
     8
     9        Just updating to a new string.
     10
     11        * UIProcess/API/Cocoa/_WKElementAction.mm:
     12        (+[_WKElementAction _elementActionWithType:customTitle:assistant:]):
     13
    1142019-04-11  Chris Dumez  <cdumez@apple.com>
    215
  • trunk/Source/WebKit/UIProcess/API/Cocoa/_WKElementAction.mm

    r242339 r244205  
    114114        break;
    115115    case _WKElementActionTypeSaveImage:
    116         title = WEB_UI_STRING("Save Image", "Title for Save Image action button");
     116        title = WEB_UI_STRING("Add to Photos", "Title for Add to Photos action button");
    117117        handler = ^(WKActionSheetAssistant *assistant, _WKActivatedElementInfo *actionInfo) {
    118118            [assistant.delegate actionSheetAssistant:assistant performAction:WebKit::SheetAction::SaveImage];
Note: See TracChangeset for help on using the changeset viewer.