Skip to content

Commit 5a3a565

Browse files
authored
Merge pull request #6289 from rakekniven/patch-6
chore(i18n): Fix plural form for multi plural languages like polish
2 parents 27812ed + c7c934a commit 5a3a565

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Components/RightSidebar/EnvelopeFilesList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ export default {
399399
async handleDeleteSelected() {
400400
this.deleteDialogConfig = {
401401
title: this.t('libresign', 'Delete'),
402-
message: this.n('libresign', 'Are you sure you want to remove this file from the envelope?', 'Are you sure you want to remove %n files from the envelope?', this.selectedCount),
402+
message: this.n('libresign', 'Are you sure you want to remove %n file from the envelope?', 'Are you sure you want to remove %n files from the envelope?', this.selectedCount),
403403
action: async () => {
404404
await this.confirmDeleteSelected()
405405
},

0 commit comments

Comments
 (0)