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

Side by Side Diff: chrome/browser/resources/options/chromeos_system_options.html

Issue 6150003: DOMUI: Implement the i18n-options attribute that allows the client to load (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nit fix. Created 9 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <div class="page hidden" id="systemPage"> 1 <div class="page hidden" id="systemPage">
2 <h1 i18n-content="systemPage"></h1> 2 <h1 i18n-content="systemPage"></h1>
3 <section> 3 <section>
4 <h3 i18n-content="datetime_title"></h3> 4 <h3 i18n-content="datetime_title"></h3>
5 <table class="option-control-table"> 5 <table class="option-control-table">
6 <tr> 6 <tr>
7 <td class="option-name" i18n-content="timezone"></td> 7 <td class="option-name" i18n-content="timezone"></td>
8 <td class="option-value"> 8 <td class="option-value">
9 <select id="timezone-select" class="control" 9 <select id="timezone-select" class="control"
10 i18n-options="timezoneList"
10 pref="cros.system.timezone"></select> 11 pref="cros.system.timezone"></select>
11 </td> 12 </td>
12 </tr> 13 </tr>
13 </table> 14 </table>
14 </section> 15 </section>
15 <section> 16 <section>
16 <h3 i18n-content="touchpad"></h3> 17 <h3 i18n-content="touchpad"></h3>
17 <table class="option-control-table"> 18 <table class="option-control-table">
18 <tr> 19 <tr>
19 <td class="option-name" i18n-content="sensitivity"></td> 20 <td class="option-name" i18n-content="sensitivity"></td>
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 <label class="checkbox"> 56 <label class="checkbox">
56 <input id="accesibility-check" 57 <input id="accesibility-check"
57 pref="settings.accessibility" type="checkbox"> 58 pref="settings.accessibility" type="checkbox">
58 <span i18n-content="accessibility"></span> 59 <span i18n-content="accessibility"></span>
59 </label> 60 </label>
60 </td> 61 </td>
61 </tr> 62 </tr>
62 </table> 63 </table>
63 </section> 64 </section>
64 </div> 65 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698