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

Changeset 140419 in webkit


Ignore:
Timestamp:
Jan 22, 2013, 6:20:44 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] Fix context menu localized string
https://bugs.webkit.org/show_bug.cgi?id=107536

One of localized string has a marker. Since EFL port does not support them
it has to be removed, so the string will be displayed properly.

Patch by Michał Pakuła vel Rutka <Michał Pakuła vel Rutka> on 2013-01-22
Reviewed by Laszlo Gombos.

  • platform/efl/LocalizedStringsEfl.cpp:

(WebCore::contextMenuItemTagCheckSpellingWhileTyping)

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r140415 r140419  
     12013-01-22  Michał Pakuła vel Rutka  <m.pakula@samsung.com>
     2
     3        [EFL] Fix context menu localized string
     4        https://bugs.webkit.org/show_bug.cgi?id=107536
     5
     6        One of localized string has a marker. Since EFL port does not support them
     7        it has to be removed, so the string will be displayed properly.
     8
     9        Reviewed by Laszlo Gombos.
     10
     11        * platform/efl/LocalizedStringsEfl.cpp:
     12        (WebCore::contextMenuItemTagCheckSpellingWhileTyping)
     13
    1142013-01-22  Sheriff Bot  <webkit.review.bot@gmail.com>
    215
  • trunk/Source/WebCore/platform/efl/LocalizedStringsEfl.cpp

    r140386 r140419  
    289289String contextMenuItemTagCheckSpellingWhileTyping()
    290290{
    291     return String::fromUTF8("Check Spelling While _Typing");
     291    return String::fromUTF8("Check Spelling While Typing");
    292292}
    293293
Note: See TracChangeset for help on using the changeset viewer.