add missing quotes

This commit is contained in:
jonaswinkler
2021-01-28 22:38:12 +01:00
parent f872221c49
commit 107cc2ca20
2 changed files with 8 additions and 8 deletions

View File

@@ -109,7 +109,7 @@ export class BulkEditorComponent {
if (items.length == 0) {
return ""
} else if (items.length == 1) {
return items[0].name
return $localize`"${items[0].name}"`
} else if (items.length == 2) {
return $localize`:This is for messages like 'modify "tag1" and "tag2"':"${items[0].name}" and "${items[1].name}"`
} else {