(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
@@ -8,6 +8,7 @@
"Forward" = "Forward";
"Get Mail" = "Get Mail";
"Junk" = "Junk";
"Not junk" = "Not junk";
"Reply" = "Reply";
"Reply All" = "Reply All";
"Print" = "Print";
@@ -33,7 +34,6 @@
"Reply to sender and all recipients" = "Reply to sender and all recipients";
"Forward selected message" = "Forward selected message";
"Delete selected message or folder" = "Delete selected message or folder";
"Mark the selected messages as junk" = "Mark the selected messages as junk";
"Print this message" = "Print this message";
"Stop the current transfer" = "Stop the current transfer";
"Attachment" = "Attachment";
@@ -289,4 +289,4 @@
"More search options" = "More search options";
"Your email has been saved" = "Your email has been saved";
"Your email has been sent" = "Your email has been sent";
"Folder compacted" = "Folder compacted";
"Folder compacted" = "Folder compacted";
+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");
}