diff --git a/apps/files/src/actions/convertUtils.ts b/apps/files/src/actions/convertUtils.ts index 0ace3747d9c..b51a902408b 100644 --- a/apps/files/src/actions/convertUtils.ts +++ b/apps/files/src/actions/convertUtils.ts @@ -70,13 +70,13 @@ export const convertFiles = async function(fileIds: number[], targetMimeType: st // We already check above when all files failed // if we're here, we have a mix of failed and successful files - showError(n('files', 'One file could not be converted', '%n files could not be converted', failed.length)) - showSuccess(n('files', 'One file successfully converted', '%n files successfully converted', fileIds.length - failed.length)) + showError(n('files', '%n file could not be converted', '%n files could not be converted', failed.length)) + showSuccess(n('files', '%n file converted', '%n files converted', fileIds.length - failed.length)) return } // All files converted - showSuccess(t('files', 'Files successfully converted')) + showSuccess(t('files', 'Files converted')) // Extract files that are within the current directory // in batch mode, you might have files from different directories