diff options
author | yusukes@chromium.org <yusukes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-26 09:13:38 +0000 |
---|---|---|
committer | yusukes@chromium.org <yusukes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-26 09:13:38 +0000 |
commit | f59f186c20f7a32a1408116da7660c8ec5cdab06 (patch) | |
tree | 8210e24c508e5f4db492bf3af7442c09af76aefd /chrome | |
parent | ba96f8aa35e2166332e13ac1cbb61ccf4e497594 (diff) | |
download | chromium_src-f59f186c20f7a32a1408116da7660c8ec5cdab06.zip chromium_src-f59f186c20f7a32a1408116da7660c8ec5cdab06.tar.gz chromium_src-f59f186c20f7a32a1408116da7660c8ec5cdab06.tar.bz2 |
Add string resources for US intl and Russia phonetic.
BUG=chromium-os:3440
TEST=checked chrome_log that no warnings are written.
Review URL: http://codereview.chromium.org/3159041
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57499 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/app/generated_resources.grd | 6 | ||||
-rw-r--r-- | chrome/browser/chromeos/input_method/input_method_util.cc | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd index bf3411a..9b75f49 100644 --- a/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd @@ -9243,6 +9243,9 @@ Keep your key file in a safe place. You will need it to create new versions of y <message name="IDS_STATUSBAR_LAYOUT_USA" desc="In the language menu button, this shows the input mode."> English (USA) </message> + <message name="IDS_STATUSBAR_LAYOUT_USA_INTERNATIONAL" desc="In the language menu button, this shows the input mode."> + English (USA international) + </message> <message name="IDS_STATUSBAR_LAYOUT_LITHUANIA" desc="In the language menu button, this shows the input mode."> Lithuanian </message> @@ -9255,6 +9258,9 @@ Keep your key file in a safe place. You will need it to create new versions of y <message name="IDS_STATUSBAR_LAYOUT_RUSSIA" desc="In the language menu button, this shows the input mode."> Russian </message> + <message name="IDS_STATUSBAR_LAYOUT_RUSSIA_PHONETIC" desc="In the language menu button, this shows the input mode."> + Russian (Phonetic) + </message> <message name="IDS_STATUSBAR_LAYOUT_GREECE" desc="In the language menu button, this shows the input mode."> Greek </message> diff --git a/chrome/browser/chromeos/input_method/input_method_util.cc b/chrome/browser/chromeos/input_method/input_method_util.cc index 8248ae1..ad70ba7 100644 --- a/chrome/browser/chromeos/input_method/input_method_util.cc +++ b/chrome/browser/chromeos/input_method/input_method_util.cc @@ -187,11 +187,14 @@ const struct EnglishToResouceId { { "USA - Dvorak", IDS_STATUSBAR_LAYOUT_USA_DVORAK }, { "Romania", IDS_STATUSBAR_LAYOUT_ROMANIA }, { "USA", IDS_STATUSBAR_LAYOUT_USA }, + { "USA - International (AltGr dead keys)", + IDS_STATUSBAR_LAYOUT_USA_INTERNATIONAL }, { "Lithuania", IDS_STATUSBAR_LAYOUT_LITHUANIA }, { "United Kingdom - Extended - Winkeys", IDS_STATUSBAR_LAYOUT_UNITED_KINGDOM }, { "Slovakia", IDS_STATUSBAR_LAYOUT_SLOVAKIA }, { "Russia", IDS_STATUSBAR_LAYOUT_RUSSIA }, + { "Russia - Phonetic", IDS_STATUSBAR_LAYOUT_RUSSIA_PHONETIC }, { "Greece", IDS_STATUSBAR_LAYOUT_GREECE }, { "Belgium", IDS_STATUSBAR_LAYOUT_BELGIUM }, { "Bulgaria", IDS_STATUSBAR_LAYOUT_BULGARIA }, |