feat(bulk-report-replies): add localization to BulkReportControls
Bug: twpowertools:192
Fixed: twpowertools:238
Change-Id: I6a6a636ce71a0daed785ad6768845a64f441473a
diff --git a/src/features/bulkReportReplies/ui/components/BulkReportControls.ts b/src/features/bulkReportReplies/ui/components/BulkReportControls.ts
index 1ed77c8..fef2933 100644
--- a/src/features/bulkReportReplies/ui/components/BulkReportControls.ts
+++ b/src/features/bulkReportReplies/ui/components/BulkReportControls.ts
@@ -9,6 +9,7 @@
import { ReportStatus, ReportStatusValues } from '../../domain/reportStatus';
import { ReportType, ReportTypeValues } from '../../domain/reportType';
import { kEventReportReply } from '../events';
+import { msg } from '@lit/localize';
interface ReportButton {
type: ReportType;
@@ -100,9 +101,18 @@
type: ReportTypeValues.OffTopic,
icon: 'block',
labels: {
- [ReportStatusValues.Idle]: 'Mark as off-topic',
- [ReportStatusValues.Processing]: 'Marking as off-topic…',
- [ReportStatusValues.Done]: 'Marked as off-topic',
+ [ReportStatusValues.Idle]: msg('Mark as off-topic', {
+ id: 'bulkReportControls.offTopicChip.defaultLabel',
+ desc: 'Chip shown to report a reply in a thread.',
+ }),
+ [ReportStatusValues.Processing]: msg('Marking as off-topic…', {
+ id: 'bulkReportControls.offTopicChip.sendingLabel',
+ desc: 'Chip label shown when sending the report.',
+ }),
+ [ReportStatusValues.Done]: msg('Marked as off-topic', {
+ id: 'bulkReportControls.offTopicChip.successLabel',
+ desc: 'Chip label shown when the report succeeded.',
+ }),
},
status: this.offTopicStatus,
},
@@ -110,9 +120,18 @@
type: ReportTypeValues.Abuse,
icon: 'error',
labels: {
- [ReportStatusValues.Idle]: 'Mark as abuse',
- [ReportStatusValues.Processing]: 'Marking as abuse…',
- [ReportStatusValues.Done]: 'Marked as abuse',
+ [ReportStatusValues.Idle]: msg('Mark as abuse', {
+ id: 'bulkReportControls.abuseChip.defaultLabel',
+ desc: 'Chip shown to report a reply in a thread.',
+ }),
+ [ReportStatusValues.Processing]: msg('Marking as abuse…', {
+ id: 'bulkReportControls.abuseChip.sendingLabel',
+ desc: 'Chip label shown when sending the report.',
+ }),
+ [ReportStatusValues.Done]: msg('Marked as abuse', {
+ id: 'bulkReportControls.abuseChip.successLabel',
+ desc: 'Chip label shown when the report succeeded.',
+ }),
},
status: this.abuseStatus,
},
diff --git a/src/lit-locales/source/ar.xlf b/src/lit-locales/source/ar.xlf
index dada0ae..7903e22 100644
--- a/src/lit-locales/source/ar.xlf
+++ b/src/lit-locales/source/ar.xlf
@@ -53,6 +53,30 @@
<source>(⌥ + R)</source>
<note from="lit-localize">Text shown to Mac users below the "bulk report replies" toggle, to let them know that they can use this keyboard shortcut to toggle it.</note>
</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.sendingLabel">
+ <source>Marking as off-topic…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.sendingLabel">
+ <source>Marking as abuse…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.successLabel">
+ <source>Marked as off-topic</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.successLabel">
+ <source>Marked as abuse</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.defaultLabel">
+ <source>Mark as off-topic</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.defaultLabel">
+ <source>Mark as abuse</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
</body>
</file>
</xliff>
diff --git a/src/lit-locales/source/ca.xlf b/src/lit-locales/source/ca.xlf
index 882086a..c475284 100644
--- a/src/lit-locales/source/ca.xlf
+++ b/src/lit-locales/source/ca.xlf
@@ -54,6 +54,30 @@
<source>(⌥ + R)</source>
<note from="lit-localize">Text shown to Mac users below the "bulk report replies" toggle, to let them know that they can use this keyboard shortcut to toggle it.</note>
</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.sendingLabel">
+ <source>Marking as off-topic…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.sendingLabel">
+ <source>Marking as abuse…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.successLabel">
+ <source>Marked as off-topic</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.successLabel">
+ <source>Marked as abuse</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.defaultLabel">
+ <source>Mark as off-topic</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.defaultLabel">
+ <source>Mark as abuse</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
</body>
</file>
</xliff>
diff --git a/src/lit-locales/source/de.xlf b/src/lit-locales/source/de.xlf
index cbf8aa1..f19e3e2 100644
--- a/src/lit-locales/source/de.xlf
+++ b/src/lit-locales/source/de.xlf
@@ -53,6 +53,30 @@
<source>(⌥ + R)</source>
<note from="lit-localize">Text shown to Mac users below the "bulk report replies" toggle, to let them know that they can use this keyboard shortcut to toggle it.</note>
</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.sendingLabel">
+ <source>Marking as off-topic…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.sendingLabel">
+ <source>Marking as abuse…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.successLabel">
+ <source>Marked as off-topic</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.successLabel">
+ <source>Marked as abuse</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.defaultLabel">
+ <source>Mark as off-topic</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.defaultLabel">
+ <source>Mark as abuse</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
</body>
</file>
</xliff>
diff --git a/src/lit-locales/source/es.xlf b/src/lit-locales/source/es.xlf
index 3da6fd9..b047a24 100644
--- a/src/lit-locales/source/es.xlf
+++ b/src/lit-locales/source/es.xlf
@@ -54,6 +54,30 @@
<source>(⌥ + R)</source>
<note from="lit-localize">Text shown to Mac users below the "bulk report replies" toggle, to let them know that they can use this keyboard shortcut to toggle it.</note>
</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.sendingLabel">
+ <source>Marking as off-topic…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.sendingLabel">
+ <source>Marking as abuse…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.successLabel">
+ <source>Marked as off-topic</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.successLabel">
+ <source>Marked as abuse</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.defaultLabel">
+ <source>Mark as off-topic</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.defaultLabel">
+ <source>Mark as abuse</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
</body>
</file>
</xliff>
diff --git a/src/lit-locales/source/fr.xlf b/src/lit-locales/source/fr.xlf
index 2d46294..9a78e3c 100644
--- a/src/lit-locales/source/fr.xlf
+++ b/src/lit-locales/source/fr.xlf
@@ -53,6 +53,30 @@
<source>(⌥ + R)</source>
<note from="lit-localize">Text shown to Mac users below the "bulk report replies" toggle, to let them know that they can use this keyboard shortcut to toggle it.</note>
</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.sendingLabel">
+ <source>Marking as off-topic…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.sendingLabel">
+ <source>Marking as abuse…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.successLabel">
+ <source>Marked as off-topic</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.successLabel">
+ <source>Marked as abuse</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.defaultLabel">
+ <source>Mark as off-topic</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.defaultLabel">
+ <source>Mark as abuse</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
</body>
</file>
</xliff>
diff --git a/src/lit-locales/source/id.xlf b/src/lit-locales/source/id.xlf
index 1d8497d..9668bff 100644
--- a/src/lit-locales/source/id.xlf
+++ b/src/lit-locales/source/id.xlf
@@ -45,6 +45,30 @@
<source>(⌥ + R)</source>
<note from="lit-localize">Text shown to Mac users below the "bulk report replies" toggle, to let them know that they can use this keyboard shortcut to toggle it.</note>
</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.sendingLabel">
+ <source>Marking as off-topic…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.sendingLabel">
+ <source>Marking as abuse…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.successLabel">
+ <source>Marked as off-topic</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.successLabel">
+ <source>Marked as abuse</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.defaultLabel">
+ <source>Mark as off-topic</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.defaultLabel">
+ <source>Mark as abuse</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
</body>
</file>
</xliff>
diff --git a/src/lit-locales/source/it.xlf b/src/lit-locales/source/it.xlf
index e92d1f3..8eaa96b 100644
--- a/src/lit-locales/source/it.xlf
+++ b/src/lit-locales/source/it.xlf
@@ -47,6 +47,30 @@
<source>(⌥ + R)</source>
<note from="lit-localize">Text shown to Mac users below the "bulk report replies" toggle, to let them know that they can use this keyboard shortcut to toggle it.</note>
</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.sendingLabel">
+ <source>Marking as off-topic…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.sendingLabel">
+ <source>Marking as abuse…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.successLabel">
+ <source>Marked as off-topic</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.successLabel">
+ <source>Marked as abuse</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.defaultLabel">
+ <source>Mark as off-topic</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.defaultLabel">
+ <source>Mark as abuse</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
</body>
</file>
</xliff>
diff --git a/src/lit-locales/source/ja.xlf b/src/lit-locales/source/ja.xlf
index 25dfc0c..3bea57e 100644
--- a/src/lit-locales/source/ja.xlf
+++ b/src/lit-locales/source/ja.xlf
@@ -53,6 +53,30 @@
<source>(⌥ + R)</source>
<note from="lit-localize">Text shown to Mac users below the "bulk report replies" toggle, to let them know that they can use this keyboard shortcut to toggle it.</note>
</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.sendingLabel">
+ <source>Marking as off-topic…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.sendingLabel">
+ <source>Marking as abuse…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.successLabel">
+ <source>Marked as off-topic</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.successLabel">
+ <source>Marked as abuse</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.defaultLabel">
+ <source>Mark as off-topic</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.defaultLabel">
+ <source>Mark as abuse</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
</body>
</file>
</xliff>
diff --git a/src/lit-locales/source/ko.xlf b/src/lit-locales/source/ko.xlf
index 03656a1..860f8c0 100644
--- a/src/lit-locales/source/ko.xlf
+++ b/src/lit-locales/source/ko.xlf
@@ -54,6 +54,30 @@
<source>(⌥ + R)</source>
<note from="lit-localize">Text shown to Mac users below the "bulk report replies" toggle, to let them know that they can use this keyboard shortcut to toggle it.</note>
</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.sendingLabel">
+ <source>Marking as off-topic…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.sendingLabel">
+ <source>Marking as abuse…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.successLabel">
+ <source>Marked as off-topic</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.successLabel">
+ <source>Marked as abuse</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.defaultLabel">
+ <source>Mark as off-topic</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.defaultLabel">
+ <source>Mark as abuse</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
</body>
</file>
</xliff>
diff --git a/src/lit-locales/source/pl.xlf b/src/lit-locales/source/pl.xlf
index 1206916..7c4503a 100644
--- a/src/lit-locales/source/pl.xlf
+++ b/src/lit-locales/source/pl.xlf
@@ -45,6 +45,30 @@
<source>(⌥ + R)</source>
<note from="lit-localize">Text shown to Mac users below the "bulk report replies" toggle, to let them know that they can use this keyboard shortcut to toggle it.</note>
</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.sendingLabel">
+ <source>Marking as off-topic…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.sendingLabel">
+ <source>Marking as abuse…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.successLabel">
+ <source>Marked as off-topic</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.successLabel">
+ <source>Marked as abuse</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.defaultLabel">
+ <source>Mark as off-topic</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.defaultLabel">
+ <source>Mark as abuse</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
</body>
</file>
</xliff>
diff --git a/src/lit-locales/source/pt_BR.xlf b/src/lit-locales/source/pt_BR.xlf
index 1a2bad2..503f49c 100644
--- a/src/lit-locales/source/pt_BR.xlf
+++ b/src/lit-locales/source/pt_BR.xlf
@@ -45,6 +45,30 @@
<source>(⌥ + R)</source>
<note from="lit-localize">Text shown to Mac users below the "bulk report replies" toggle, to let them know that they can use this keyboard shortcut to toggle it.</note>
</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.sendingLabel">
+ <source>Marking as off-topic…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.sendingLabel">
+ <source>Marking as abuse…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.successLabel">
+ <source>Marked as off-topic</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.successLabel">
+ <source>Marked as abuse</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.defaultLabel">
+ <source>Mark as off-topic</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.defaultLabel">
+ <source>Mark as abuse</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
</body>
</file>
</xliff>
diff --git a/src/lit-locales/source/ru.xlf b/src/lit-locales/source/ru.xlf
index 3d9ede3..4b15f95 100644
--- a/src/lit-locales/source/ru.xlf
+++ b/src/lit-locales/source/ru.xlf
@@ -54,6 +54,30 @@
<source>(⌥ + R)</source>
<note from="lit-localize">Text shown to Mac users below the "bulk report replies" toggle, to let them know that they can use this keyboard shortcut to toggle it.</note>
</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.sendingLabel">
+ <source>Marking as off-topic…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.sendingLabel">
+ <source>Marking as abuse…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.successLabel">
+ <source>Marked as off-topic</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.successLabel">
+ <source>Marked as abuse</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.defaultLabel">
+ <source>Mark as off-topic</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.defaultLabel">
+ <source>Mark as abuse</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
</body>
</file>
</xliff>
diff --git a/src/lit-locales/source/th.xlf b/src/lit-locales/source/th.xlf
index b2ffbda..e938603 100644
--- a/src/lit-locales/source/th.xlf
+++ b/src/lit-locales/source/th.xlf
@@ -45,6 +45,30 @@
<source>(⌥ + R)</source>
<note from="lit-localize">Text shown to Mac users below the "bulk report replies" toggle, to let them know that they can use this keyboard shortcut to toggle it.</note>
</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.sendingLabel">
+ <source>Marking as off-topic…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.sendingLabel">
+ <source>Marking as abuse…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.successLabel">
+ <source>Marked as off-topic</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.successLabel">
+ <source>Marked as abuse</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.defaultLabel">
+ <source>Mark as off-topic</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.defaultLabel">
+ <source>Mark as abuse</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
</body>
</file>
</xliff>
diff --git a/src/lit-locales/source/tr.xlf b/src/lit-locales/source/tr.xlf
index 9699a08..a3f1bd4 100644
--- a/src/lit-locales/source/tr.xlf
+++ b/src/lit-locales/source/tr.xlf
@@ -45,6 +45,30 @@
<source>(⌥ + R)</source>
<note from="lit-localize">Text shown to Mac users below the "bulk report replies" toggle, to let them know that they can use this keyboard shortcut to toggle it.</note>
</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.sendingLabel">
+ <source>Marking as off-topic…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.sendingLabel">
+ <source>Marking as abuse…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.successLabel">
+ <source>Marked as off-topic</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.successLabel">
+ <source>Marked as abuse</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.defaultLabel">
+ <source>Mark as off-topic</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.defaultLabel">
+ <source>Mark as abuse</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
</body>
</file>
</xliff>
diff --git a/src/lit-locales/source/vi.xlf b/src/lit-locales/source/vi.xlf
index 4a03c5a..205ceea 100644
--- a/src/lit-locales/source/vi.xlf
+++ b/src/lit-locales/source/vi.xlf
@@ -45,6 +45,30 @@
<source>(⌥ + R)</source>
<note from="lit-localize">Text shown to Mac users below the "bulk report replies" toggle, to let them know that they can use this keyboard shortcut to toggle it.</note>
</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.sendingLabel">
+ <source>Marking as off-topic…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.sendingLabel">
+ <source>Marking as abuse…</source>
+ <note from="lit-localize">Chip label shown when sending the report.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.successLabel">
+ <source>Marked as off-topic</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.successLabel">
+ <source>Marked as abuse</source>
+ <note from="lit-localize">Chip label shown when the report succeeded.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.offTopicChip.defaultLabel">
+ <source>Mark as off-topic</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
+<trans-unit id="bulkReportControls.abuseChip.defaultLabel">
+ <source>Mark as abuse</source>
+ <note from="lit-localize">Chip shown to report a reply in a thread.</note>
+</trans-unit>
</body>
</file>
</xliff>