diff options
Diffstat (limited to 'viewer/src/views/GallerySearch.vue')
-rw-r--r-- | viewer/src/views/GallerySearch.vue | 3 |
1 files changed, 2 insertions, 1 deletions
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 { | |||
49 | } | 49 | } |
50 | 50 | ||
51 | noResult() { | 51 | noResult() { |
52 | return `${this.$t("search.no-results")} • ${this.otherCount} ${this.$t("search.no-results.otherfolders")}`; | 52 | const params = [this.otherCount, this.otherCount > 1 ? "s" : ""]; |
53 | return this.$t("search.no-results.otherfolders", params); | ||
53 | } | 54 | } |
54 | } | 55 | } |
55 | </script> | 56 | </script> |