From 27a7bebc32a527cc86857008b491b9571e807183 Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Thu, 27 Feb 2020 19:20:51 +0100 Subject: viewer: added a count of results found in other folders when no-results are found Using list formatting for the no-result translation, instead of string concatenation --- viewer/src/views/GallerySearch.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'viewer/src/views') diff --git a/viewer/src/views/GallerySearch.vue b/viewer/src/views/GallerySearch.vue index 9f2ac17..d638df2 100644 --- a/viewer/src/views/GallerySearch.vue +++ b/viewer/src/views/GallerySearch.vue @@ -49,7 +49,8 @@ export default class GalleryPicture extends Vue { } noResult() { - return `${this.$t("search.no-results")} • ${this.otherCount} ${this.$t("search.no-results.otherfolders")}`; + const params = [this.otherCount, this.otherCount > 1 ? "s" : ""]; + return this.$t("search.no-results.otherfolders", params); } } -- cgit v1.2.3