Bug 285570 - add entities for changing window style (height,width) of preferences windows. patch from Reuven Gonen <linxspider@yahoo.com>, r=mconnor a=asa

This commit is contained in:
mozilla.mano%sent.com 2005-04-20 11:24:46 +00:00
Родитель bd668e0965
Коммит 6b7332d6bf
18 изменённых файлов: 23 добавлений и 31 удалений

Просмотреть файл

@ -47,7 +47,7 @@
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
onload="gChangeActionDialog.init();"
ondialogaccept="return gChangeActionDialog.onAccept();"
style="width: 36em;"
style="width: &window.width;;"
persist="screenX screenY">
<script type="application/x-javascript" src="chrome://mozapps/content/preferences/actionsshared.js"/>

Просмотреть файл

@ -44,7 +44,7 @@
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
title="&colorsDialog.title;"
dlgbuttons="accept,cancel"
style="width: 38em !important;">
style="width: &window.width; !important;">
<prefpane id="ColorsDialogPane">

Просмотреть файл

@ -45,7 +45,7 @@
title="&connectionsDialog.title;"
dlgbuttons="accept,cancel"
onbeforeaccept="return gConnectionsDialog.beforeAccept();"
style="width: 37em !important;">
style="width: &window.width; !important;">
<prefpane id="ConnectionsDialogPane">
<preferences>

Просмотреть файл

@ -44,7 +44,7 @@
<window id="CookiesDialog" windowtype="Browser:Cookies"
class="windowDialog" title="&window.title;"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
style="width: 36em;"
style="width: &window.width;;"
onload="gCookiesWindow.init();"
onunload="gCookiesWindow.uninit();"
persist="screenX screenY width height">

Просмотреть файл

@ -52,7 +52,7 @@
onload="gDownloadActionsWindow.init();"
onunload="gDownloadActionsWindow.uninit();"
title="&downloadactionsWindow.title;"
width="480" height="310" persist="width height screenX screenY">
width="&window.width;" height="&window.height;" persist="width height screenX screenY">
<script type="application/x-javascript" src="chrome://mozapps/content/preferences/actionsshared.js"/>
<script type="application/x-javascript" src="chrome://browser/content/preferences/downloadactions.js"/>

Просмотреть файл

@ -46,7 +46,7 @@
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
title="&fontsDialog.title;"
dlgbuttons="accept,cancel"
style="width: 39em !important;">
style="width: &window.width; !important;">
<prefpane id="FontsDialogPane">

Просмотреть файл

@ -45,7 +45,7 @@
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
title="&languages.customize.Header;"
dlgbuttons="accept,cancel"
style="width: 30em;">
style="width: &window.width;;">
<prefpane id="LanguagesDialogPane" onpaneload="gLanguagesDialog.init();">
<preferences>

Просмотреть файл

@ -46,7 +46,7 @@
windowtype="Browser:Permissions"
title="&window.title;"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
style="width: 36em;"
style="width: &window.width;;"
onload="gPermissionManager.onLoad();"
onunload="gPermissionManager.uninit();"
persist="screenX screenY width height">

Просмотреть файл

@ -49,7 +49,7 @@
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
dlgbuttons="accept,cancel"
title="&sanitizeDialog.title;"
style="width: 30em !important;">
style="width: &window.width; !important;">
<prefpane id="SanitizeDialogPane">
<script type="application/x-javascript" src="chrome://browser/content/preferences/sanitize.js"/>

Просмотреть файл

@ -1,22 +0,0 @@
<!ENTITY changeAction.title "Change Action">
<!ENTITY whenDownloading.label "When downloading files like this:">
<!ENTITY openDefault.label "Open them with the default application:">
<!ENTITY openDefault.accesskey "O">
<!ENTITY openApplication.label "Open them with this application:">
<!ENTITY openApplication.accesskey "e">
<!ENTITY changeApp.label "Browse...">
<!ENTITY changeApp.accesskey "B">
<!ENTITY saveToDisk.label "Save them on my computer">
<!ENTITY saveToDisk.accesskey "S">
<!ENTITY saveToDefaultFolder.label "in the default download folder">
<!ENTITY saveToDefaultFolder.accesskey "d">
<!ENTITY saveToThisFolder.label "in this folder:">
<!ENTITY saveToThisFolder.accesskey "h">
<!ENTITY chooseFolder.label "Browse...">
<!ENTITY chooseFolder.accesskey "w">
<!ENTITY saveToAskMe.label "ask me where to save the file">
<!ENTITY saveToAskMe.accesskey "a">
<!ENTITY usePlugin.label "Use this Plugin:">
<!ENTITY usePlugin.accesskey "P">

Просмотреть файл

@ -1,4 +1,5 @@
<!ENTITY colorsDialog.title "Colors">
<!ENTITY window.width "38em">
<!ENTITY allowPagesToUse.label "Allow pages to choose their own colors, instead of my selections above">
<!ENTITY allowPagesToUse.accesskey "h">

Просмотреть файл

@ -1,5 +1,7 @@
<!ENTITY connectionsDialog.title "Connection Settings">
<!ENTITY window.width "37em">
<!ENTITY proxyTitle.label "Configure Proxies to Access the Internet">
<!ENTITY directTypeRadio.label "Direct connection to the Internet">
<!ENTITY directTypeRadio.accesskey "d">

Просмотреть файл

@ -1,3 +1,5 @@
<!ENTITY window.width "36em">
<!ENTITY cookiesonsystem.label "The following cookies are stored on your computer:">
<!ENTITY cookiename.label "Cookie Name">
<!ENTITY cookiedomain.label "Site">

Просмотреть файл

@ -1,4 +1,7 @@
<!ENTITY downloadactionsWindow.title "Download Actions">
<!ENTITY window.width "480">
<!ENTITY window.height "310">
<!ENTITY fileTypesDescription.label "Automatically perform the associated Action with each of the following file types:">
<!ENTITY fileHandlerColumn.label "Action">

Просмотреть файл

@ -1,4 +1,5 @@
<!ENTITY fontsDialog.title "Fonts">
<!ENTITY window.width "39em">
<!ENTITY language.label "Fonts for:">
<!ENTITY language.accesskey "t">

Просмотреть файл

@ -1,3 +1,5 @@
<!ENTITY window.width "30em">
<!ENTITY languages.customize.Header "Languages">
<!ENTITY languages.customize.label "Languages">
<!ENTITY languages.customize.prefLangDescript "Web pages are sometimes offered in more than one language. Choose languages for displaying these web pages, in order of preference.">

Просмотреть файл

@ -1,4 +1,6 @@
<!ENTITY window.title "Exceptions">
<!ENTITY window.width "36em">
<!ENTITY treehead.sitename.label "Site">
<!ENTITY treehead.status.label "Status">
<!ENTITY addpermission.label "New Site">

Просмотреть файл

@ -1,4 +1,5 @@
<!ENTITY sanitizeDialog.title "Sanitize">
<!ENTITY window.width "30em">
<!ENTITY items.label "Sanitize Items">
<!ENTITY sanitizeItems.label "Clear the following items when Sanitizing &brandShortName;:">