Changeset 233992 in webkit


Ignore:
Timestamp:
Jul 19, 2018 10:45:14 AM (6 years ago)
Author:
jonlee@apple.com
Message:

Update iOS fullscreen alert text again
https://bugs.webkit.org/show_bug.cgi?id=187797
rdar://problem/42373783

Reviewed by Jer Noble.

Source/WebCore:

  • English.lproj/Localizable.strings:

Source/WebKit:

  • UIProcess/ios/fullscreen/WKFullScreenViewController.mm:

(-[WKFullScreenViewController _showPhishingAlert]):

Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r233990 r233992  
     12018-07-19  Jon Lee  <jonlee@apple.com>
     2
     3        Update iOS fullscreen alert text again
     4        https://bugs.webkit.org/show_bug.cgi?id=187797
     5        rdar://problem/42373783
     6
     7        Reviewed by Jer Noble.
     8
     9        * English.lproj/Localizable.strings:
     10
    1112018-07-19  Keith Rollin  <krollin@apple.com>
    212
  • trunk/Source/WebCore/English.lproj/Localizable.strings

    r233756 r233992  
    339339
    340340/* Fullscreen Deceptive Website Warning Sheet Title */
    341 "It looks like you are typing on “%@”" = "It looks like you are typing on “%@”";
     341"It looks like you are typing while in full screen" = "It looks like you are typing while in full screen";
    342342
    343343/* Italic context menu item */
     
    765765
    766766/* Fullscreen Deceptive Website Warning Sheet Content Text */
    767 "Typing is not allowed in full screen. This website may be showing a fake keyboard to trick you into disclosing personal or financial information." = "Typing is not allowed in full screen. This website may be showing a fake keyboard to trick you into disclosing personal or financial information.";
     767"Typing is not allowed in full screen websites. “%@” may be showing a fake keyboard to trick you into disclosing personal or financial information." = "Typing is not allowed in full screen websites. “%@” may be showing a fake keyboard to trick you into disclosing personal or financial information.";
    768768
    769769/* accessibility role description for a URL field. */
  • trunk/Source/WebKit/ChangeLog

    r233986 r233992  
     12018-07-19  Jon Lee  <jonlee@apple.com>
     2
     3        Update iOS fullscreen alert text again
     4        https://bugs.webkit.org/show_bug.cgi?id=187797
     5        rdar://problem/42373783
     6
     7        Reviewed by Jer Noble.
     8
     9        * UIProcess/ios/fullscreen/WKFullScreenViewController.mm:
     10        (-[WKFullScreenViewController _showPhishingAlert]):
     11
    1122018-07-19  Brady Eidson  <beidson@apple.com>
    213
  • trunk/Source/WebKit/UIProcess/ios/fullscreen/WKFullScreenViewController.mm

    r233926 r233992  
    543543- (void)_showPhishingAlert
    544544{
    545     NSString *alertTitle = [NSString stringWithFormat:WEB_UI_STRING("It looks like you are typing on “%@”", "Fullscreen Deceptive Website Warning Sheet Title"), (NSString *)self.location];
    546     NSString *alertMessage = WEB_UI_STRING("Typing is not allowed in full screen. This website may be showing a fake keyboard to trick you into disclosing personal or financial information.", "Fullscreen Deceptive Website Warning Sheet Content Text");
     545    NSString *alertTitle = WEB_UI_STRING("It looks like you are typing while in full screen", "Fullscreen Deceptive Website Warning Sheet Title");
     546    NSString *alertMessage = [NSString stringWithFormat:WEB_UI_STRING("Typing is not allowed in full screen websites. “%@” may be showing a fake keyboard to trick you into disclosing personal or financial information.", "Fullscreen Deceptive Website Warning Sheet Content Text"), (NSString *)self.location];
    547547    UIAlertController* alert = [UIAlertController alertControllerWithTitle:alertTitle message:alertMessage preferredStyle:UIAlertControllerStyleAlert];
    548548
Note: See TracChangeset for help on using the changeset viewer.