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

Changeset 249106 in webkit


Ignore:
Timestamp:
Aug 26, 2019, 11:03:27 AM (7 years ago)
Author:
commit-queue@webkit.org
Message:

REGRESSION (18E140): “return streaming movie to real time” suggesting “resume real time streaming”
https://bugs.webkit.org/show_bug.cgi?id=201108
<rdar://problem/46372525>

Patch by Peng Liu <Peng Liu> on 2019-08-26
Reviewed by Eric Carlson.

Update Localizable.strings.

No new test.

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

(WebCore::localizedMediaControlElementHelpText):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r249105 r249106  
     12019-08-26  Peng Liu  <peng.liu6@apple.com>
     2
     3        REGRESSION (18E140): “return streaming movie to real time” suggesting “resume real time streaming”
     4        https://bugs.webkit.org/show_bug.cgi?id=201108
     5        <rdar://problem/46372525>
     6
     7        Reviewed by Eric Carlson.
     8
     9        Update Localizable.strings.
     10
     11        No new test.
     12
     13        * en.lproj/Localizable.strings:
     14        * platform/LocalizedStrings.cpp:
     15        (WebCore::localizedMediaControlElementHelpText):
     16
    1172019-08-26  Youenn Fablet  <youenn@apple.com>
    218
  • trunk/Source/WebCore/en.lproj/Localizable.strings

    r247652 r249106  
    13171317
    13181318/* accessibility help text for return streaming movie to real time button */
    1319 "return streaming movie to real time" = "return streaming movie to real time";
     1319"resume real time streaming" = "resume real time streaming";
    13201320
    13211321/* accessibility label for return to real time button */
  • trunk/Source/WebCore/platform/LocalizedStrings.cpp

    r244061 r249106  
    833833        return WEB_UI_STRING("seek movie back 30 seconds", "accessibility help text for jump back 30 seconds button");
    834834    if (name == "ReturnToRealtimeButton")
    835         return WEB_UI_STRING("return streaming movie to real time", "accessibility help text for return streaming movie to real time button");
     835        return WEB_UI_STRING("resume real time streaming", "accessibility help text for return streaming movie to real time button");
    836836    if (name == "CurrentTimeDisplay")
    837837        return WEB_UI_STRING("current movie time in seconds", "accessibility help text for elapsed time display");
Note: See TracChangeset for help on using the changeset viewer.