Title: [291567] trunk/Source
Revision
291567
Author
you...@apple.com
Date
2022-03-21 10:58:21 -0700 (Mon, 21 Mar 2022)

Log Message

Remove unneeded quotes in capture attribution string
https://bugs.webkit.org/show_bug.cgi?id=238132
<rdar://88794701>

Reviewed by Eric Carlson.

Source/WebCore:

* en.lproj/Localizable.strings:

Source/WebKit:

Quotes are unneeded and made it less clear to read.

* GPUProcess/cocoa/GPUConnectionToWebProcessCocoa.mm:
(WebKit::GPUConnectionToWebProcess::setCaptureAttributionString):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (291566 => 291567)


--- trunk/Source/WebCore/ChangeLog	2022-03-21 17:53:58 UTC (rev 291566)
+++ trunk/Source/WebCore/ChangeLog	2022-03-21 17:58:21 UTC (rev 291567)
@@ -1,3 +1,13 @@
+2022-03-21  Youenn Fablet  <you...@apple.com>
+
+        Remove unneeded quotes in capture attribution string
+        https://bugs.webkit.org/show_bug.cgi?id=238132
+        <rdar://88794701>
+
+        Reviewed by Eric Carlson.
+
+        * en.lproj/Localizable.strings:
+
 2022-03-21  Kimmo Kinnunen  <kkinnu...@apple.com>
 
         Accessing WebGL content crashes in macOS Recovery OS

Modified: trunk/Source/WebCore/en.lproj/Localizable.strings (291566 => 291567)


--- trunk/Source/WebCore/en.lproj/Localizable.strings	2022-03-21 17:53:58 UTC (rev 291566)
+++ trunk/Source/WebCore/en.lproj/Localizable.strings	2022-03-21 17:58:21 UTC (rev 291567)
@@ -1676,7 +1676,7 @@
 "“%@” Would Like to Access Motion and Orientation" = "“%@” Would Like to Access Motion and Orientation";
 
 /* The domain and application using the camera and/or microphone. The first argument is domain, the second is the application name (iOS only). */
-"“%@” in “%%@”" = "“%@” in “%%@”";
+"%@ in %%@" = "%@ in %%@";
 
 /* Allow the specified bundle to sign in to the specified website */
 "“%@” would like to sign in to “%@”." = "“%@” would like to sign in to “%@”.";

Modified: trunk/Source/WebKit/ChangeLog (291566 => 291567)


--- trunk/Source/WebKit/ChangeLog	2022-03-21 17:53:58 UTC (rev 291566)
+++ trunk/Source/WebKit/ChangeLog	2022-03-21 17:58:21 UTC (rev 291567)
@@ -1,3 +1,16 @@
+2022-03-21  Youenn Fablet  <you...@apple.com>
+
+        Remove unneeded quotes in capture attribution string
+        https://bugs.webkit.org/show_bug.cgi?id=238132
+        <rdar://88794701>
+
+        Reviewed by Eric Carlson.
+
+        Quotes are unneeded and made it less clear to read.
+
+        * GPUProcess/cocoa/GPUConnectionToWebProcessCocoa.mm:
+        (WebKit::GPUConnectionToWebProcess::setCaptureAttributionString):
+
 2022-03-21  Tim Horton  <timothy_hor...@apple.com>
 
         Add an addition point for system background color

Modified: trunk/Source/WebKit/GPUProcess/cocoa/GPUConnectionToWebProcessCocoa.mm (291566 => 291567)


--- trunk/Source/WebKit/GPUProcess/cocoa/GPUConnectionToWebProcessCocoa.mm	2022-03-21 17:53:58 UTC (rev 291566)
+++ trunk/Source/WebKit/GPUProcess/cocoa/GPUConnectionToWebProcessCocoa.mm	2022-03-21 17:58:21 UTC (rev 291567)
@@ -60,7 +60,7 @@
     if (!visibleName)
         visibleName = gpuProcess().applicationVisibleName();
 
-    RetainPtr<NSString> formatString = [NSString stringWithFormat:WEB_UI_NSSTRING(@"“%@” in “%%@”", "The domain and application using the camera and/or microphone. The first argument is domain, the second is the application name (iOS only)."), visibleName];
+    RetainPtr<NSString> formatString = [NSString stringWithFormat:WEB_UI_NSSTRING(@"%@ in %%@", "The domain and application using the camera and/or microphone. The first argument is domain, the second is the application name (iOS only)."), visibleName];
 
     [PAL::getSTDynamicActivityAttributionPublisherClass() setCurrentAttributionStringWithFormat:formatString.get() auditToken:auditToken.value()];
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to