diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf
index 6175cf700..8bc640c33 100644
--- a/src-ui/messages.xlf
+++ b/src-ui/messages.xlf
@@ -1124,6 +1124,13 @@
73
+
+ ""
+
+ src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+ 112
+
+
"" and ""
@@ -1132,13 +1139,6 @@
This is for messages like 'modify "tag1" and "tag2"'
-
- ""
-
- src/app/components/document-list/bulk-editor/bulk-editor.component.ts
- 116
-
-
,
diff --git a/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.ts b/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.ts
index 6b2598fe8..04fc2a978 100644
--- a/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.ts
+++ b/src-ui/src/app/components/document-list/bulk-editor/bulk-editor.component.ts
@@ -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 {