yarn lint, yarn locales --fixed

This commit is contained in:
ogerly 2021-12-10 12:19:07 +01:00
parent 3abbb6def1
commit ae317a95db
3 changed files with 11 additions and 11 deletions

View File

@ -45,13 +45,13 @@
},
"error": {
"change-password": "Fehler beim Ändern des Passworts",
"empty-transactionlist": "Es gibt noch keine Transaktionen unter deinem Account.",
"error": "Fehler",
"no-account": "Leider konnten wir keinen Account finden mit diesen Daten!",
"no-decay-transactionlist": "Fehler: Kein Decay vorhanden, bitte prüfe den Code!",
"no-email-verify": "Die Email wurde noch nicht bestätigt, bitte überprüfe deine Emails und klicke auf den Aktivierungslink!",
"session-expired": "Die Sitzung wurde aus Sicherheitsgründen beendet.",
"no-transactionlist":"Es gab leider einen Fehler. Es werden keine Transaktionen vom Server übermittelt",
"empty-transactionlist":"Es gibt noch keine Transaktionen unter deinem Account.",
"no-decay-transactionlist":"Fehler: Kein Decay vorhanden, bitte prüfe den Code!"
"no-transactionlist": "Es gab leider einen Fehler. Es werden keine Transaktionen vom Server übermittelt",
"session-expired": "Die Sitzung wurde aus Sicherheitsgründen beendet."
},
"form": {
"amount": "Betrag",

View File

@ -45,13 +45,13 @@
},
"error": {
"change-password": "Error while changing password",
"empty-transactionlist": "There are no transactions under your account yet.",
"error": "Error",
"no-account": "Unfortunately we could not find an account to the given data!",
"no-decay-transactionlist": "Error: No Decay available, please check the code!",
"no-email-verify": "Your email is not activated yet, please check your emails and click the activation link!",
"session-expired": "The session was closed for security reasons.",
"no-transactionlist":"Unfortunately, there was an error. No transactions are being sent from the server.",
"empty-transactionlist":"There are no transactions under your account yet.",
"no-decay-transactionlist":"Error: No Decay available, please check the code!"
"no-transactionlist": "Unfortunately, there was an error. No transactions are being sent from the server.",
"session-expired": "The session was closed for security reasons."
},
"form": {
"amount": "Amount",

View File

@ -4,12 +4,12 @@
<div v-if="!transactions" class="text-right">
<b-icon icon="exclamation-triangle" class="mr-2" style="color: red"></b-icon>
<small>
{{ $t('error.no-transactionlist')}}
{{ $t('error.no-transactionlist') }}
</small>
</div>
<div v-if="transactions.length === 0" class="text-right">
<b-icon icon="exclamation-triangle" class="mr-2" style="color: red"></b-icon>
<small>{{ $t('error.empty-transactionlist')}}</small>
<small>{{ $t('error.empty-transactionlist') }}</small>
</div>
<div
v-for="{ decay, transactionId, type, date, balance, name, memo } in transactions"
@ -18,7 +18,7 @@
>
<div v-if="type === 'decay' && !decay" class="text-right">
<b-icon icon="exclamation-triangle" style="color: red"></b-icon>
<small>{{ $t('error.no-decay-transactionlist')}}</small>
<small>{{ $t('error.no-decay-transactionlist') }}</small>
</div>
<div