From 761a6a4264f8823ff56c4abfa6c2fce5c5654625 Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Tue, 29 Dec 2020 22:01:56 +0100 Subject: [PATCH] plural form fix --- .../app/components/document-list/document-list.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/src/app/components/document-list/document-list.component.html b/src-ui/src/app/components/document-list/document-list.component.html index 40a08c105..bc1047ba9 100644 --- a/src-ui/src/app/components/document-list/document-list.component.html +++ b/src-ui/src/app/components/document-list/document-list.component.html @@ -84,7 +84,7 @@

Selected {{list.selected.size}} of {{list.collectionSize || 0}} {list.collectionSize, plural, =1 {document} other {documents}}

-

{{list.collectionSize || 0}} {list.collectionSize, plural, =1 {document} other {documents}}

+

{list.collectionSize, plural, =1 {1 document} other {{{list.collectionSize || 0}} documents}}