Title: [233992] trunk/Source
Revision
233992
Author
[email protected]
Date
2018-07-19 10:45:14 -0700 (Thu, 19 Jul 2018)

Log 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]):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (233991 => 233992)


--- trunk/Source/WebCore/ChangeLog	2018-07-19 17:45:13 UTC (rev 233991)
+++ trunk/Source/WebCore/ChangeLog	2018-07-19 17:45:14 UTC (rev 233992)
@@ -1,3 +1,13 @@
+2018-07-19  Jon Lee  <[email protected]>
+
+        Update iOS fullscreen alert text again
+        https://bugs.webkit.org/show_bug.cgi?id=187797
+        rdar://problem/42373783
+
+        Reviewed by Jer Noble.
+
+        * English.lproj/Localizable.strings:
+
 2018-07-19  Keith Rollin  <[email protected]>
 
         Adjust WEBCORE_EXPORT annotations for LTO

Modified: trunk/Source/WebCore/English.lproj/Localizable.strings (233991 => 233992)


--- trunk/Source/WebCore/English.lproj/Localizable.strings	2018-07-19 17:45:13 UTC (rev 233991)
+++ trunk/Source/WebCore/English.lproj/Localizable.strings	2018-07-19 17:45:14 UTC (rev 233992)
@@ -338,7 +338,7 @@
 "Invalid value" = "Invalid value";
 
 /* Fullscreen Deceptive Website Warning Sheet Title */
-"It looks like you are typing on “%@”" = "It looks like you are typing on “%@”";
+"It looks like you are typing while in full screen" = "It looks like you are typing while in full screen";
 
 /* Italic context menu item */
 "Italic" = "Italic";
@@ -764,7 +764,7 @@
 "Typing (Undo action name)" = "Typing";
 
 /* Fullscreen Deceptive Website Warning Sheet Content Text */
-"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.";
+"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.";
 
 /* accessibility role description for a URL field. */
 "URL field" = "URL field";

Modified: trunk/Source/WebKit/ChangeLog (233991 => 233992)


--- trunk/Source/WebKit/ChangeLog	2018-07-19 17:45:13 UTC (rev 233991)
+++ trunk/Source/WebKit/ChangeLog	2018-07-19 17:45:14 UTC (rev 233992)
@@ -1,3 +1,14 @@
+2018-07-19  Jon Lee  <[email protected]>
+
+        Update iOS fullscreen alert text again
+        https://bugs.webkit.org/show_bug.cgi?id=187797
+        rdar://problem/42373783
+
+        Reviewed by Jer Noble.
+
+        * UIProcess/ios/fullscreen/WKFullScreenViewController.mm:
+        (-[WKFullScreenViewController _showPhishingAlert]):
+
 2018-07-19  Brady Eidson  <[email protected]>
 
         Add an SPI policy action to allow clients to explicitly ask for a new process on a navigation.

Modified: trunk/Source/WebKit/UIProcess/ios/fullscreen/WKFullScreenViewController.mm (233991 => 233992)


--- trunk/Source/WebKit/UIProcess/ios/fullscreen/WKFullScreenViewController.mm	2018-07-19 17:45:13 UTC (rev 233991)
+++ trunk/Source/WebKit/UIProcess/ios/fullscreen/WKFullScreenViewController.mm	2018-07-19 17:45:14 UTC (rev 233992)
@@ -542,8 +542,8 @@
 
 - (void)_showPhishingAlert
 {
-    NSString *alertTitle = [NSString stringWithFormat:WEB_UI_STRING("It looks like you are typing on “%@”", "Fullscreen Deceptive Website Warning Sheet Title"), (NSString *)self.location];
-    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");
+    NSString *alertTitle = WEB_UI_STRING("It looks like you are typing while in full screen", "Fullscreen Deceptive Website Warning Sheet Title");
+    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];
     UIAlertController* alert = [UIAlertController alertControllerWithTitle:alertTitle message:alertMessage preferredStyle:UIAlertControllerStyleAlert];
 
     if (auto* page = [self._webView _page])
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to