From 510907b48ae07f5000933593843026c917588834 Mon Sep 17 00:00:00 2001 From: sebseb7 Date: Wed, 16 Jul 2025 08:26:20 +0200 Subject: [PATCH] Fix syntax error in English translation file: Corrected closing bracket in translation.js to ensure proper export structure. --- src/i18n/locales/en/translation.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/i18n/locales/en/translation.js b/src/i18n/locales/en/translation.js index 2d300fd..90ae61e 100644 --- a/src/i18n/locales/en/translation.js +++ b/src/i18n/locales/en/translation.js @@ -266,4 +266,5 @@ export default { "apiKeyGenerated": "API key generated successfully", // API-Schlüssel erfolgreich generiert "apiKeyWarning": "Store this key securely. For security reasons, it will be hidden in 10 seconds." // Speichern Sie diesen Schlüssel sicher. Er wird aus Sicherheitsgründen in 10 Sekunden ausgeblendet. } - }; + } +}