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') }}