bug 385458 - UI strings using "browser" when meaning "application", r=kaie
git-svn-id: svn://10.0.0.236/trunk@231504 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -344,8 +344,7 @@ CertInfoTo=to
|
||||
CertInfoPurposes=Purposes
|
||||
CertInfoStoredIn=Stored in:
|
||||
P12DefaultNickname=Imported Certificate
|
||||
CrlImportSuccess=The browser successfully imported the certificate revocation list (CRL).
|
||||
CrlImportFailure1=The browser cannot import the Certificate Revocation List (CRL).
|
||||
CrlImportFailure1x=The application cannot import the Certificate Revocation List (CRL).
|
||||
CrlImportFailureExpired=A more recent version of this CRL is available.
|
||||
CrlImportFailureBadSignature=CRL has an invalid Signature.
|
||||
CrlImportFailureInvalid=New CRL has an invalid format.
|
||||
@@ -354,7 +353,7 @@ CrlImportFailureNotYetValid=The CRL is not yet valid. You might want to check yo
|
||||
CrlImportFailureNetworkProblem=Download of the CRL failed due to Network problems.
|
||||
CrlImportFailureReasonUnknown=Error Importing CRL to local Database. Error Code:
|
||||
CrlImportFailure2=Please ask your system administrator for assistance.
|
||||
NSSInitProblem=Could not initialize the browser's security component. The most likely cause is problems with files in your browser's profile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the browser and fix the problem. If you continue to use this browser session, you might see incorrect browser behaviour when accessing security features.
|
||||
NSSInitProblemX=Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the application and fix the problem. If you continue to use this session, you might see incorrect application behaviour when accessing security features.
|
||||
ProfileSwitchSocketsStillActive=The operation can not be completed because of an internal failure. A secure network communication has not been cleaned up correctly.
|
||||
ProfileSwitchCryptoUIActive=This operation is impossible at the current time. Please complete the operation that requests your attention in one of the other open windows.
|
||||
VerifyExpired=<Expired>
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
<!-- Values for newserver.xul -->
|
||||
<!ENTITY newserver.title "Website Certified by an Unknown Authority">
|
||||
<!ENTITY newserver.reasons "Possible reasons for this error:">
|
||||
<!ENTITY newserver.reason1 "- Your browser does not recognize the Certificate Authority that issued the site's certificate.">
|
||||
<!ENTITY newserver.reason1x "- The Certificate Authority that issued the site's certificate is not recognized.">
|
||||
<!ENTITY newserver.reason2 "- The site's certificate is incomplete due to a server misconfiguration.">
|
||||
<!ENTITY newserver.notify "Please notify the site's webmaster about this problem.">
|
||||
<!ENTITY newserver.examine "View Certificate...">
|
||||
|
||||
@@ -63,7 +63,7 @@ deleteUserCertImpact=If you delete one of your own certificates, you can no long
|
||||
deleteUserCertTitle=Delete your Certificates
|
||||
|
||||
deleteCaCertConfirm=Are you sure you want to delete these CA certificates?
|
||||
deleteCaCertImpact=If you delete a certificate authority (CA) certificate, your browser will no longer trust any certificates issued by that CA.
|
||||
deleteCaCertImpactX=If you delete a certificate authority (CA) certificate, this application will no longer trust any certificates issued by that CA.
|
||||
deleteCaCertTitle=Delete CA Certificates
|
||||
|
||||
deleteEmailCertConfirm=Are you sure you want to delete these people's e-mail certificates?
|
||||
@@ -168,7 +168,6 @@ crlNextUpdateMsg2=The certificate revocation list (CRL) from "%S" needs to be up
|
||||
NoUpdateFailure=None
|
||||
lastFetchUrlLabel=URL originally fetched from
|
||||
advertisedUrlLabel=URL advertised by the CA
|
||||
CrlUpdatePrefsSetConfirmation=Automatic update preferences will take effect when you restart the browser.
|
||||
crlAutoUpdateDayCntError=Number of days before next update must be a number greater than zero.
|
||||
crlAutoUpdtaeFreqCntError=Frequency of update must be a number greater than zero.
|
||||
disabledStatement=Automatic Update is not enabled for this CRL.
|
||||
|
||||
@@ -82,7 +82,7 @@ function setWindowName()
|
||||
{
|
||||
title = bundle.GetStringFromName("deleteCaCertTitle");
|
||||
confirm = bundle.GetStringFromName("deleteCaCertConfirm");
|
||||
impact = bundle.GetStringFromName("deleteCaCertImpact");
|
||||
impact = bundle.GetStringFromName("deleteCaCertImpactX");
|
||||
}
|
||||
else if(typeFlag == "others_tab")
|
||||
{
|
||||
|
||||
@@ -72,7 +72,7 @@
|
||||
<description id="intro"/>
|
||||
<separator class="thin"/>
|
||||
<description>&newserver.reasons;</description>
|
||||
<description>&newserver.reason1;</description>
|
||||
<description>&newserver.reason1x;</description>
|
||||
<description>&newserver.reason2;</description>
|
||||
<description id="reason3"/>
|
||||
<separator class="thin"/>
|
||||
|
||||
@@ -188,7 +188,7 @@ done:
|
||||
nsCOMPtr<nsIPrompt> prompter;
|
||||
if (wwatch){
|
||||
wwatch->GetNewPrompter(0, getter_AddRefs(prompter));
|
||||
nssComponent->GetPIPNSSBundleString("CrlImportFailure1", message);
|
||||
nssComponent->GetPIPNSSBundleString("CrlImportFailure1x", message);
|
||||
message.Append(NS_LITERAL_STRING("\n").get());
|
||||
message.Append(errorMessage);
|
||||
nssComponent->GetPIPNSSBundleString("CrlImportFailure2", temp);
|
||||
|
||||
@@ -2070,7 +2070,7 @@ void nsNSSComponent::ShowAlert(AlertIdentifier ai)
|
||||
|
||||
switch (ai) {
|
||||
case ai_nss_init_problem:
|
||||
rv = GetPIPNSSBundleString("NSSInitProblem", message);
|
||||
rv = GetPIPNSSBundleString("NSSInitProblemX", message);
|
||||
break;
|
||||
case ai_sockets_still_active:
|
||||
rv = GetPIPNSSBundleString("ProfileSwitchSocketsStillActive", message);
|
||||
@@ -2764,7 +2764,7 @@ PSMContentDownloader::handleContentDownloadError(nsresult errCode)
|
||||
nsCOMPtr<nsIPrompt> prompter;
|
||||
if (wwatch){
|
||||
wwatch->GetNewPrompter(0, getter_AddRefs(prompter));
|
||||
nssComponent->GetPIPNSSBundleString("CrlImportFailure1", message);
|
||||
nssComponent->GetPIPNSSBundleString("CrlImportFailure1x", message);
|
||||
message.Append(NS_LITERAL_STRING("\n").get());
|
||||
message.Append(tmpMessage);
|
||||
nssComponent->GetPIPNSSBundleString("CrlImportFailure2", tmpMessage);
|
||||
|
||||
Reference in New Issue
Block a user