From e4f9f89a40d5a9dbbe7bd47b80eac3948dacb819 Mon Sep 17 00:00:00 2001 From: Gregoire Parant Date: Fri, 18 Feb 2022 21:57:11 +0100 Subject: [PATCH] Fix pretty Signed-off-by: Gregoire Parant --- front/src/i18n/de-DE/warning.ts | 5 ++--- front/src/i18n/en-US/warning.ts | 5 ++--- front/src/i18n/fr-FR/warning.ts | 2 +- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/front/src/i18n/de-DE/warning.ts b/front/src/i18n/de-DE/warning.ts index 68b7bc88..4d1f4738 100644 --- a/front/src/i18n/de-DE/warning.ts +++ b/front/src/i18n/de-DE/warning.ts @@ -1,12 +1,11 @@ import type { Translation } from "../i18n-types"; -import {ADMIN_URL} from "../../Enum/EnvironmentVariable"; +import { ADMIN_URL } from "../../Enum/EnvironmentVariable"; const upgradeLink = ADMIN_URL + "/pricing"; const warning: NonNullable = { title: "Warnung!", - content: - `Diese Welt erreicht bald die maximale Kapazität. Du kannst die Kapazität hier erhöhen`, + content: `Diese Welt erreicht bald die maximale Kapazität. Du kannst die Kapazität hier erhöhen`, limit: "Diese Welt erreicht bald die maximale Kapazität!", accessDenied: { camera: "Zugriff auf die Kamera verweigert. Hier klicken um deine Browser Berechtigungen zu prüfen.", diff --git a/front/src/i18n/en-US/warning.ts b/front/src/i18n/en-US/warning.ts index 8d6a324d..7bf83c87 100644 --- a/front/src/i18n/en-US/warning.ts +++ b/front/src/i18n/en-US/warning.ts @@ -1,12 +1,11 @@ import type { BaseTranslation } from "../i18n-types"; -import {ADMIN_URL} from "../../Enum/EnvironmentVariable"; +import { ADMIN_URL } from "../../Enum/EnvironmentVariable"; const upgradeLink = ADMIN_URL + "/pricing"; const warning: BaseTranslation = { title: "Warning!", - content: - `This world is close to its limit!. You can upgrade its capacity here`, + content: `This world is close to its limit!. You can upgrade its capacity here`, limit: "This world is close to its limit!", accessDenied: { camera: "Camera access denied. Click here and check your browser permissions.", diff --git a/front/src/i18n/fr-FR/warning.ts b/front/src/i18n/fr-FR/warning.ts index 45d788ad..11a8ab99 100644 --- a/front/src/i18n/fr-FR/warning.ts +++ b/front/src/i18n/fr-FR/warning.ts @@ -1,5 +1,5 @@ import type { Translation } from "../i18n-types"; -import {ADMIN_URL} from "../../Enum/EnvironmentVariable"; +import { ADMIN_URL } from "../../Enum/EnvironmentVariable"; const upgradeLink = ADMIN_URL + "/pricing";