From 362cccb24f0407a1fa9a25fa75bf3027188510b8 Mon Sep 17 00:00:00 2001 From: Khushal Agarwal Date: Tue, 25 Jul 2023 17:16:13 +0530 Subject: [PATCH] refactor(i18n): remove de and es translations files (#847) --- packages/i18n/src/translations/de.json | 38 ------------------------- packages/i18n/src/translations/es.json | 38 ------------------------- packages/i18n/src/translations/index.ts | 4 +-- 3 files changed, 1 insertion(+), 79 deletions(-) delete mode 100644 packages/i18n/src/translations/de.json delete mode 100644 packages/i18n/src/translations/es.json diff --git a/packages/i18n/src/translations/de.json b/packages/i18n/src/translations/de.json deleted file mode 100644 index 1fa96d62f0..0000000000 --- a/packages/i18n/src/translations/de.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "Joining": "Verbinden", - "Mic": "Mikrofon", - "No internet connection": "Keine Internetverbindung", - "Re-connecting": "Wiederverbinden", - "Ringing": "Klingeln", - "Screen Share": "Bildschirmfreigabe", - "Select a Camera": "Wähle die Kamera", - "Select a Mic": "Wähle das Mikrofon", - "Select Speakers": "Wähle den Lautsprecher", - "Speakers": "Lautsprecher", - "Video": "Video", - "You are muted. Unmute to speak.": "Du bist stummgeschaltet. Schalte den Ton an, um zu sprechen.", - - "You can now speak.": "", - "Awaiting for an approval to speak.": "", - "You can no longer speak.": "", - "You can now share your video.": "", - "Awaiting for an approval to share your video.": "", - "You can no longer share your video.": "", - "Waiting for recording to stop...": "", - "Waiting for recording to start...": "", - "Record call": "", - "Reactions": "", - "You can now share your screen.": "", - "Awaiting for an approval to share screen.": "", - "You can no longer share your screen.": "", - "Share screen": "", - - "Allow": "", - "Revoke": "", - "Dismiss": "", - - "{{ userName }} is requesting to speak": "", - "{{ userName }} is requesting to share their camera": "", - "{{ userName }} is requesting to present their screen": "", - "{{ userName }} is requesting permission: {{ permission }}": "" -} diff --git a/packages/i18n/src/translations/es.json b/packages/i18n/src/translations/es.json deleted file mode 100644 index 7d6c480b9c..0000000000 --- a/packages/i18n/src/translations/es.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "Joining": "Conectando", - "Mic": "Micrófono", - "No internet connection": "Sin conexión a Internet", - "Re-connecting": "Volviendo a conectar", - "Ringing": "Llamando", - "Screen Share": "Compartir pantalla", - "Select a Camera": "Elige la Cámara", - "Select a Mic": "Elige el Micrófono", - "Select Speakers": "Elige los Altavoces", - "Speakers": "Altavoces", - "Video": "Vídeo", - "You are muted. Unmute to speak.": "Estás silenciado. Activa el sonido para hablar.", - - "You can now speak.": "", - "Awaiting for an approval to speak.": "", - "You can no longer speak.": "", - "You can now share your video.": "", - "Awaiting for an approval to share your video.": "", - "You can no longer share your video.": "", - "Waiting for recording to stop...": "", - "Waiting for recording to start...": "", - "Record call": "", - "Reactions": "", - "You can now share your screen.": "", - "Awaiting for an approval to share screen.": "", - "You can no longer share your screen.": "", - "Share screen": "", - - "Allow": "", - "Revoke": "", - "Dismiss": "", - - "{{ userName }} is requesting to speak": "", - "{{ userName }} is requesting to share their camera": "", - "{{ userName }} is requesting to present their screen": "", - "{{ userName }} is requesting permission: {{ permission }}": "" -} diff --git a/packages/i18n/src/translations/index.ts b/packages/i18n/src/translations/index.ts index a281c689b5..430d2acc56 100644 --- a/packages/i18n/src/translations/index.ts +++ b/packages/i18n/src/translations/index.ts @@ -1,6 +1,4 @@ -import de from './de.json'; import en from './en.json'; -import es from './es.json'; -const translations = { de, en, es }; +const translations = { en }; export default translations;