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

Unified Diff: chrome/browser/resources/options/chromeos_language_options.html

Issue 3008016: Display the language name and the input method list dynamically. (Closed)
Patch Set: fix comments Created 10 years, 5 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: chrome/browser/resources/options/chromeos_language_options.html
diff --git a/chrome/browser/resources/options/chromeos_language_options.html b/chrome/browser/resources/options/chromeos_language_options.html
index a69f004006e6082d343c4944f21d13ecfbbf5add..887859e0d54ef6fcfce33630a6405f276c6e2d8e 100644
--- a/chrome/browser/resources/options/chromeos_language_options.html
+++ b/chrome/browser/resources/options/chromeos_language_options.html
@@ -7,24 +7,20 @@
<h3 i18n-content="languages"></h3>
<list id="language-options-list"></list>
<div class="language-options-lower-left">
- <button id="add-button" i18n-content="add_button"></button>
- <button id="remove-button" i18n-content="remove_button"></button>
+ <button id="language-options-add-button"
+ i18n-content="add_button"></button>
+ <button id="language-options-remove-button"
+ i18n-content="remove_button"></button>
</div>
</div>
<div class="language-options-right">
- <!-- TODO: The contents should be dynamically changed. -->
- <h3>English (United States)</h3>
+ <h3 id="language-options-language-name"></h3>
<div class="language-options-contents">
- <button id="ui-language-button"
- i18n-content="display_in_this_language"></button>
+ <button id="language-options-ui-language-button"></button>
</div>
<h3 i18n-content="input_method"></h3>
- <div class="language-options-contents">
- <!-- TODO: The contents should be dynamically changed. -->
- <label><input type="checkbox">US English</label>
- <label><input type="checkbox">Dvorak</label>
- <label><input type="checkbox">Dvorak - Left</label>
- <label><input type="checkbox">Dvorak - Right</label>
+ <div id="language-options-input-method-list"
+ class="language-options-contents">
</div>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698