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
4 changes: 2 additions & 2 deletions l10n/messages.pot
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ msgstr ""
msgid "Existing version"
msgstr ""

msgid "Failed assembling the chunks together"
msgid "Failed to assemble the chunks together"
msgstr ""

msgid "Failed uploading the file"
msgid "Failed to upload the file"
msgstr ""

msgid "Filenames must not end with \"{segment}\"."
Expand Down
4 changes: 2 additions & 2 deletions lib/uploader/uploader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ export class Uploader {
reject(new UploadCancelledError(error))
} else {
upload.status = UploadStatus.FAILED
reject(t('Failed assembling the chunks together'))
reject(t('Failed to assemble the chunks together'))
}
// Cleaning up temp directory
axios.request({
Expand Down Expand Up @@ -660,7 +660,7 @@ export class Uploader {

upload.status = UploadStatus.FAILED
logger.error(`Failed uploading ${file.name}`, { error, file, upload })
reject(t('Failed uploading the file'))
reject(t('Failed to upload the file'))
}

// Notify listeners of the upload completion
Expand Down
Loading