Skip to content

Commit 2894756

Browse files
chore(i18n): Fix plural form for multi plural languages like polish
Reported at Transifex Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
1 parent 5e7b306 commit 2894756

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)