Skip to content

Commit c7e081d

Browse files
authored
Fix pluralization in SystemTagPicker messages
Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
1 parent badf762 commit c7e081d

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
@@ -279,7 +279,7 @@ export default defineComponent({
279279
if (this.toAdd.length === 1 && this.toRemove.length === 1) {
280280
return n(
281281
'systemtags',
282-
'{tag1} will be set and {tag2} will be removed from 1 file.',
282+
'{tag1} will be set and {tag2} will be removed from {count} file.',
283283
'{tag1} will be set and {tag2} will be removed from {count} files.',
284284
this.nodes.length,
285285
{
@@ -310,7 +310,7 @@ export default defineComponent({
310310
311311
const removeStringSingular = n(
312312
'systemtags',
313-
'{tag} will be removed from 1 file.',
313+
'{tag} will be removed from {count} file.',
314314
'{tag} will be removed from {count} files.',
315315
this.nodes.length,
316316
{

0 commit comments

Comments
 (0)