Title: [140386] trunk/Source/WebCore
- Revision
- 140386
- Author
- [email protected]
- Date
- 2013-01-21 22:42:23 -0800 (Mon, 21 Jan 2013)
Log Message
[EFL] Missing context menus strings
https://bugs.webkit.org/show_bug.cgi?id=107104
Patch by Michał Pakuła vel Rutka <[email protected]> on 2013-01-21
Reviewed by Kenneth Rohde Christiansen.
Add 5 missing localization strings for text direction context menus.
* platform/efl/LocalizedStringsEfl.cpp:
(WebCore::contextMenuItemTagRightToLeft):
(WebCore::contextMenuItemTagLeftToRight):
(WebCore::contextMenuItemTagWritingDirectionMenu):
(WebCore::contextMenuItemTagTextDirectionMenu):
(WebCore::contextMenuItemTagDefaultDirection):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (140385 => 140386)
--- trunk/Source/WebCore/ChangeLog 2013-01-22 06:17:21 UTC (rev 140385)
+++ trunk/Source/WebCore/ChangeLog 2013-01-22 06:42:23 UTC (rev 140386)
@@ -1,3 +1,19 @@
+2013-01-21 Michał Pakuła vel Rutka <[email protected]>
+
+ [EFL] Missing context menus strings
+ https://bugs.webkit.org/show_bug.cgi?id=107104
+
+ Reviewed by Kenneth Rohde Christiansen.
+
+ Add 5 missing localization strings for text direction context menus.
+
+ * platform/efl/LocalizedStringsEfl.cpp:
+ (WebCore::contextMenuItemTagRightToLeft):
+ (WebCore::contextMenuItemTagLeftToRight):
+ (WebCore::contextMenuItemTagWritingDirectionMenu):
+ (WebCore::contextMenuItemTagTextDirectionMenu):
+ (WebCore::contextMenuItemTagDefaultDirection):
+
2013-01-21 Kent Tamura <[email protected]>
Date selection from calendar picker should dispatch 'input' event in addition to 'change' event
Modified: trunk/Source/WebCore/platform/efl/LocalizedStringsEfl.cpp (140385 => 140386)
--- trunk/Source/WebCore/platform/efl/LocalizedStringsEfl.cpp 2013-01-22 06:17:21 UTC (rev 140385)
+++ trunk/Source/WebCore/platform/efl/LocalizedStringsEfl.cpp 2013-01-22 06:42:23 UTC (rev 140386)
@@ -331,27 +331,27 @@
String contextMenuItemTagRightToLeft()
{
- return String();
+ return String::fromUTF8("Right to Left");
}
String contextMenuItemTagLeftToRight()
{
- return String();
+ return String::fromUTF8("Left to Right");
}
String contextMenuItemTagWritingDirectionMenu()
{
- return String();
+ return String::fromUTF8("Writing Direction");
}
String contextMenuItemTagTextDirectionMenu()
{
- return String();
+ return String::fromUTF8("Text Direction");
}
String contextMenuItemTagDefaultDirection()
{
- return String();
+ return String::fromUTF8("Default");
}
String searchMenuNoRecentSearchesText()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes