OLD | NEW |
1 <div class="page hidden" id="personalPage"> | 1 <div class="page hidden" id="personalPage"> |
2 <h1 i18n-content="personalPage"></h1> | 2 <h1 i18n-content="personalPage"></h1> |
| 3 |
| 4 <section> |
| 5 <h3 i18n-content="sync_section"></h3> |
| 6 <table class="option-control-table"> |
| 7 <tr id="text-when-not-synced"> |
| 8 <td> |
| 9 <div class="section-text" id="sync_not_setup_info" |
| 10 i18n-content="sync_not_setup_info"/> |
| 11 </td> |
| 12 </tr> |
| 13 <tr id="button-when-not-synced"> |
| 14 <td> |
| 15 <button id="start-sync" i18n-content="start_sync"></button> |
| 16 </td> |
| 17 </tr> |
| 18 </div> |
| 19 <div> |
| 20 <tr id="text-when-synced"> |
| 21 <td> |
| 22 <div class="section-text" id="synced_to_user_with_time" |
| 23 i18n-content="synced_to_user_with_time"/> |
| 24 </td> |
| 25 </tr> |
| 26 <tr id="button-when-synced"> |
| 27 <td> |
| 28 <button id="stop-sync" i18n-content="stop_sync"></button> |
| 29 <button id="sync-customize" i18n-content="sync_customize"></button> |
| 30 </td> |
| 31 </tr> |
| 32 </div> |
| 33 </table> |
| 34 </section> |
| 35 <section> |
| 36 <h3 i18n-content="passwords"></h3> |
| 37 <table class="option-control-table"> |
| 38 <tr> |
| 39 <td class="option-name"> |
| 40 <label> |
| 41 <input id="passwords_asktosave" |
| 42 name="passwords_radio" |
| 43 pref="profile.password_manager_enabled" |
| 44 type="radio" value="true"> |
| 45 <span i18n-content="passwords_asktosave"></span> |
| 46 </label> |
| 47 </tr> |
| 48 <tr> |
| 49 <td class="option-name"> |
| 50 <label> |
| 51 <input id="passwords_neversave" |
| 52 name="passwords_radio" |
| 53 pref="profile.password_manager_enabled" |
| 54 type="radio" value="false"> |
| 55 <span i18n-content="passwords_neversave"></span> |
| 56 </label> |
| 57 </tr> |
| 58 <tr> |
| 59 <button id="showpasswords" i18n-content="showpasswords"></button> |
| 60 </tr> |
| 61 </table> |
| 62 </section> |
| 63 <section> |
| 64 <h3 i18n-content="autofill"></h3> |
| 65 <table class="option-control-table"> |
| 66 <tr> |
| 67 <td class="option-name"> |
| 68 <label> |
| 69 <input id="autofill_enable" |
| 70 name="autofill_radio" |
| 71 pref="autofill.enabled" |
| 72 type="radio" value="true"> |
| 73 <span i18n-content="autofill_enable"></span> |
| 74 </label> |
| 75 </tr> |
| 76 <tr> |
| 77 <td class="option-name"> |
| 78 <label> |
| 79 <input id="autofill_disable" |
| 80 name="autofill_radio" |
| 81 pref="autofill.enabled" |
| 82 type="radio" value="false"> |
| 83 <span i18n-content="autofill_disable"></span> |
| 84 </label> |
| 85 </tr> |
| 86 <tr> |
| 87 <button id="autofill_options" i18n-content="autofill_options"> |
| 88 </button> |
| 89 </tr> |
| 90 </table> |
| 91 </section> |
| 92 <section> |
| 93 <h3 i18n-content="browsing_data"></h3> |
| 94 <table class="option-control-table"> |
| 95 <tr> |
| 96 <button id="import_data" i18n-content="import_data"></button> |
| 97 </tr> |
| 98 </table> |
| 99 </section> |
| 100 |
| 101 <if expr="os == 'linux2' or os.find('bsd') != -1"> |
| 102 <if expr="not pp_ifdef('chromeos')"> |
| 103 <section> |
| 104 <h3 i18n-content="appearance"></h3> |
| 105 <table class="option-control-table"> |
| 106 <tr> |
| 107 <button id="themes_GTK_button" i18n-content="themes_GTK_button"> |
| 108 </button> |
| 109 <button id="themes_set_classic" i18n-content="themes_set_classic"> |
| 110 </button> |
| 111 <a id="linux_themes_gallery" i18n-content="themes_gallery"></a> |
| 112 </tr> |
| 113 <tr> |
| 114 <td class="option-name"> |
| 115 <label> |
| 116 <input name="decorations_radio" |
| 117 pref="browser.custom_chrome_frame" |
| 118 type="radio" value="false"> |
| 119 <span i18n-content="showWindow_decorations_radio"></span> |
| 120 </label> |
| 121 </tr> |
| 122 <tr> |
| 123 <td class="option-name"> |
| 124 <label> |
| 125 <input name="decorations_radio" |
| 126 pref="browser.custom_chrome_frame" |
| 127 type="radio" value="true"> |
| 128 <span i18n-content="hideWindow_decorations_radio"></span> |
| 129 </label> |
| 130 </tr> |
| 131 </table> |
| 132 </section> |
| 133 </if></if> |
| 134 <if expr="pp_ifdef('chromeos') or os == 'win32' or os == 'darwin'"> |
| 135 <section> |
| 136 <h3 i18n-content="themes"></h3> |
| 137 <table class="option-control-table"> |
| 138 <tr> |
| 139 <button id="themes_reset" i18n-content="themes_reset"></button> |
| 140 <a id="nonlinux_themes_gallery" i18n-content="themes_gallery"></a> |
| 141 </tr> |
| 142 </table> |
| 143 </section> |
| 144 </if> |
| 145 |
3 </div> | 146 </div> |
OLD | NEW |