OLD | NEW |
---|---|
1 <div id="settings" class="page" hidden> | 1 <div id="settings" class="page" hidden> |
2 <header> | 2 <header> |
3 <h1 i18n-content="settingsTitle"></h1> | 3 <h1 i18n-content="settingsTitle"></h1> |
4 </header> | 4 </header> |
5 <include src="reset_profile_settings_banner.html"> | 5 <include src="reset_profile_settings_banner.html"> |
6 <include src="automatic_settings_reset_banner.html"> | 6 <include src="automatic_settings_reset_banner.html"> |
7 <if expr="chromeos"> | 7 <if expr="chromeos"> |
8 <include src="secondary_user_banner.html"> | 8 <include src="secondary_user_banner.html"> |
9 <section> | 9 <section> |
10 <div id="network-section-header" class="section-header"> | 10 <div id="network-section-header" class="section-header"> |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
283 <div id="advanced-settings-container"> | 283 <div id="advanced-settings-container"> |
284 <if expr="chromeos"> | 284 <if expr="chromeos"> |
285 <section> | 285 <section> |
286 <h3 i18n-content="datetimeTitle"></h3> | 286 <h3 i18n-content="datetimeTitle"></h3> |
287 <div class="option-control-table"> | 287 <div class="option-control-table"> |
288 <div guest-visibility="disabled"> | 288 <div guest-visibility="disabled"> |
289 <span id="timezone-value-label" class="option-name" | 289 <span id="timezone-value-label" class="option-name" |
290 i18n-content="timezone"></span> | 290 i18n-content="timezone"></span> |
291 <div id="timezone-value"> | 291 <div id="timezone-value"> |
292 <select class="control" | 292 <select class="control" |
293 id="timezone-value-select" | |
293 i18n-options="timezoneList" data-type="string" | 294 i18n-options="timezoneList" data-type="string" |
294 pref="cros.system.timezone" | 295 pref="cros.system.timezone" |
295 aria-labelledby="timezone-value-label" | 296 aria-labelledby="timezone-value-label" |
296 metric="Options_TimezoneSelect"></select> | 297 metric="Options_TimezoneSelect"></select> |
297 </div> | 298 </div> |
298 </div> | 299 </div> |
299 <div class="checkbox settings-row"> | 300 <div class="checkbox settings-row"> |
300 <label> | 301 <label> |
301 <input id="use-24hour-clock" pref="settings.clock.use_24hour_clock" | 302 <input id="use-24hour-clock" pref="settings.clock.use_24hour_clock" |
302 metric="Options_Use24HourClockCheckbox" type="checkbox"> | 303 metric="Options_Use24HourClockCheckbox" type="checkbox"> |
303 <span i18n-content="use24HourClock"></span> | 304 <span i18n-content="use24HourClock"></span> |
304 </label> | 305 </label> |
306 <div id="resolve-timezone-by-geolocation-selection" hidden> | |
307 <label> | |
308 <input id="resolve-timezone-by-geolocation" pref="settings.resolve_t imezone_by_geolocation" | |
Bernhard Bauer
2015/01/05 10:22:33
Break before pref to fit into 80 columns.
Alexander Alekseev
2015/01/15 18:59:02
Done.
| |
309 metric="Options_ResolveTimezoneByGeoLocation" type="checkbox"> | |
310 <span i18n-content="resolveTimezoneByGeoLocation"></span> | |
311 </label> | |
312 </div> | |
305 </div> | 313 </div> |
306 <div id="time-synced-explanation" class="settings-row" | 314 <div id="time-synced-explanation" class="settings-row" |
307 i18n-content="timeSyncedExplanation"></div> | 315 i18n-content="timeSyncedExplanation"></div> |
308 <div id="set-time" class="settings-row" hidden> | 316 <div id="set-time" class="settings-row" hidden> |
309 <button id="set-time-button" | 317 <button id="set-time-button" |
310 i18n-content="setTimeButton"></button> | 318 i18n-content="setTimeButton"></button> |
311 </div> | 319 </div> |
312 </div> | 320 </div> |
313 </section> | 321 </section> |
314 | 322 |
(...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
995 </button> | 1003 </button> |
996 </div> | 1004 </div> |
997 </section> | 1005 </section> |
998 </div> <!-- advanced-settings-container --> | 1006 </div> <!-- advanced-settings-container --> |
999 </div> <!-- advanced-settings --> | 1007 </div> <!-- advanced-settings --> |
1000 <footer> | 1008 <footer> |
1001 <a is="action-link" id="advanced-settings-expander" | 1009 <a is="action-link" id="advanced-settings-expander" |
1002 i18n-content="showAdvancedSettings"></a> | 1010 i18n-content="showAdvancedSettings"></a> |
1003 </footer> | 1011 </footer> |
1004 </div> | 1012 </div> |
OLD | NEW |