Changeset 214720 in webkit
- Timestamp:
- Apr 1, 2017, 5:17:55 PM (9 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 4 edited
-
ChangeLog (modified) (1 diff)
-
English.lproj/Localizable.strings (modified) (2 diffs)
-
platform/LocalizedStrings.cpp (modified) (1 diff)
-
platform/cocoa/LocalizedStringsCocoa.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r214719 r214720 1 2017-04-01 Dan Bernstein <mitz@apple.com> 2 3 [Cocoa] A couple of UI strings use three periods instead of an ellipsis 4 https://bugs.webkit.org/show_bug.cgi?id=170386 5 6 Reviewed by Tim Horton. 7 8 * English.lproj/Localizable.strings: Updated using update-webkit-localizable-strings. 9 10 * platform/LocalizedStrings.cpp: 11 (WebCore::mediaElementLoadingStateText): Changed "Loading..." to "Loading…". 12 13 * platform/cocoa/LocalizedStringsCocoa.mm: 14 (WebCore::contextMenuItemTagStyles): Changed "Styles..." to "Styles…". 15 1 16 2017-04-01 Dan Bernstein <mitz@apple.com> 2 17 -
trunk/Source/WebCore/English.lproj/Localizable.strings
r214719 r214720 351 351 352 352 /* Media controller status message when the media is loading */ 353 "Loading ..." = "Loading...";353 "Loading…" = "Loading…"; 354 354 355 355 /* 'Website' name displayed when local documents have stored local data */ … … 624 624 625 625 /* Styles context menu item */ 626 "Styles ..." = "Styles...";626 "Styles…" = "Styles…"; 627 627 628 628 /* default label for Submit buttons in forms on web pages */ -
trunk/Source/WebCore/platform/LocalizedStrings.cpp
r214346 r214720 676 676 String mediaElementLoadingStateText() 677 677 { 678 return WEB_UI_STRING("Loading ...", "Media controller status message when the media is loading");678 return WEB_UI_STRING("Loading…", "Media controller status message when the media is loading"); 679 679 } 680 680 -
trunk/Source/WebCore/platform/cocoa/LocalizedStringsCocoa.mm
r214244 r214720 78 78 String contextMenuItemTagStyles() 79 79 { 80 return WEB_UI_STRING("Styles ...", "Styles context menu item");80 return WEB_UI_STRING("Styles…", "Styles context menu item"); 81 81 } 82 82
Note:
See TracChangeset
for help on using the changeset viewer.