1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 21:55:56 +00:00

more translation work

This commit is contained in:
Andrew Dolgov
2007-08-10 17:16:43 +01:00
parent 2fbffcd984
commit 89cb787edd
17 changed files with 559 additions and 260 deletions

View File

@@ -491,18 +491,20 @@ function quickMenuGo(opid) {
var actid = getActiveFeedId();
if (activeFeedIsCat()) {
alert("You can't unsubscribe from the category.");
alert(__("You can't unsubscribe from the category."));
return;
}
if (!actid) {
alert("Please select some feed first.");
alert(__("Please select some feed first."));
return;
}
var fn = getFeedName(actid);
if (confirm("Unsubscribe from " + fn + "?")) {
var pr = __("Unsubscribe from %s?").replace("%s", fn);
if (confirm(pr)) {
qfdDelete(actid);
}
@@ -667,12 +669,12 @@ function editFeedDlg(feed) {
disableHotkeys();
if (!feed) {
alert("Please select some feed first.");
alert(__("Please select some feed first."));
return;
}
if (feed <= 0 || activeFeedIsCat() || tagsAreDisplayed()) {
alert("You can't edit this kind of feed.");
alert(__("You can't edit this kind of feed."));
return;
}