Skip to content

Commit f20bf42

Browse files
authored
Merge pull request #6291 from LibreSign/backport/6289/stable32
[stable32] chore(i18n): Fix plural form for multi plural languages like polish
2 parents 68a7a22 + 5d63edd commit f20bf42

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)