Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/files/src/actions/convertUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions dist/files-init.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/files-init.js.map

Large diffs are not rendered by default.

Loading