add locales for transaction link information

This commit is contained in:
ogerly 2022-03-17 14:20:53 +01:00
parent b7825ea72b
commit d046dbc7a6
3 changed files with 21 additions and 7 deletions

View File

@ -101,7 +101,12 @@
"links_count": "Aktive Links",
"links_sum": "Summe deiner versendeten Gradidos",
"not-copied": "Konnte den Link nicht kopieren: {err}",
"sentence_1": "Wähle einen Betrag aus, welchen du per Link versenden möchtest. Du kannst auch noch eine Nachricht eintragen. Beim Klick „jetzt generieren“ wird ein Link erstellt, den du versenden kannst."
"sentence_1": "Wähle einen Betrag aus, welchen du per Link versenden möchtest. Du kannst auch noch eine Nachricht eintragen. Beim Klick „jetzt generieren“ wird ein Link erstellt, den du versenden kannst.",
"redeem":"Einlösen",
"no-account":"Du hast noch kein Gradido Konto",
"to-register":"Registriere ein neues Konto",
"has-account":"Du hast einen Gradido Konto",
"to-login":"Log dich ein"
},
"gdt": {
"calculation": "Berechnung der GradidoTransform",

View File

@ -101,7 +101,12 @@
"links_count": "Active links",
"links_sum": "Total of your sent Gradidos",
"not-copied": "Could not copy link: {err}",
"sentence_1": "Select an amount that you would like to send via link. You can also enter a message. Click 'Generate now' to create a link that you can share."
"sentence_1": "Select an amount that you would like to send via link. You can also enter a message. Click 'Generate now' to create a link that you can share.",
"redeem": "Redeem",
"no-account": "You don't have a Gradido account yet",
"to-register": "Register a new account",
"has-account": "You have a Gradido account",
"to-login": "Log in"
},
"gdt": {
"calculation": "Calculation of GradidoTransform",

View File

@ -14,16 +14,20 @@
<div>
<b-jumbotron>
<div class="mb-6"><h2>Einlösen</h2></div>
<div class="mb-6">
<h2>{{ $t('gdd_per_link.redeem') }}</h2>
</div>
<b-row>
<b-col col sm="12" md="6">
<p>Du hast noch kein Gradido Konto</p>
<b-button variant="primary" to="/register">Registriere ein neues Konto</b-button>
<p>{{ $t('gdd_per_link.no-account') }}</p>
<b-button variant="primary" to="/register">
{{ $t('gdd_per_link.to-register') }}
</b-button>
</b-col>
<b-col sm="12" md="6" class="mt-xs-6 mt-sm-6 mt-md-0">
<p>Du hast einen Gradido Konto</p>
<b-button variant="info" to="/login">Log dich ein</b-button>
<p>{{ $t('gdd_per_link.has-account') }}</p>
<b-button variant="info" to="/login">{{ $t('gdd_per_link.to-login') }}</b-button>
</b-col>
</b-row>
</b-jumbotron>