aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src/components/FilesListHeaderActions.vue
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files/src/components/FilesListHeaderActions.vue')
-rw-r--r--apps/files/src/components/FilesListHeaderActions.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/src/components/FilesListHeaderActions.vue b/apps/files/src/components/FilesListHeaderActions.vue
index 5cf0fdbe373..b7d48f1de25 100644
--- a/apps/files/src/components/FilesListHeaderActions.vue
+++ b/apps/files/src/components/FilesListHeaderActions.vue
@@ -136,11 +136,11 @@ export default Vue.extend({
}
// Show success message and clear selection
- showSuccess(this.t('files', '"{displayName}" batch action successfully executed', { displayName }))
+ showSuccess(this.t('files', '"{displayName}" batch action executed successfully', { displayName }))
this.selectionStore.reset()
} catch (e) {
logger.error('Error while executing action', { action, e })
- showError(this.t('files', 'Error while executing action "{displayName}"', { displayName }))
+ showError(this.t('files', '"{displayName}" action failed', { displayName }))
} finally {
this.loading = null
}