diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json index 34f12a1095b..e73860a030e 100644 --- a/src/i18n/strings/en_EN.json +++ b/src/i18n/strings/en_EN.json @@ -827,6 +827,9 @@ "%(creatorName)s created this room.": "%(creatorName)s created this room.", "This is the start of export of . Exported by at %(exportDate)s.": "This is the start of export of . Exported by at %(exportDate)s.", "Topic: %(topic)s": "Topic: %(topic)s", + "Previous group of messages": "Previous group of messages", + "Next group of messages": "Next group of messages", + "Exported Data": "Exported Data", "Error fetching file": "Error fetching file", "Processing event %(number)s out of %(total)s": "Processing event %(number)s out of %(total)s", "Starting export…": "Starting export…", diff --git a/src/utils/exportUtils/HtmlExport.tsx b/src/utils/exportUtils/HtmlExport.tsx index 7863ae01b10..667978b7b07 100644 --- a/src/utils/exportUtils/HtmlExport.tsx +++ b/src/utils/exportUtils/HtmlExport.tsx @@ -132,7 +132,7 @@ export default class HTMLExporter extends Exporter { currentPage !== 0 ? (
- Previous group of messages + {_t("Previous group of messages")}
) : ( @@ -144,7 +144,7 @@ export default class HTMLExporter extends Exporter { currentPage < nbPages - 1 ? (
- Next group of messages + {_t("Next group of messages")}
) : ( @@ -161,7 +161,7 @@ export default class HTMLExporter extends Exporter { - Exported Data + ${_t("Exported Data")}