Skip to content

Commit 21e6b53

Browse files
authored
fix(i18n): Corrected plural for multi. plural languages
Reported at Transifex. https://app.transifex.com/nextcloud/nextcloud-upload-library/translate/#de_DE/16314f783b1fbd5880d265a6aa82c3d7/488853442 Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
1 parent 9b9e2eb commit 21e6b53

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/components/ConflictPicker.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ export default defineComponent({
194194
},
195195
196196
skipButtonLabel() {
197-
return n('Skip this file', 'Skip {count} files', this.conflicts.length, { count: this.conflicts.length })
197+
return n('Skip {count} file', 'Skip {count} files', this.conflicts.length, { count: this.conflicts.length })
198198
},
199199
200200
// Select all incoming files

0 commit comments

Comments
 (0)