Skip to content

Commit 354fc19

Browse files
authored
Merge pull request #56252 from nextcloud/backport/56192/stable32
[stable32] chore(i18n): Fixed plural strings
2 parents 139316e + 2bc1ae9 commit 354fc19

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

apps/files/src/actions/convertUtils.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,13 @@ export const convertFiles = async function(fileIds: number[], targetMimeType: st
7070

7171
// We already check above when all files failed
7272
// if we're here, we have a mix of failed and successful files
73-
showError(n('files', 'One file could not be converted', '%n files could not be converted', failed.length))
74-
showSuccess(n('files', 'One file successfully converted', '%n files successfully converted', fileIds.length - failed.length))
73+
showError(n('files', '%n file could not be converted', '%n files could not be converted', failed.length))
74+
showSuccess(n('files', '%n file converted', '%n files converted', fileIds.length - failed.length))
7575
return
7676
}
7777

7878
// All files converted
79-
showSuccess(t('files', 'Files successfully converted'))
79+
showSuccess(t('files', 'Files converted'))
8080

8181
// Extract files that are within the current directory
8282
// in batch mode, you might have files from different directories

dist/files-init.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/files-init.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)