summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/options/personal_options.html
blob: 879f14e123eb96714d1bc06edc38fa9c7fc32379 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<div class="page hidden" id="personalPage">
  <h1 i18n-content="personalPage"></h1>

  <section>
    <h3 i18n-content="sync_section"></h3>
    <div>
      <div id="not-synced-controls" class="hidden">
        <div class="section-text" id="sync_not_setup_info"
            i18n-content="sync_not_setup_info"></div>
        <div>
          <button id="start-sync" i18n-content="start_sync"></button>
        </div>
      </div>
      <div id="synced-controls" class="hidden">
        <div class="section-text" id="synced_to_user_with_time"></div>
        <div>
<if expr="not pp_ifdef('chromeos')">
          <button id="stop-sync" i18n-content="stop_sync"></button>
</if>
          <button id="sync-customize" i18n-content="sync_customize"></button>
        </div>
      </div>
    </div>
  </section>
  <section>
    <h3 i18n-content="passwords"></h3>
    <div>
      <label>
        <input id="passwords_asktosave"
            name="passwords_radio"
            pref="profile.password_manager_enabled"
            type="radio" value="true" metric="Options_PasswordManager">
        <span i18n-content="passwords_asktosave"></span>
      </label>
      <label>
        <input id="passwords_neversave"
            name="passwords_radio"
            pref="profile.password_manager_enabled"
            type="radio" value="false" metric="Options_PasswordManager">
        <span i18n-content="passwords_neversave"></span>
      </label>
      <div><button id="showpasswords"
          i18n-content="showpasswords"></button></div>
    </div>
  </section>
  <section>
    <h3 i18n-content="autofill"></h3>
    <div>
      <button id="autofill_options" i18n-content="autofill_options"></button>
    </div>
  </section>
<if expr="not pp_ifdef('chromeos')">
  <section>
    <h3 i18n-content="browsing_data"></h3>
    <div>
      <button id="import_data" i18n-content="import_data"></button>
    </div>
  </section>
</if>
<if expr="not pp_ifdef('toolkit_views') and (os == 'linux2' or os.find('bsd') != -1)">
  <section>
    <h3 i18n-content="appearance"></h3>
    <div>
      <div>
        <button id="themes_GTK_button"
            i18n-content="themes_GTK_button"></button>
        <button id="themes_set_classic"
            i18n-content="themes_set_classic"></button>
        <a i18n-content="themes_gallery" id="themes-gallery" href=""></a>
      </div>
      <label>
        <input name="decorations_radio"
            pref="browser.custom_chrome_frame"
            type="radio" value="false" metric="Options_CustomFrame">
        <span i18n-content="showWindow_decorations_radio"></span>
      </label>
      <label>
        <input name="decorations_radio"
            pref="browser.custom_chrome_frame"
            type="radio" value="true" metric="Options_CustomFrame">
        <span i18n-content="hideWindow_decorations_radio"></span>
      </label>
    </div>
  </section>
</if>
<if expr="pp_ifdef('toolkit_views') or os == 'win32' or os == 'darwin'">
  <section>
    <h3 i18n-content="themes"></h3>
    <div>
      <button id="themes_reset" i18n-content="themes_reset"></button>
      <a i18n-content="themes_gallery" id="themes-gallery" href=""></a>
    </div>
  </section>
</if>

</div>