Changeset 214720 in webkit


Ignore:
Timestamp:
Apr 1, 2017, 5:17:55 PM (9 years ago)
Author:
mitz@apple.com
Message:

[Cocoa] A couple of UI strings use three periods instead of an ellipsis
https://bugs.webkit.org/show_bug.cgi?id=170386

Reviewed by Tim Horton.

  • English.lproj/Localizable.strings: Updated using update-webkit-localizable-strings.
  • platform/LocalizedStrings.cpp:

(WebCore::mediaElementLoadingStateText): Changed "Loading..." to "Loading…".

  • platform/cocoa/LocalizedStringsCocoa.mm:

(WebCore::contextMenuItemTagStyles): Changed "Styles..." to "Styles…".

Location:
trunk/Source/WebCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r214719 r214720  
     12017-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
    1162017-04-01  Dan Bernstein  <mitz@apple.com>
    217
  • trunk/Source/WebCore/English.lproj/Localizable.strings

    r214719 r214720  
    351351
    352352/* Media controller status message when the media is loading */
    353 "Loading..." = "Loading...";
     353"Loading…" = "Loading…";
    354354
    355355/* 'Website' name displayed when local documents have stored local data */
     
    624624
    625625/* Styles context menu item */
    626 "Styles..." = "Styles...";
     626"Styles…" = "Styles…";
    627627
    628628/* default label for Submit buttons in forms on web pages */
  • trunk/Source/WebCore/platform/LocalizedStrings.cpp

    r214346 r214720  
    676676String mediaElementLoadingStateText()
    677677{
    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");
    679679}
    680680
  • trunk/Source/WebCore/platform/cocoa/LocalizedStringsCocoa.mm

    r214244 r214720  
    7878String contextMenuItemTagStyles()
    7979{
    80     return WEB_UI_STRING("Styles...", "Styles context menu item");
     80    return WEB_UI_STRING("Styles", "Styles context menu item");
    8181}
    8282
Note: See TracChangeset for help on using the changeset viewer.