bug 236933, add on patch to address l10n review comments, renames string ids

r=l10n


git-svn-id: svn://10.0.0.236/trunk@201522 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
kaie%kuix.de
2006-07-04 10:48:48 +00:00
parent 8b350f4b4a
commit d1ad44e1b5
2 changed files with 6 additions and 6 deletions

View File

@@ -330,9 +330,9 @@ UnknownCertOrg=(Unknown Organization)
AVATemplate=%S = %S
#for the next 3 lines, %1$S will be product name (e.g. Firefox), %2$S will be the www.example.com address we connect to
SSLDisabled=%1$S can't connect securely to %2$S because the SSL protocol has been disabled.
SSL2Disabled=%1$S can't connect securely to %2$S because the site uses an older, insecure version of the SSL protocol.
SSLNoMatchingCiphers=%1$S can't connect securely to %2$S because the site uses a security protocol which isn't enabled.
SSL_Disabled=%1$S can't connect securely to %2$S because the SSL protocol has been disabled.
SSL2_Disabled=%1$S can't connect securely to %2$S because the site uses an older, insecure version of the SSL protocol.
SSL_NoMatchingCiphers=%1$S can't connect securely to %2$S because the site uses a security protocol which isn't enabled.
UsersCertRevoked=Could not establish an encrypted connection with %S because your certificate has been revoked.
UsersCertExpired=Could not establish an encrypted connection with %S because your certificate is expired.

View File

@@ -544,13 +544,13 @@ nsHandleSSLError(nsNSSSocketInfo *socketInfo, PRInt32 err)
case SSL_ERROR_SSL_DISABLED:
params[0] = brandShortName.get();
params[1] = hostNameU.get();
nssComponent->PIPBundleFormatStringFromName("SSLDisabled",
nssComponent->PIPBundleFormatStringFromName("SSL_Disabled",
params, 2, formattedString);
break;
case SSL_ERROR_SSL2_DISABLED:
params[0] = brandShortName.get();
params[1] = hostNameU.get();
nssComponent->PIPBundleFormatStringFromName("SSL2Disabled",
nssComponent->PIPBundleFormatStringFromName("SSL2_Disabled",
params, 2, formattedString);
break;
case SSL_ERROR_EXPORT_ONLY_SERVER:
@@ -562,7 +562,7 @@ nsHandleSSLError(nsNSSSocketInfo *socketInfo, PRInt32 err)
case SSL_ERROR_FORTEZZA_PQG:
params[0] = brandShortName.get();
params[1] = hostNameU.get();
nssComponent->PIPBundleFormatStringFromName("SSLNoMatchingCiphers",
nssComponent->PIPBundleFormatStringFromName("SSL_NoMatchingCiphers",
params, 2, formattedString);
break;