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]

This commit is contained in:
reed@reedloden.com 2008-03-08 02:14:18 -08:00
Родитель f0c538ec92
Коммит debf3b21f3
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1,4 +1,4 @@
unsigned=(Author Unknown)
unverified=(Author not verified)
signed=(%S)
itemWarnIntroMultiple=You have asked to install the following %S items:

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

@ -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";
}