From 669a12f55dbb764b91c5e1b0b015638770788803 Mon Sep 17 00:00:00 2001 From: jinwoo jeong Date: Fri, 29 Mar 2013 13:53:11 +0900 Subject: [PATCH] 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 --- Source/WebCore/platform/efl/tizen/LocalizedStringsTizen.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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() -- 2.7.4