summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/efl/LocalizedStringsEfl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/efl/LocalizedStringsEfl.cpp')
-rw-r--r--WebCore/platform/efl/LocalizedStringsEfl.cpp23
1 files changed, 19 insertions, 4 deletions
diff --git a/WebCore/platform/efl/LocalizedStringsEfl.cpp b/WebCore/platform/efl/LocalizedStringsEfl.cpp
index a81434f..2935983 100644
--- a/WebCore/platform/efl/LocalizedStringsEfl.cpp
+++ b/WebCore/platform/efl/LocalizedStringsEfl.cpp
@@ -435,22 +435,22 @@ String validationMessagePatternMismatchText()
return String::fromUTF8("pattern mismatch");
}
-String validationMessageRangeOverflowText()
+String validationMessageRangeOverflowText(const String&)
{
return String::fromUTF8("range overflow");
}
-String validationMessageRangeUnderflowText()
+String validationMessageRangeUnderflowText(const String&)
{
return String::fromUTF8("range underflow");
}
-String validationMessageStepMismatchText()
+String validationMessageStepMismatchText(const String&, const String&)
{
return String::fromUTF8("step mismatch");
}
-String validationMessageTooLongText()
+String validationMessageTooLongText(int, int)
{
return String::fromUTF8("too long");
}
@@ -460,6 +460,21 @@ String validationMessageTypeMismatchText()
return String::fromUTF8("type mismatch");
}
+String validationMessageTypeMismatchForEmailText()
+{
+ return String::fromUTF8("type mismatch");
+}
+
+String validationMessageTypeMismatchForMultipleEmailText()
+{
+ return String::fromUTF8("type mismatch");
+}
+
+String validationMessageTypeMismatchForURLText()
+{
+ return String::fromUTF8("type mismatch");
+}
+
String validationMessageValueMissingText()
{
return String::fromUTF8("value missing");