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

Unified Diff: chrome/browser/chromeos/status/input_method_menu.cc

Issue 7840021: Add Telugu and Kannada IME support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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
« no previous file with comments | « chrome/browser/chromeos/input_method/input_method_util.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/status/input_method_menu.cc
diff --git a/chrome/browser/chromeos/status/input_method_menu.cc b/chrome/browser/chromeos/status/input_method_menu.cc
index 2a1cadef947561e40da905c84c230a455e905695..31e123a612fb9e52c89a5676fae35039be1acd50 100644
--- a/chrome/browser/chromeos/status/input_method_menu.cc
+++ b/chrome/browser/chromeos/status/input_method_menu.cc
@@ -654,7 +654,6 @@ std::wstring InputMethodMenu::GetTextForMenu(
const std::string language_code
= input_method::GetLanguageCodeFromDescriptor(input_method);
std::wstring text;
- // TODO(yusukes): Add Telugu and Kanada.
if (language_code == "am" ||
language_code == "ar" ||
language_code == "bn" ||
@@ -662,10 +661,12 @@ std::wstring InputMethodMenu::GetTextForMenu(
language_code == "fr" ||
language_code == "gu" ||
language_code == "hi" ||
+ language_code == "kn" ||
language_code == "ml" ||
language_code == "mr" ||
language_code == "nl" ||
- language_code == "ta") {
+ language_code == "ta" ||
+ language_code == "te") {
text = GetLanguageName(language_code) + L" - ";
}
text += input_method::GetString(input_method.id(), input_method.id());
« no previous file with comments | « chrome/browser/chromeos/input_method/input_method_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698