blob: 94a6168e2feb40ac6baa9cf1a35781aa2a0dba58 (
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
<div class="page hidden" id="personalPage">
<h1 i18n-content="personalPage"></h1>
<section>
<h3 i18n-content="sync_section"></h3>
<table class="option-control-table">
<tr id="text-when-not-synced">
<td>
<div class="section-text" id="sync_not_setup_info"
i18n-content="sync_not_setup_info"/>
</td>
</tr>
<tr id="button-when-not-synced">
<td>
<button id="start-sync" i18n-content="start_sync"></button>
</td>
</tr>
</div>
<div>
<tr id="text-when-synced">
<td>
<div class="section-text" id="synced_to_user_with_time"
i18n-content="synced_to_user_with_time"/>
</td>
</tr>
<tr id="button-when-synced">
<td>
<button id="stop-sync" i18n-content="stop_sync"></button>
<button id="sync-customize" i18n-content="sync_customize"></button>
</td>
</tr>
</div>
</table>
</section>
<section>
<h3 i18n-content="passwords"></h3>
<table class="option-control-table">
<tr>
<td class="option-name">
<label>
<input id="passwords_asktosave"
name="passwords_radio"
pref="profile.password_manager_enabled"
type="radio" value="true">
<span i18n-content="passwords_asktosave"></span>
</label>
</td>
</tr>
<tr>
<td class="option-name">
<label>
<input id="passwords_neversave"
name="passwords_radio"
pref="profile.password_manager_enabled"
type="radio" value="false">
<span i18n-content="passwords_neversave"></span>
</label>
</td>
</tr>
<tr><td>
<button id="showpasswords" i18n-content="showpasswords"></button>
</td></tr>
</table>
</section>
<section>
<h3 i18n-content="autofill"></h3>
<table class="option-control-table">
<tr>
<td class="option-name">
<label>
<input id="autofill_enable"
name="autofill_radio"
pref="autofill.enabled"
type="radio" value="true">
<span i18n-content="autofill_enable"></span>
</label>
</td>
</tr>
<tr>
<td class="option-name">
<label>
<input id="autofill_disable"
name="autofill_radio"
pref="autofill.enabled"
type="radio" value="false">
<span i18n-content="autofill_disable"></span>
</label>
</td>
</tr>
<tr><td>
<button id="autofill_options" i18n-content="autofill_options">
</button>
</td></tr>
</table>
</section>
<section>
<h3 i18n-content="browsing_data"></h3>
<table class="option-control-table">
<tr><td>
<button id="import_data" i18n-content="import_data"></button>
</td></tr>
</table>
</section>
<if expr="not pp_ifdef('toolkit_views') and (os == 'linux2' or os.find('bsd') != -1)">
<section>
<h3 i18n-content="appearance"></h3>
<table class="option-control-table">
<tr><td>
<button id="themes_GTK_button" i18n-content="themes_GTK_button">
</button>
<button id="themes_set_classic" i18n-content="themes_set_classic">
</button>
<a id="linux_themes_gallery" i18n-content="themes_gallery"></a>
</td></tr>
<tr>
<td class="option-name">
<label>
<input name="decorations_radio"
pref="browser.custom_chrome_frame"
type="radio" value="false">
<span i18n-content="showWindow_decorations_radio"></span>
</label>
</td>
</tr>
<tr>
<td class="option-name">
<label>
<input name="decorations_radio"
pref="browser.custom_chrome_frame"
type="radio" value="true">
<span i18n-content="hideWindow_decorations_radio"></span>
</label>
</td>
</tr>
</table>
</section>
</if>
<if expr="pp_ifdef('toolkit_views') or os == 'win32' or os == 'darwin'">
<section>
<h3 i18n-content="themes"></h3>
<table class="option-control-table">
<tr><td>
<button id="themes_reset" i18n-content="themes_reset"></button>
<a id="nonlinux_themes_gallery" i18n-content="themes_gallery"></a>
</td></tr>
</table>
</section>
</if>
</div>
|