diff options
author | Joas Schilling <coding@schilljs.com> | 2024-03-28 09:56:39 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-04-02 09:57:08 +0200 |
commit | 0b4a3b681e2cd54911f4825786df5db775f681a0 (patch) | |
tree | 8466afba88d902ba4cefddb7a2742c72cab94013 /apps/files | |
parent | c0245f58ca639a4f0bf31fb96d50791a9f0c3b92 (diff) | |
download | nextcloud-server-0b4a3b681e2cd54911f4825786df5db775f681a0.tar.gz nextcloud-server-0b4a3b681e2cd54911f4825786df5db775f681a0.zip |
fix(files): Fix translation of "Delete file"
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/src/actions/deleteAction.ts | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/apps/files/src/actions/deleteAction.ts b/apps/files/src/actions/deleteAction.ts index 2c368a7e001..c46de9c652e 100644 --- a/apps/files/src/actions/deleteAction.ts +++ b/apps/files/src/actions/deleteAction.ts @@ -79,7 +79,10 @@ const displayName = (nodes: Node[], view: View) => { * share, we can only unshare them. */ if (canUnshareOnly(nodes)) { - return n('files', 'Leave this share', 'Leave these shares', nodes.length) + if (nodes.length === 1) { + return t('files', 'Leave this share') + } + return t('files', 'Leave these shares') } /** @@ -87,21 +90,30 @@ const displayName = (nodes: Node[], view: View) => { * external storage, we can only disconnect it. */ if (canDisconnectOnly(nodes)) { - return n('files', 'Disconnect storage', 'Disconnect storages', nodes.length) + if (nodes.length === 1) { + return t('files', 'Disconnect storage') + } + return t('files', 'Disconnect storages') } /** * If we're only selecting files, use proper wording */ if (isAllFiles(nodes)) { - return n('files', 'Delete file', 'Delete files', nodes.length) + if (nodes.length === 1) { + return t('files', 'Delete file') + } + return t('files', 'Delete files') } /** * If we're only selecting folders, use proper wording */ if (isAllFolders(nodes)) { - return n('files', 'Delete folder', 'Delete folders', nodes.length) + if (nodes.length === 1) { + return t('files', 'Delete folder') + } + return t('files', 'Delete folders') } return t('files', 'Delete') |