(fix) small i18n fixes

This commit is contained in:
Ludovic Marcotte
2016-01-26 09:07:26 -05:00
parent 0ca6512617
commit 7c0649efcf
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -726,11 +726,11 @@ function toggleJunkAction(isJunk) {
button.stopObserving("click");
if (isJunk) {
button.title = "Mark the selected messages as not junk";
button.title = _("Mark the selected messages as not junk");
button.select('span').first().childNodes[3].nodeValue = _("Not junk");
}
else {
button.title = "Mark the selected messages as junk";
button.title = _("Mark the selected messages as junk");
button.select('span').first().childNodes[3].nodeValue = _("Junk");
}