TransactionConfirm new translations added

This commit is contained in:
ogerly 2021-11-30 09:33:19 +01:00
parent e495d3475b
commit 508b1519ee
3 changed files with 12 additions and 4 deletions

View File

@ -52,6 +52,9 @@
},
"form": {
"amount": "Betrag",
"your_amount": "Dein Betrag",
"current_balance": "aktueller Kontostand",
"new_balance": "neuer Kontostand",
"at": "am",
"cancel": "Abbrechen",
"close": "schließen",

View File

@ -52,6 +52,9 @@
},
"form": {
"amount": "Amount",
"your_amount": "Your amount",
"current_balance": "current balance",
"new_balance": "new balance",
"at": "at",
"cancel": "Cancel",
"close": "Close",

View File

@ -36,25 +36,27 @@
<b-container class="bv-example-row mt-3 gray-background p-2">
<b-row>
<b-col></b-col>
<b-col>aktueller Kontostand</b-col>
<b-col>{{ $t('form.current_balance') }}</b-col>
<b-col>{{ $n(balance, 'decimal') }}</b-col>
</b-row>
<b-row>
<b-col></b-col>
<b-col><strong>Dein Betrag</strong></b-col>
<b-col>
<strong>{{ $t('form.your_amount') }}</strong>
</b-col>
<b-col>
<strong>- {{ $n(amount, 'decimal') }}</strong>
</b-col>
</b-row>
<b-row>
<b-col></b-col>
<b-col>Vergänglichkeit</b-col>
<b-col>{{ $t('decay.decay') }}</b-col>
<b-col style="border-bottom: double">- {{ $n(decay, 'decimal') }}</b-col>
</b-row>
<b-row>
<b-col></b-col>
<b-col>neuer Kontostand</b-col>
<b-col>{{ $t('form.new_balance') }}</b-col>
<b-col>~ {{ $n(balance - amount - decay, 'decimal') }}</b-col>
</b-row>
</b-container>