Title: [175770] trunk/Source/WebKit2
Revision
175770
Author
[email protected]
Date
2014-11-07 16:06:48 -0800 (Fri, 07 Nov 2014)

Log Message

"Lookup" action menu should read "Look up"
https://bugs.webkit.org/show_bug.cgi?id=138509

Patch by Conrad Shultz <[email protected]> on 2014-11-07
Reviewed by Tim Horton.

* UIProcess/mac/WKActionMenuController.mm:
(-[WKActionMenuController _createActionMenuItemForTag:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (175769 => 175770)


--- trunk/Source/WebKit2/ChangeLog	2014-11-07 23:51:38 UTC (rev 175769)
+++ trunk/Source/WebKit2/ChangeLog	2014-11-08 00:06:48 UTC (rev 175770)
@@ -1,3 +1,13 @@
+2014-11-07  Conrad Shultz  <[email protected]>
+
+        "Lookup" action menu should read "Look up"
+        https://bugs.webkit.org/show_bug.cgi?id=138509
+
+        Reviewed by Tim Horton.
+
+        * UIProcess/mac/WKActionMenuController.mm:
+        (-[WKActionMenuController _createActionMenuItemForTag:]):
+
 2014-11-07  Beth Dakin  <[email protected]>
 
         Null deref performing Lookup on Apple Trailers full screen button

Modified: trunk/Source/WebKit2/UIProcess/mac/WKActionMenuController.mm (175769 => 175770)


--- trunk/Source/WebKit2/UIProcess/mac/WKActionMenuController.mm	2014-11-07 23:51:38 UTC (rev 175769)
+++ trunk/Source/WebKit2/UIProcess/mac/WKActionMenuController.mm	2014-11-08 00:06:48 UTC (rev 175770)
@@ -738,7 +738,7 @@
 
     case kWKContextActionItemTagLookupText:
         selector = @selector(_lookupText:);
-        title = @"Lookup";
+        title = @"Look Up";
         image = [NSImage imageNamed:@"NSActionMenuLookup"];
         break;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to