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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
304 <label> | 304 <label> |
305 <input id="password-manager-enabled" | 305 <input id="password-manager-enabled" |
306 pref="profile.password_manager_enabled" | 306 pref="profile.password_manager_enabled" |
307 metric="Options_PasswordManager" type="checkbox"> | 307 metric="Options_PasswordManager" type="checkbox"> |
308 <span i18n-content="passwordManagerEnabled"></span> | 308 <span i18n-content="passwordManagerEnabled"></span> |
309 </label> | 309 </label> |
310 <button id="manage-passwords" class="link-button" | 310 <button id="manage-passwords" class="link-button" |
311 i18n-content="managePasswords" | 311 i18n-content="managePasswords" |
312 pref="profile.password_manager_enabled"></button> | 312 pref="profile.password_manager_enabled"></button> |
313 </div> | 313 </div> |
314 <div class="checkbox"> | |
315 <label> | |
316 <input id="passwordGenerationEnabled" pref="password_generation.enabled" | |
317 metric="Options_PasswordGenerationCheckbox" type="checkbox"> | |
Ilya Sherman
2012/05/01 22:27:48
Please run src/chrome/tools/extract_actions.py and
zysxqn
2012/05/03 00:57:24
Done.
| |
318 <span id="passwordGenerationEnabledDesc" | |
319 i18n-content="passwordGenerationEnabledDescription"></span> | |
320 </label> | |
321 </div> | |
314 <if expr="is_macosx"> | 322 <if expr="is_macosx"> |
315 <div id="mac-passwords-warning" i18n-content="macPasswordsWarning" hidden> | 323 <div id="mac-passwords-warning" i18n-content="macPasswordsWarning" hidden> |
316 </div> | 324 </div> |
317 </if> | 325 </if> |
318 <!-- This makes the managed-banner appear when the "pref" is configured by | 326 <!-- This makes the managed-banner appear when the "pref" is configured by |
319 the IT administrator. --> | 327 the IT administrator. --> |
320 <input name="password_allow_show_hidden" type="text" | 328 <input name="password_allow_show_hidden" type="text" |
321 pref="profile.password_manager_allow_show_passwords" hidden> | 329 pref="profile.password_manager_allow_show_passwords" hidden> |
322 </section> | 330 </section> |
323 <section id="web-content-section"> | 331 <section id="web-content-section"> |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
488 </section> | 496 </section> |
489 </if> | 497 </if> |
490 </div> <!-- advanced-settings-container --> | 498 </div> <!-- advanced-settings-container --> |
491 </div> <!-- advanced-settings --> | 499 </div> <!-- advanced-settings --> |
492 <footer> | 500 <footer> |
493 <button id="advanced-settings-expander" class="link-button" | 501 <button id="advanced-settings-expander" class="link-button" |
494 i18n-content="showAdvancedSettings"> | 502 i18n-content="showAdvancedSettings"> |
495 </button> | 503 </button> |
496 </footer> | 504 </footer> |
497 </div> | 505 </div> |
OLD | NEW |