Skip to content

Commit

Permalink
fix(l10n) fixed grammar (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
rakekniven authored Oct 30, 2023
1 parent f3e91eb commit 07d440c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/details/DetailsList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -399,11 +399,11 @@ export default {
emit('updateTaskInfo')
this.$store.commit('setDetails', updatedDetails)
this.$store.commit('setTask', res.data.task)
showSuccess(this.t('mediadc', 'Selected groups files successfully deleted'))
showSuccess(this.t('mediadc', 'Selected group files successfully deleted'))
} else if (res.data.removedGroupIds.length !== 0) {
showWarning(this.t('mediadc', 'Not all selected groups files deleted'))
showWarning(this.t('mediadc', 'Not all selected group files deleted'))
} else {
showError(this.t('mediadc', 'Failed to delete selected groups files'))
showError(this.t('mediadc', 'Failed to delete selected group files'))
}
this.batchDeleting = false
}).catch(err => {
Expand Down

0 comments on commit 07d440c

Please sign in to comment.