mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-26 05:45:24 +00:00
(fix) small i18n fixes
This commit is contained in:
@@ -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";
|
||||
@@ -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");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user