From: jinwoo jeong Date: Fri, 29 Mar 2013 04:53:11 +0000 (+0900) Subject: Fix message text in number and URL input tag X-Git-Tag: 2.1_release~263 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=669a12f55dbb764b91c5e1b0b015638770788803;p=platform%2Fframework%2Fweb%2Fwebkit-efl.git Fix message text in number and URL input tag [Title] Fix message text in number and URL input tag [Issue#] N_SE-28998 [Problem] Wrong message in number and URL input tag [Cause] N/A [Solution] modify message text. Change-Id: Ib80557fa1e7cf3d011c4fec40a49bb080ecd76e8 --- diff --git a/Source/WebCore/platform/efl/tizen/LocalizedStringsTizen.cpp b/Source/WebCore/platform/efl/tizen/LocalizedStringsTizen.cpp index b7a9e90..8ed509b 100644 --- a/Source/WebCore/platform/efl/tizen/LocalizedStringsTizen.cpp +++ b/Source/WebCore/platform/efl/tizen/LocalizedStringsTizen.cpp @@ -512,7 +512,7 @@ String validationMessageTypeMismatchForMultipleEmailText() String validationMessageTypeMismatchForURLText() { - return String::fromUTF8("type mismatch"); + return String::fromUTF8("Please enter a URL"); } String validationMessageValueMissingText() @@ -552,8 +552,7 @@ String validationMessageValueMissingForSelectText() String validationMessageBadInputForNumberText() { - notImplemented(); - return validationMessageTypeMismatchText(); + return String::fromUTF8("Please enter a number"); } String missingPluginText()