Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1813)

Unified Diff: content/child/blink_platform_impl.cc

Issue 2737263002: Fixed "characters" typo in message validation when input length is 1 (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/child/blink_platform_impl.cc
diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc
index 0b41bff1199ca0e08cb56193556e4d79a0bf3cbe..0eaf473389ffc81eef95798c673dd42ae1b9ee11 100644
--- a/content/child/blink_platform_impl.cc
+++ b/content/child/blink_platform_impl.cc
@@ -292,6 +292,8 @@ static int ToMessageID(WebLocalizedString::Name name) {
return IDS_FORM_VALIDATION_TOO_LONG;
case WebLocalizedString::ValidationTooShort:
return IDS_FORM_VALIDATION_TOO_SHORT;
+ case WebLocalizedString::ValidationTooShortPlural:
+ return IDS_FORM_VALIDATION_TOO_SHORT_PLURAL;
case WebLocalizedString::ValidationTypeMismatch:
return IDS_FORM_VALIDATION_TYPE_MISMATCH;
case WebLocalizedString::ValidationTypeMismatchForEmail:
« no previous file with comments | « content/app/strings/content_strings.grd ('k') | third_party/WebKit/LayoutTests/fast/forms/validationMessage-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698