Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGretaD <gretadoci@gmail.com>2020-01-28 17:52:03 +0300
committerGretaD <gretadoci@gmail.com>2020-01-28 17:52:03 +0300
commit3d2c08eb5dcfde1dd0a2424411914b15b938fc50 (patch)
tree832c2564996afc7ee7608bc02d9621588b2d2561 /src
parenteb9c6dbae253aa6bd745b59e8933d0c4fccccbf0 (diff)
Add plural form for email
Signed-off-by: GretaD <gretadoci@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/NavigationFolder.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/NavigationFolder.vue b/src/components/NavigationFolder.vue
index 987103a3d..c48d7abb0 100644
--- a/src/components/NavigationFolder.vue
+++ b/src/components/NavigationFolder.vue
@@ -132,11 +132,11 @@ export default {
statsText() {
if (this.folderStats && 'total' in this.folderStats && 'unread' in this.folderStats) {
if (this.folderStats.unread === 0) {
- return t('mail', '{total} messages', {
+ return n('mail', '{total} message', '{total} messages', {
total: this.folderStats.total,
})
} else {
- return t('mail', '{unread} unread of {total}', {
+ return n('mail', '{unread} unread of {total}', '{unread} unread of {total}', {
total: this.folderStats.total,
unread: this.folderStats.unread,
})