summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-08-26 07:32:15 +0100
committerAndrew Dolgov <[email protected]>2007-08-26 07:32:15 +0100
commit2d936cd1d975a72da43bd9132eceff03e1d26c2c (patch)
tree103a1b330f0a6b14098c16a2db699637b22f1923 /tt-rss.js
parente978f78de5bd2f14c899970111e5d0320d424722 (diff)
update translations
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 495b8631c..e918af0f8 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -476,7 +476,7 @@ function quickMenuGo(opid) {
var fn = getFeedName(actid);
- var pr = __("Erase all non-starred articles for %s?").replace("%s", fn);
+ var pr = __("Erase all non-starred articles in %s?").replace("%s", fn);
if (confirm(pr)) {
clearFeedArticles(actid);
@@ -623,7 +623,7 @@ function catchupCurrentFeed() {
var fn = getFeedName(getActiveFeedId(), active_feed_is_cat);
- var str = "Mark all articles in " + fn + " as read?";
+ var str = __("Mark all articles in %s as read?").replace("%s", fn);
/* if (active_feed_is_cat) {
str = "Mark all articles in this category as read?";