From 88f1f299ba4594a94a6ec6d2b88e81179a96a5ba Mon Sep 17 00:00:00 2001 From: Basile Spaenlehauer Date: Thu, 13 Apr 2023 10:21:31 +0200 Subject: [PATCH] fix: add missing notifications translations (#146) Co-authored-by: Alexandre Chau --- src/constants/chatbox.ts | 2 ++ src/langs/de/chatbox.json | 4 +++- src/langs/en/chatbox.json | 4 +++- src/langs/fr/chatbox.json | 4 +++- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/src/constants/chatbox.ts b/src/constants/chatbox.ts index c191e773..e8dfd8f9 100644 --- a/src/constants/chatbox.ts +++ b/src/constants/chatbox.ts @@ -24,4 +24,6 @@ export const CHATBOX = { COL_MESSAGE: 'COL_MESSAGE', COL_BY: 'COL_BY', COL_ACTIONS: 'COL_ACTIONS', + NOTIFICATIONS_DIALOG_TITLE: 'NOTIFICATIONS_DIALOG_TITLE', + EMPTY_NOTIFICATIONS: 'EMPTY_NOTIFICATIONS', }; diff --git a/src/langs/de/chatbox.json b/src/langs/de/chatbox.json index 95798fb2..ce1b9a88 100644 --- a/src/langs/de/chatbox.json +++ b/src/langs/de/chatbox.json @@ -23,5 +23,7 @@ "COL_STATUS": "Status", "COL_MESSAGE": "Nachricht", "COL_BY": "von", - "COL_ACTIONS": "Aktionen" + "COL_ACTIONS": "Aktionen", + "NOTIFICATIONS_DIALOG_TITLE": "Benachrichtigungen", + "EMPTY_NOTIFICATIONS": "Keine Benachrichtigungen" } diff --git a/src/langs/en/chatbox.json b/src/langs/en/chatbox.json index 672238c4..46f7df0a 100644 --- a/src/langs/en/chatbox.json +++ b/src/langs/en/chatbox.json @@ -23,5 +23,7 @@ "COL_STATUS": "Status", "COL_MESSAGE": "Message", "COL_BY": "By", - "COL_ACTIONS": "Actions" + "COL_ACTIONS": "Actions", + "NOTIFICATIONS_DIALOG_TITLE": "Notifications", + "EMPTY_NOTIFICATIONS": "No notifications" } diff --git a/src/langs/fr/chatbox.json b/src/langs/fr/chatbox.json index e8ee9957..589c4939 100644 --- a/src/langs/fr/chatbox.json +++ b/src/langs/fr/chatbox.json @@ -22,5 +22,7 @@ "COL_STATUS": "Statut", "COL_MESSAGE": "Message", "COL_BY": "Par", - "COL_ACTIONS": "Actions" + "COL_ACTIONS": "Actions", + "NOTIFICATIONS_DIALOG_TITLE": "Notifications", + "EMPTY_NOTIFICATIONS": "Pas de notification" }