localizability fixes: bug 66706 r=javi

git-svn-id: svn://10.0.0.236/trunk@91984 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jgmyers%netscape.com 2001-04-11 18:28:38 +00:00
parent d28b852834
commit b5b384c566
8 changed files with 47 additions and 26 deletions

View File

@ -35,9 +35,9 @@
<box id="CACerts" orient="vertical">
<outliner id="ca-outliner" multiple="true"
onselect="ca_enableButtons()" flex="1">
<outlinercol id="certcol" label="Certificate Name" flex="1"/>
<outlinercol id="certcol" label="&certmgr.certname;" flex="1"/>
<splitter/>
<outlinercol id="tokencol" label="Token Name" flex="1"/>
<outlinercol id="tokencol" label="&certmgr.tokenname;" flex="1"/>
<outlinercol id="certdbkeycol" collapsed="true" flex="1"/>
<outlinerbody flex="1"/>
</outliner>

View File

@ -37,9 +37,9 @@
<separator class="thin"/>
<outliner id="user-outliner" multiple="true"
onselect="mine_enableButtons()" flex="1">
<outlinercol id="certcol" label="Certificate Name" flex="1"/>
<outlinercol id="certcol" label="&certmgr.certname;" flex="1"/>
<splitter/>
<outlinercol id="tokencol" label="Token Name" flex="1"/>
<outlinercol id="tokencol" label="&certmgr.tokenname;" flex="1"/>
<outlinercol id="certdbkeycol" collapsed="true" flex="1"/>
<outlinerbody flex="1"/>
</outliner>

View File

@ -37,9 +37,9 @@
<separator class="thin"/>
<outliner id="server-outliner" multiple="true"
onselect="websites_enableButtons()" flex="1">
<outlinercol id="certcol" label="Certificate Name" flex="1"/>
<outlinercol id="certcol" label="&certmgr.certname;" flex="1"/>
<splitter/>
<outlinercol id="tokencol" label="Token Name" flex="1"/>
<outlinercol id="tokencol" label="&certmgr.tokenname;" flex="1"/>
<outlinercol id="certdbkeycol" collapsed="true" flex="1"/>
<outlinerbody flex="1"/>
</outliner>

View File

@ -96,7 +96,7 @@
mode="determined"
value="0%"
align="horizontal"
label="Loading"
label="&setPassword.meter.loading;"
width="200"
style="forground-color: red"
/>

View File

@ -51,19 +51,19 @@
<!-- Prefs -->
<box orient="vertical" flex="1" autostretch="never" >
<checkbox id="enableSSL2" label="Enable SSL version 2"
<checkbox id="enableSSL2" label="&enable.ssl2;"
pref="true" preftype="bool" prefstring="security.enable_ssl2"
prefattribute="checked"/>
<checkbox id="enableSSL3" label="Enable SSL version 3"
<checkbox id="enableSSL3" label="&enable.ssl3;"
pref="true" preftype="bool" prefstring="security.enable_ssl3"
prefattribute="checked"/>
<checkbox id="enableTLS" label="Enable TLS"
<checkbox id="enableTLS" label="&enable.tls;"
pref="true" preftype="bool" prefstring="security.enable_tls"
prefattribute="checked"/>
</box>
<box orient="vertical" halign="right">
<button class="dialog" label="Edit SSL Ciphers..." disabled="true"
<button class="dialog" label="&edit.sslciphers;" disabled="true"
oncommand="window.openDialog('chrome://pippki/content/cipherViewer.xul', '',
'modal=yes,resizable,chrome');" />
</box>
@ -78,30 +78,27 @@ Set Netscape to show a warning and ask permission before:
</html>
<!-- Prefs -->
<checkbox id="warnEnteringSecure"
label="Entering a site that supports encryption"
<checkbox id="warnEnteringSecure" label="&warn.enteringsecure;"
pref="true" preftype="bool" prefstring="security.warn_entering_secure"
prefattribute="checked"/>
<checkbox id="warnEnteringWeak"
label="Entering a site that uses weak encryption"
<checkbox id="warnEnteringWeak" label="&warn.enteringweak;"
pref="true" preftype="bool" prefstring="security.warn_entering_weak"
prefattribute="checked"/>
<checkbox id="warnInsecurePost"
label="Sending form data from an insecure page to an insecure page"
<checkbox id="warnInsecurePost" label="&warn.insecurepost;"
pref="true" preftype="bool" prefstring="security.warn_submit_insecure"
prefattribute="checked"/>
<checkbox id="warnInsecurePostFromSecure"
label="Sending form data from a secure page to an insecure page"
label="&warn.insecurepostfromsecure;"
pref="true" preftype="bool" prefstring="security.warn_insecure_post_from_secure"
prefattribute="checked" checked="true" disabled="true"/>
<checkbox id="warnSecureRedirect" label="Redirection from one secure site to another"
<checkbox id="warnSecureRedirect" label="&warn.secureredirect;"
pref="true" preftype="bool" prefstring="security.warn_secure_redirect"
prefattribute="checked"/>
<checkbox id="warnSecureRedirectToInsecure"
label="Redirection from a secure site to an insecure site"
label="&warn.secureredirecttoinsecure;"
pref="true" preftype="bool" prefstring="security.warn_secure_redirect_to_insecure"
prefattribute="checked"/>
<checkbox id="warnViewMixed" label="Viewing a page with an encrypted/unencrypted mix"
<checkbox id="warnViewMixed" label="&warn.viewmixed;"
pref="true" preftype="bool" prefstring="security.warn_viewing_mixed"
prefattribute="checked" checked="true"/>
</titledbox>
@ -113,8 +110,8 @@ Set Netscape to show a warning and ask permission before:
<!-- Prefs -->
<radiogroup id="certSelection" pref="true" preftype="string"
prefstring="security.default_personal_cert" prefattribute="value">
<radio group="certSelection" label="Select Automatically" value="Select Automatically"/>
<radio group="certSelection" label="Ask Every Time" value="Ask Every Time"/>
<radio group="certSelection" label="&certselect.auto;"/>
<radio group="certSelection" label="&certselect.ask;"/>
</radiogroup>
</titledbox>

View File

@ -56,6 +56,8 @@
<!ENTITY certmgr.editcert.trustemail "This certificate can identify mail users.">
<!ENTITY certmgr.editcert.trustobjsign "This certificate can identify software makers.">
<!ENTITY certmgr.certname "Certificate Name">
<!ENTITY certmgr.tokenname "Token Name">
<!ENTITY certmgr.help.label "Help">
<!ENTITY certmgr.ok.label "Ok">
<!ENTITY certmgr.close.label "Close">

View File

@ -29,6 +29,7 @@
<!ENTITY setPassword.meter.label "Password quality meter:">
<!ENTITY setPassword.meter.bad "Bad">
<!ENTITY setPassword.meter.good "Good">
<!ENTITY setPassword.meter.loading "Loading">
<!ENTITY setPassword.stats.total "Total characters:">
<!ENTITY setPassword.stats.numbers "Numbers:">
<!ENTITY setPassword.stats.symbols "Symbols:">

View File

@ -21,6 +21,27 @@
- Terry Hayes <thayes@netscape.com>
-->
<!ENTITY SSLProtocolVersions "SSL Protocol Versions">
<!ENTITY SSLWarnings "SSL Warnings">
<!ENTITY SSLClientAuthMethod "Client Certificate Selection">
<!ENTITY SSLProtocolVersions "SSL Protocol Versions">
<!ENTITY SSLWarnings "SSL Warnings">
<!ENTITY SSLClientAuthMethod "Client Certificate Selection">
<!ENTITY enable.ssl2 "Enable SSL version 2">
<!ENTITY enable.ssl3 "Enable SSL version 3">
<!ENTITY enable.tls "Enable TLS">
<!ENTITY edit.sslciphers "Edit SSL Ciphers...">
<!ENTITY warn.enteringsecure "Entering a site that supports encryption">
<!ENTITY warn.enteringweak "Entering a site that uses weak encryption">
<!ENTITY warn.insecurepost
"Sending form data from an insecure page to an insecure page">
<!ENTITY warn.insecurepostfromsecure
"Sending form data from a secure page to an insecure page">
<!ENTITY warn.secureredirect "Redirection from one secure site to another">
<!ENTITY warn.secureredirecttoinsecure
"Redirection from a secure site to an insecure site">
<!ENTITY warn.viewmixed "Viewing a page with an encrypted/unencrypted mix">
<!ENTITY certselect.auto "Select Automatically">
<!ENTITY certselect.ask "Ask Every Time">