| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 1 <?xml version="1.0"?> | 1 <?xml version="1.0"?> |
| 2 | 2 |
| 3 <!-- | 3 <!-- |
| 4 - This file is part of the URL Fixer, | 4 - This file is part of the URL Fixer, |
| 5 - Copyright (C) 2006-2016 Eyeo GmbH | 5 - Copyright (C) 2006-2016 Eyeo GmbH |
| 6 - | 6 - |
| 7 - URL Fixer is free software: you can redistribute it and/or modify | 7 - URL Fixer is free software: you can redistribute it and/or modify |
| 8 - it under the terms of the GNU General Public License version 3 as | 8 - it under the terms of the GNU General Public License version 3 as |
| 9 - published by the Free Software Foundation. | 9 - published by the Free Software Foundation. |
| 10 - | 10 - |
| 11 - URL Fixer is distributed in the hope that it will be useful, | 11 - URL Fixer is distributed in the hope that it will be useful, |
| 12 - but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 - but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 13 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 - GNU General Public License for more details. | 14 - GNU General Public License for more details. |
| 15 - | 15 - |
| 16 - You should have received a copy of the GNU General Public License | 16 - You should have received a copy of the GNU General Public License |
| 17 - along with URL Fixer. If not, see <http://www.gnu.org/licenses/>. | 17 - along with URL Fixer. If not, see <http://www.gnu.org/licenses/>. |
| 18 --> | 18 --> |
| 19 | 19 |
| 20 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> | 20 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
| 21 <?xml-stylesheet href="chrome://url-fixer/skin/options.css" type="text/css"?> | 21 <?xml-stylesheet href="chrome://url-fixer/skin/options.css" type="text/css"?> |
| 22 <!DOCTYPE prefwindow SYSTEM "chrome://url-fixer/locale/options.dtd"> | 22 <!DOCTYPE prefwindow SYSTEM "chrome://url-fixer/locale/options.dtd"> |
| 23 <dialog | 23 <dialog |
| 24 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" | 24 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
| 25 title="&urlfixer.options.title;" | 25 title="&urlfixer.options.title;" |
| 26 buttons="accept" | 26 buttons="accept" |
| 27 onload="initCheckboxes();updateList();" | 27 onload="updateList();" |
|
Wladimir Palant
2016/12/01 13:54:37
Missed that - initCheckboxes() was being called of
| |
| 28 windowtype="urlfixer:options"> | 28 windowtype="urlfixer:options"> |
| 29 <script type="text/javascript" src="common.js"/> | 29 <script type="text/javascript" src="common.js"/> |
| 30 <script type="text/javascript" src="options.js"/> | 30 <script type="text/javascript" src="options.js"/> |
| 31 <groupbox> | 31 <groupbox> |
| 32 <checkbox id="domainOptIn" label="&urlfixer.options.optIn;" oncommand="Prefs .domainOptIn = this.checked;"/> | |
|
Thomas Greiner
2016/12/07 15:43:34
What about chrome/locale/*/typedItOptIn.dtd?
Wladimir Palant
2016/12/08 12:48:14
Done.
| |
| 33 <label class="text-link" href="http://urlfixer.org/data/">&urlfixer.options. optIn.learnMore;</label> | |
| 34 </groupbox> | |
| 35 <groupbox> | |
| 36 <tabbox> | 32 <tabbox> |
| 37 <tabs> | 33 <tabs> |
| 38 <tab label="&urlfixer.options.tabs.whitelistLabel;"/> | 34 <tab label="&urlfixer.options.tabs.whitelistLabel;"/> |
| 39 <tab label="&urlfixer.options.tabs.findAndReplaceLabel;"/> | 35 <tab label="&urlfixer.options.tabs.findAndReplaceLabel;"/> |
| 40 </tabs> | 36 </tabs> |
| 41 <tabpanels> | 37 <tabpanels> |
| 42 <tabpanel orient="vertical"> | 38 <tabpanel orient="vertical"> |
| 43 <listbox id="whitelist" flex="1" seltype="multiple" onselect="onItemSe lected(this);" _removeButton="whitelist_remove-button" _emptyLabel="&urlfixer.op tions.whitelistEmptyLabel;"> | 39 <listbox id="whitelist" flex="1" seltype="multiple" onselect="onItemSe lected(this);" _removeButton="whitelist_remove-button" _emptyLabel="&urlfixer.op tions.whitelistEmptyLabel;"> |
| 44 <listhead> | 40 <listhead> |
| 45 <listheader label="&urlfixer.options.whitelistLabel;"/> | 41 <listheader label="&urlfixer.options.whitelistLabel;"/> |
| (...skipping 26 matching lines...) Expand all Loading... | |
| 72 </listcols> | 68 </listcols> |
| 73 </listbox> | 69 </listbox> |
| 74 <hbox> | 70 <hbox> |
| 75 <button flex="1" label="&urlfixer.options.removeButtonLabel;" onclic k="removeRule(this,'custom_replace');" disabled="true" id="custom_corrections_re move-button" _list="custom_corrections" /> | 71 <button flex="1" label="&urlfixer.options.removeButtonLabel;" onclic k="removeRule(this,'custom_replace');" disabled="true" id="custom_corrections_re move-button" _list="custom_corrections" /> |
| 76 </hbox> | 72 </hbox> |
| 77 </tabpanel> | 73 </tabpanel> |
| 78 </tabpanels> | 74 </tabpanels> |
| 79 </tabbox> | 75 </tabbox> |
| 80 </groupbox> | 76 </groupbox> |
| 81 </dialog> | 77 </dialog> |
| OLD | NEW |