Skip to content

Commit 25deb73

Browse files
rakeknivenAndyScherzinger
authored andcommitted
Fix pluralization in SystemTagPicker messages
Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
1 parent a5525df commit 25deb73

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/systemtags/src/components/SystemTagPicker.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ export default defineComponent({
286286
if (this.toAdd.length === 1 && this.toRemove.length === 1) {
287287
return n(
288288
'systemtags',
289-
'{tag1} will be set and {tag2} will be removed from 1 file.',
289+
'{tag1} will be set and {tag2} will be removed from {count} file.',
290290
'{tag1} will be set and {tag2} will be removed from {count} files.',
291291
this.nodes.length,
292292
{
@@ -317,7 +317,7 @@ export default defineComponent({
317317
318318
const removeStringSingular = n(
319319
'systemtags',
320-
'{tag} will be removed from 1 file.',
320+
'{tag} will be removed from {count} file.',
321321
'{tag} will be removed from {count} files.',
322322
this.nodes.length,
323323
{

0 commit comments

Comments
 (0)