summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
Diffstat (limited to 'viewfeed.js')
-rw-r--r--viewfeed.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/viewfeed.js b/viewfeed.js
index 9aad5e292..24dcdd214 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -975,8 +975,9 @@ function catchupSelection() {
var fn = getFeedName(getActiveFeedId(), active_feed_is_cat);
- var str = __("Mark all selected articles in %s as read?");
+ var str = __("Mark %d selected articles in %s as read?");
+ str = str.replace("%d", rows.length);
str = str.replace("%s", fn);
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {