⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 249233 in webkit


Ignore:
Timestamp:
Aug 28, 2019, 7:40:37 PM (7 years ago)
Author:
commit-queue@webkit.org
Message:

REGRESSION: String check: “realtime” Suggesting “real time”
https://bugs.webkit.org/show_bug.cgi?id=201107
<rdar://problem/46372620>

Patch by Peng Liu <Peng Liu> on 2019-08-28
Reviewed by Jer Noble.

Update Localizable.strings.

No new test.

  • en.lproj/Localizable.strings:
  • platform/LocalizedStrings.cpp:

(WebCore::localizedMediaControlElementString):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r249232 r249233  
     12019-08-28  Peng Liu  <peng.liu6@apple.com>
     2
     3        REGRESSION: String check: “realtime” Suggesting “real time”
     4        https://bugs.webkit.org/show_bug.cgi?id=201107
     5        <rdar://problem/46372620>
     6
     7        Reviewed by Jer Noble.
     8
     9        Update Localizable.strings.
     10
     11        No new test.
     12
     13        * en.lproj/Localizable.strings:
     14        * platform/LocalizedStrings.cpp:
     15        (WebCore::localizedMediaControlElementString):
     16
    1172019-08-28  Simon Fraser  <simon.fraser@apple.com>
    218
  • trunk/Source/WebCore/en.lproj/Localizable.strings

    r249106 r249233  
    13201320
    13211321/* accessibility label for return to real time button */
    1322 "return to realtime" = "return to realtime";
     1322"return to real time" = "return to real time";
    13231323
    13241324/* An ARIA accessibility group that contains a search feature of a website. */
  • trunk/Source/WebCore/platform/LocalizedStrings.cpp

    r249106 r249233  
    784784        return WEB_UI_STRING("back 30 seconds", "accessibility label for seek back 30 seconds button");
    785785    if (name == "ReturnToRealtimeButton")
    786         return WEB_UI_STRING("return to realtime", "accessibility label for return to real time button");
     786        return WEB_UI_STRING("return to real time", "accessibility label for return to real time button");
    787787    if (name == "CurrentTimeDisplay")
    788788        return WEB_UI_STRING("elapsed time", "accessibility label for elapsed time display");
Note: See TracChangeset for help on using the changeset viewer.