summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorwn_ <invalid@email.com>2025-02-08 16:55:39 +0000
committerwn_ <invalid@email.com>2025-02-08 16:55:39 +0000
commit708563acd4aac95bc7a02b4b4e1f3725ad84fe8a (patch)
treedb2c7c8796359accedeb6c6d06842d4895c9821c /js
parenta34927d184f53a163368ae1810e7be486f0014c7 (diff)
Indicate filters might have matched more than the test found.
Due to the limits set when testing a filter it's possible more results (some of which the user may be expecting to see) aren't displayed.
Diffstat (limited to 'js')
-rw-r--r--js/CommonFilters.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/CommonFilters.js b/js/CommonFilters.js
index 6a85bf86c..fb1cfacb9 100644
--- a/js/CommonFilters.js
+++ b/js/CommonFilters.js
@@ -72,7 +72,7 @@ const Filters = {
loading_message.innerHTML = __("Articles matching this filter:");
} else {
- loading_message.innerHTML = __("Found %d articles matching this filter:")
+ loading_message.innerHTML = __("Found at least %d articles matching this filter:")
.replace("%d", test_dialog.results);
}