Bug 231810 Incorrect prompt when copying address records between address books

patch by borggraefe@despammed.com r=neil sr=mscott
This commit is contained in:
timeless%mozdev.org 2004-01-23 07:07:51 +00:00
Родитель abd730aec4
Коммит fbff635dc9
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -165,8 +165,8 @@ var abDirTreeObserver = {
directory.dropCard(card, needToCopyCard);
}
var cardsCopiedText = (numrows == 1 ? gAddressBookBundle.getString("cardCopied")
: gAddressBookBundle.getFormattedString("cardsCopied", [numrows]));
var cardsCopiedText = numrows == 1 ? gAddressBookBundle.getString("cardCopied")
: gAddressBookBundle.getFormattedString("cardsCopied", [numrows]);
var statusText = document.getElementById("statusText");
statusText.setAttribute("label", cardsCopiedText);