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 <if expr="not pp_ifdef('chromeos')"> | 5 <if expr="not pp_ifdef('chromeos')"> |
6 <include src="sync_section.html"> | 6 <include src="sync_section.html"> |
7 </if> | 7 </if> |
8 <if expr="pp_ifdef('chromeos')"> | 8 <if expr="pp_ifdef('chromeos')"> |
9 <section> | 9 <section> |
10 <h3 i18n-content="sectionTitleInternet"></h3> | 10 <h3 i18n-content="sectionTitleInternet"></h3> |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
185 <input id="use-24hour-clock" pref="settings.clock.use_24hour_clock" | 185 <input id="use-24hour-clock" pref="settings.clock.use_24hour_clock" |
186 type="checkbox"> | 186 type="checkbox"> |
187 <span i18n-content="use24HourClock"></span> | 187 <span i18n-content="use24HourClock"></span> |
188 </label> | 188 </label> |
189 </div> | 189 </div> |
190 </div> | 190 </div> |
191 </section> | 191 </section> |
192 </if> | 192 </if> |
193 <section> | 193 <section> |
194 <h3 i18n-content="advancedSectionTitlePrivacy"></h3> | 194 <h3 i18n-content="advancedSectionTitlePrivacy"></h3> |
195 <if expr="is_win"> | |
arv (Not doing code reviews)
2012/08/15 14:33:31
This will cause unbalanced <div>s. You probably wa
MAD
2012/08/15 19:29:41
Oupss... I missed one... Sorry...
Fixed :-)
| |
195 <div> | 196 <div> |
197 <div id="privacy-win8-data-settings" class="settings-row" hidden> | |
198 <span i18n-content="privacyWin8Data"></span> | |
199 <a target="_blank" i18n-content="learnMore" | |
200 i18n-values="href:privacyWin8DataLearnMoreURL"></a> | |
201 </div> | |
202 </if> | |
196 <div class="settings-row"> | 203 <div class="settings-row"> |
197 <button id="privacyContentSettingsButton" | 204 <button id="privacyContentSettingsButton" |
198 i18n-content="privacyContentSettingsButton"></button> | 205 i18n-content="privacyContentSettingsButton"></button> |
199 <button id="privacyClearDataButton" | 206 <button id="privacyClearDataButton" |
200 i18n-content="privacyClearDataButton"></button> | 207 i18n-content="privacyClearDataButton"></button> |
201 </div> | 208 </div> |
202 <div id="privacy-explanation" class="settings-row"> | 209 <div id="privacy-explanation" class="settings-row"> |
203 <span i18n-content="improveBrowsingExperience"></span> | 210 <span i18n-content="improveBrowsingExperience"></span> |
204 <span i18n-content="disableWebServices"></span> | 211 <span i18n-content="disableWebServices"></span> |
205 <a target="_blank" i18n-content="learnMore" | 212 <a target="_blank" i18n-content="learnMore" |
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
530 </section> | 537 </section> |
531 </if> | 538 </if> |
532 </div> <!-- advanced-settings-container --> | 539 </div> <!-- advanced-settings-container --> |
533 </div> <!-- advanced-settings --> | 540 </div> <!-- advanced-settings --> |
534 <footer> | 541 <footer> |
535 <button id="advanced-settings-expander" class="link-button" | 542 <button id="advanced-settings-expander" class="link-button" |
536 i18n-content="showAdvancedSettings"> | 543 i18n-content="showAdvancedSettings"> |
537 </button> | 544 </button> |
538 </footer> | 545 </footer> |
539 </div> | 546 </div> |
OLD | NEW |