From 2277cc497be84838e27ac35ca854a1069794ec8e Mon Sep 17 00:00:00 2001 From: einhorn_b Date: Sat, 2 Oct 2021 13:16:47 +0200 Subject: [PATCH] fix locales --- frontend/src/locales/de.json | 6 ++++++ frontend/src/locales/en.json | 5 +++++ .../src/views/Pages/UserProfile/UserCard_CoinAnimation.vue | 6 +++--- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/frontend/src/locales/de.json b/frontend/src/locales/de.json index 7155c1879..86fa6b0cf 100644 --- a/frontend/src/locales/de.json +++ b/frontend/src/locales/de.json @@ -105,6 +105,12 @@ "privacy_policy": "Datenschutzerklärung", "send": "Senden", "settings": { + "coinanimation": { + "coinanimation": "Münzanimation", + "False": "Münzanimation ausgeschaltet", + "True" : "Münzanimation eingeschaltet" + }, + "coinanimationTrue": "", "language": { "changeLanguage": "Sprache ändern", "de": "Deutsch", diff --git a/frontend/src/locales/en.json b/frontend/src/locales/en.json index d15f10b7d..14c6c8526 100644 --- a/frontend/src/locales/en.json +++ b/frontend/src/locales/en.json @@ -105,6 +105,11 @@ "privacy_policy": "Privacy policy", "send": "Send", "settings": { + "coinanimation": { + "coinanimation": "Coin animation", + "False": "Coin animation disabled", + "True" : "Coin animation enabled" + }, "language": { "changeLanguage": "Change language", "de": "Deutsch", diff --git a/frontend/src/views/Pages/UserProfile/UserCard_CoinAnimation.vue b/frontend/src/views/Pages/UserProfile/UserCard_CoinAnimation.vue index e5322a89f..4040823d6 100644 --- a/frontend/src/views/Pages/UserProfile/UserCard_CoinAnimation.vue +++ b/frontend/src/views/Pages/UserProfile/UserCard_CoinAnimation.vue @@ -8,7 +8,7 @@ - {{ $t('setting.coinanimation') }} + {{ $t('settings.coinanimation.coinanimation') }} @@ -21,8 +21,8 @@ > {{ CoinAnimationStatus - ? $t('setting.coinanimationTrue') - : $t('setting.coinanimationFalse') + ? $t('settings.coinanimation.True') + : $t('settings.coinanimation.False') }}