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

Side by Side Diff: chrome/browser/resources/options/personal_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 id="personal-page" class="page hidden"> 1 <div id="personal-page" class="page hidden">
2 <h1 i18n-content="personalPage"></h1> 2 <h1 i18n-content="personalPage"></h1>
3 3
4 <if expr="pp_ifdef('chromeos')"> 4 <if expr="pp_ifdef('chromeos')">
5 <section> 5 <section>
6 <h3 i18n-content="account"></h3> 6 <h3 i18n-content="account"></h3>
7 <div> 7 <div>
8 <table class="option-control-table"> 8 <table class="option-control-table">
9 <tr> 9 <tr>
10 <td> 10 <td>
11 <img id='account-picture' 11 <img id='account-picture'
12 src='chrome://theme/IDR_LOGIN_DEFAULT_USER'> 12 src='chrome://theme/IDR_LOGIN_DEFAULT_USER'>
13 </td> 13 </td>
14 <td> 14 <td>
15 <label> 15 <label>
16 <input id="enable-screen-lock" type="checkbox" 16 <input id="enable-screen-lock" type="checkbox"
17 pref="settings.enable_screen_lock"> 17 pref="settings.enable_screen_lock">
18 <span i18n-content="enableScreenlock"></span> 18 <span i18n-content="enableScreenlock"></span>
19 </label> 19 </label>
20 </td> 20 </td>
21 </tr> 21 </tr>
22 </table> 22 </table>
23 </div> 23 </div>
24 </section> 24 </section>
25 </if> 25 </if>
26 <section id="sync-section"> 26 <section id="sync-section">
27 <h3 i18n-content="syncSection"></h3> 27 <h3 i18n-content="syncSection"></h3>
28 <div> 28 <div>
29 <select id="sync-select" pref="sync.keep_everything_synced"></select> 29 <select id="sync-select" pref="sync.keep_everything_synced"
30 i18n-options="syncSelectList"></select>
30 <table id="sync-table"> 31 <table id="sync-table">
31 <tr> 32 <tr>
32 <td class="option-name"> 33 <td class="option-name">
33 <label class="checkbox"> 34 <label class="checkbox">
34 <input id="settings-check" pref="sync.preferences" 35 <input id="settings-check" pref="sync.preferences"
35 type="checkbox"> 36 type="checkbox">
36 <span i18n-content="syncsettings"></span> 37 <span i18n-content="syncsettings"></span>
37 </label> 38 </label>
38 </td> 39 </td>
39 <td class="option-name"> 40 <td class="option-name">
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 <div> 175 <div>
175 <button id="themes-reset" i18n-content="themesReset"></button> 176 <button id="themes-reset" i18n-content="themesReset"></button>
176 </div> 177 </div>
177 <a id="themes-gallery" i18n-content="themesGallery" 178 <a id="themes-gallery" i18n-content="themesGallery"
178 i18n-values="href:themesGalleryURL" target="_blank"></a> 179 i18n-values="href:themesGalleryURL" target="_blank"></a>
179 </div> 180 </div>
180 </section> 181 </section>
181 </if> 182 </if>
182 183
183 </div> 184 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/font_settings_ui.js ('k') | chrome/browser/resources/options/personal_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698