From debf3b21f304975592a89a494d6ceab86a1fd543 Mon Sep 17 00:00:00 2001 From: "reed@reedloden.com" Date: Sat, 8 Mar 2008 02:14:18 -0800 Subject: [PATCH] Bug 421313 - "change "Author Unknown" to "Author not verified" in add-on installer dialog" [p=beltzner@mozilla.com (Mike Beltzner) r=Mossop a1.9=beltzner] --- .../en-US/chrome/mozapps/xpinstall/xpinstallConfirm.properties | 2 +- toolkit/mozapps/xpinstall/content/xpinstallConfirm.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/toolkit/locales/en-US/chrome/mozapps/xpinstall/xpinstallConfirm.properties b/toolkit/locales/en-US/chrome/mozapps/xpinstall/xpinstallConfirm.properties index fbee4478700..0562870b4aa 100644 --- a/toolkit/locales/en-US/chrome/mozapps/xpinstall/xpinstallConfirm.properties +++ b/toolkit/locales/en-US/chrome/mozapps/xpinstall/xpinstallConfirm.properties @@ -1,4 +1,4 @@ -unsigned=(Author Unknown) +unverified=(Author not verified) signed=(%S) itemWarnIntroMultiple=You have asked to install the following %S items: diff --git a/toolkit/mozapps/xpinstall/content/xpinstallConfirm.js b/toolkit/mozapps/xpinstall/content/xpinstallConfirm.js index 0b106267fb1..eed84ae4e0d 100644 --- a/toolkit/mozapps/xpinstall/content/xpinstallConfirm.js +++ b/toolkit/mozapps/xpinstall/content/xpinstallConfirm.js @@ -80,7 +80,7 @@ XPInstallConfirm.init = function () if (cert) installItem.cert = bundle.getFormattedString("signed", [cert]); else - installItem.cert = bundle.getString("unsigned"); + installItem.cert = bundle.getString("unverified"); installItem.signed = cert ? "true" : "false"; }