OLD | NEW |
1 <?xml version="1.0"?> | 1 <?xml version="1.0"?> |
2 | 2 |
3 <!-- This Source Code is subject to the terms of the Mozilla Public License | 3 <!-- This Source Code is subject to the terms of the Mozilla Public License |
4 - version 2.0 (the "License"). You can obtain a copy of the License at | 4 - version 2.0 (the "License"). You can obtain a copy of the License at |
5 - http://mozilla.org/MPL/2.0/. --> | 5 - http://mozilla.org/MPL/2.0/. --> |
6 | 6 |
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> | 7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
8 <?xml-stylesheet href="chrome://adblockplus/skin/filters.css" type="text/css"?> | 8 <?xml-stylesheet href="chrome://adblockplus/skin/filters.css" type="text/css"?> |
9 | 9 |
10 <!DOCTYPE dialog SYSTEM "chrome://adblockplus/locale/filters.dtd"> | 10 <!DOCTYPE dialog SYSTEM "chrome://adblockplus/locale/filters.dtd"> |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 oncontextmenu="SubscriptionActions.openMenu(event, this);"> | 167 oncontextmenu="SubscriptionActions.openMenu(event, this);"> |
168 <vbox class="{subscription.disabled ? 'disabled' : ''}"> | 168 <vbox class="{subscription.disabled ? 'disabled' : ''}"> |
169 <hbox align="center"> | 169 <hbox align="center"> |
170 <checkbox label="&subscription.enabled.label;" class="enabledCheck
box tabable" tabindex="-1" | 170 <checkbox label="&subscription.enabled.label;" class="enabledCheck
box tabable" tabindex="-1" |
171 checked="{subscription.disabled ? 'false' : 'true'}" oncommand="
SubscriptionActions.setDisabled(this, !this.checked);"/> | 171 checked="{subscription.disabled ? 'false' : 'true'}" oncommand="
SubscriptionActions.setDisabled(this, !this.checked);"/> |
172 | 172 |
173 <vbox flex="1"> | 173 <vbox flex="1"> |
174 <hbox align="center"> | 174 <hbox align="center"> |
175 <deck class="titleBox" flex="1" selectedIndex="0" onselect="ev
ent.stopPropagation();"> | 175 <deck class="titleBox" flex="1" selectedIndex="0" onselect="ev
ent.stopPropagation();"> |
176 <description ondblclick="if (event.button == 0) TitleEditor.
start(this, true);"> | 176 <description ondblclick="if (event.button == 0) TitleEditor.
start(this, true);"> |
177 <description> | 177 <description class="title" value="{subscription.title}" fl
ex="1" crop="end"/> |
178 <description class="title" value="{subscription.title}"
flex="1" crop="end"/> | 178 (<if condition="{isExternal}"> |
179 (<if condition="{isExternal}"> | 179 <description value="&subscription.external.label;"/> |
180 <description value="&subscription.external.label;"/> | 180 <else/> |
181 <else/> | 181 <if condition="{subscription.homepage}"> |
182 <if condition="{subscription.homepage}"> | 182 <description class="link" value="&subscription.homepag
e.label;" |
183 <description class="link" value="&subscription.homep
age.label;" | 183 _url="{subscription.homepage}" tooltiptext="{subscri
ption.homepage}" |
184 _url="{subscription.homepage}" tooltiptext="{subsc
ription.homepage}" | 184 onclick="if (event.button == 0) { event.stopPropagat
ion();UI.loadInBrowser(this.getAttribute('_url')); }"/>,  |
185 onclick="if (event.button == 0) { event.stopPropag
ation();UI.loadInBrowser(this.getAttribute('_url')); }"/>,  | 185 </if> |
186 </if> | 186 <description class="link" value="&subscription.source.la
bel;" |
187 <description class="link" value="&subscription.source.
label;" | 187 _url="{subscription.url}" tooltiptext="{subscription.u
rl}" |
188 _url="{subscription.url}" tooltiptext="{subscription
.url}" | 188 onclick="if (event.button == 0) { event.stopPropagatio
n();UI.loadInBrowser(this.getAttribute('_url')); }"/> |
189 onclick="if (event.button == 0) { event.stopPropagat
ion();UI.loadInBrowser(this.getAttribute('_url')); }"/> | 189 </if>) |
190 </if>) | |
191 </description> | |
192 </description> | 190 </description> |
193 <textbox oncontextmenu="event.stopPropagation();" class="tit
leEditor" onkeypress="TitleEditor.keyPress(event);" onblur="TitleEditor.end(true
);"/> | 191 <textbox oncontextmenu="event.stopPropagation();" class="tit
leEditor" onkeypress="TitleEditor.keyPress(event);" onblur="TitleEditor.end(true
);"/> |
194 </deck> | 192 </deck> |
195 </hbox> | 193 </hbox> |
196 <hbox align="center"> | 194 <hbox align="center"> |
197 <description flex="1" class="status"> | 195 <description flex="1" class="status"> |
198 <description value="&subscription.lastDownload.label;"/>
0; | 196 <description value="&subscription.lastDownload.label;"/>
0; |
199 <if condition="{downloading}"> | 197 <if condition="{downloading}"> |
200 <description value="&subscription.lastDownload.inProgress;
"/> | 198 <description value="&subscription.lastDownload.inProgress;
"/> |
201 <elif condition="{!subscription.lastDownload}"/> | 199 <elif condition="{!subscription.lastDownload}"/> |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
380 <menuitem id="restoreOwnBackup" key="restore-key" label="&restore.own.labe
l;…" oncommand="Backup.restoreFromFile();"/> | 378 <menuitem id="restoreOwnBackup" key="restore-key" label="&restore.own.labe
l;…" oncommand="Backup.restoreFromFile();"/> |
381 </menupopup> | 379 </menupopup> |
382 </button> | 380 </button> |
383 | 381 |
384 <spacer flex="1"/> | 382 <spacer flex="1"/> |
385 | 383 |
386 <button id="close" dlgtype="accept" label="&close.label;"/> | 384 <button id="close" dlgtype="accept" label="&close.label;"/> |
387 </hbox> | 385 </hbox> |
388 | 386 |
389 </dialog> | 387 </dialog> |
OLD | NEW |