From f8872cfbf73932b7589a227f1409697b799d86e1 Mon Sep 17 00:00:00 2001 From: Andrew Backhouse Date: Thu, 30 Jul 2026 17:48:27 +0200 Subject: [PATCH] fix: make string plural-compatible for non-English langs + add translator hints Signed-off-by: Andrew Backhouse --- src/views/OfficeOverview.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/views/OfficeOverview.vue b/src/views/OfficeOverview.vue index 75e8c96..08e5ccf 100644 --- a/src/views/OfficeOverview.vue +++ b/src/views/OfficeOverview.vue @@ -251,11 +251,13 @@ fetchAll()
- {{ t('office', '{count} found in {category}', { count: files.length, category: activeCategoryName }) }} + + {{ n('office', '{count} found in {category}', '{count} found in {category}', files.length, { count: files.length, category: activeCategoryName }) }}

+ {{ t('office', 'Recent {category}', { category: activeCategoryName }) }}