diff --git a/Application/translations/de/translations.php b/Application/translations/de/translations.php index e619d8d..5b864f3 100644 --- a/Application/translations/de/translations.php +++ b/Application/translations/de/translations.php @@ -13,9 +13,7 @@ declare(strict_types=1); -$sLangName = "Deutsch"; - -$aLang = [ +return [ 'charset' => 'UTF-8', 'D3_TOTP_INPUT' => 'Authentisierungscode', diff --git a/Application/translations/en/translations.php b/Application/translations/en/translations.php index 4c8490f..31566f1 100644 --- a/Application/translations/en/translations.php +++ b/Application/translations/en/translations.php @@ -13,9 +13,7 @@ declare(strict_types=1); -$sLangName = "English"; - -$aLang = [ +return [ 'charset' => 'UTF-8', 'D3_TOTP_INPUT' => 'authentication code', diff --git a/Application/views/de/translations.php b/Application/views/de/translations.php index d85d205..8dd1e19 100644 --- a/Application/views/de/translations.php +++ b/Application/views/de/translations.php @@ -11,9 +11,9 @@ * @link https://www.oxidmodule.com */ -$sLangName = "Deutsch"; +declare(strict_types=1); -$aLang = [ +return [ 'charset' => 'UTF-8', 'TOTP_INPUT' => 'Authentisierungscode', diff --git a/Application/views/en/translations.php b/Application/views/en/translations.php index 714a87a..89a80cc 100644 --- a/Application/views/en/translations.php +++ b/Application/views/en/translations.php @@ -11,9 +11,9 @@ * @link https://www.oxidmodule.com */ -$sLangName = "English"; +declare(strict_types=1); -$aLang = [ +return [ 'charset' => 'UTF-8', 'TOTP_INPUT' => 'authentication code',