mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
Merge pull request #2158 from gradido/2151-add-hint-to-redeem-link
2151 add hint to redeem link
This commit is contained in:
commit
b6a2516426
@ -105,7 +105,8 @@ describe('TransactionLink', () => {
|
||||
'http://localhost/redeem/c00000000c000000c0000\n' +
|
||||
'Testy transaction-link.send_you 75 Gradido.\n' +
|
||||
'"Katzenauge, Eulenschrei, was verschwunden komm herbei!"\n' +
|
||||
'gdd_per_link.credit-your-gradido gdd_per_link.validUntilDate',
|
||||
'gdd_per_link.credit-your-gradido gdd_per_link.validUntilDate\n' +
|
||||
'gdd_per_link.link-hint',
|
||||
)
|
||||
})
|
||||
it('toasts success message', () => {
|
||||
|
||||
@ -174,6 +174,7 @@
|
||||
"link-copied": "Link wurde in die Zwischenablage kopiert. Du kannst ihn jetzt in eine E-Mail oder Nachricht einfügen.",
|
||||
"link-deleted": "Der Link wurde am {date} gelöscht.",
|
||||
"link-expired": "Der Link ist nicht mehr gültig. Die Gültigkeit ist am {date} abgelaufen.",
|
||||
"link-hint": "Achtung: Jeder kann diesen Link einlösen. Gib ihn bitte nicht weiter!",
|
||||
"link-overview": "Linkübersicht",
|
||||
"links_count": "Aktive Links",
|
||||
"links_sum": "Offene Links und QR-Codes",
|
||||
|
||||
@ -174,6 +174,7 @@
|
||||
"link-copied": "Link has been copied to the clipboard. You can now paste it into an email or message.",
|
||||
"link-deleted": "The link was deleted on {date}.",
|
||||
"link-expired": "The link is no longer valid. The validity expired on {date}.",
|
||||
"link-hint": "Attention: Anyone can redeem this link. Please do not share it!",
|
||||
"link-overview": "Link overview",
|
||||
"links_count": "Active links",
|
||||
"links_sum": "Open links and QR codes",
|
||||
|
||||
@ -174,6 +174,7 @@
|
||||
"link-copied": "El enlace se ha copiado en el portapapeles. Ahora puedes pegarlo en un correo electrónico o mensaje.",
|
||||
"link-deleted": "El enlace se eliminó el {date}.",
|
||||
"link-expired": "El enlace ya no es válido. La validez expiró el {date}.",
|
||||
"link-hint": "Atención: cualquiera puede canjear este enlace. Por favor, no lo transmitan.",
|
||||
"link-overview": "Resumen de enlaces",
|
||||
"links_count": "Enlaces activos",
|
||||
"links_sum": "Enlaces abiertos y códigos QR",
|
||||
|
||||
@ -174,6 +174,7 @@
|
||||
"link-copied": "Le lien a été copié dans le presse-papier. Vous pouvez désormais le coller dans votre email ou votre message.",
|
||||
"link-deleted": "Le lien a été supprimé le on {date}.",
|
||||
"link-expired": "Le lien n´est plus valide. Sa validité a expiré le {date}.",
|
||||
"link-hint": "Attention : tout le monde peut utiliser ce lien. Ne le partage pas, s'il te plaît!",
|
||||
"link-overview": "Aperçu du lien",
|
||||
"links_count": "Liens actifs",
|
||||
"links_sum": "Ouvrir les liens et les QR codes",
|
||||
|
||||
@ -174,6 +174,7 @@
|
||||
"link-copied": "Link werd naar het klembord gekopieerd. Je kunt deze nu in een email of bericht invoegen.",
|
||||
"link-deleted": "De link werd op {date} verwijderd.",
|
||||
"link-expired": "De link is niet meer geldig. De geldigheid is op {date} afgelopen.",
|
||||
"link-hint": "Attentie: Iedereen kan deze link inwisselen. Geef het alsjeblieft niet door!",
|
||||
"link-overview": "Overzicht links",
|
||||
"links_count": "Actieve links",
|
||||
"links_sum": "Open links en QR-Codes",
|
||||
|
||||
@ -30,7 +30,8 @@ ${this.$store.state.firstName} ${this.$t('transaction-link.send_you')} ${this.am
|
||||
"${this.memo}"
|
||||
${this.$t('gdd_per_link.credit-your-gradido')} ${this.$t('gdd_per_link.validUntilDate', {
|
||||
date: this.$d(new Date(this.validUntil), 'short'),
|
||||
})}`,
|
||||
})}
|
||||
${this.$t('gdd_per_link.link-hint')}`,
|
||||
)
|
||||
.then(() => {
|
||||
this.toastSuccess(this.$t('gdd_per_link.link-and-text-copied'))
|
||||
|
||||
@ -283,7 +283,8 @@ describe('Send', () => {
|
||||
'http://localhost/redeem/0123456789\n' +
|
||||
'Testy transaction-link.send_you 56.78 Gradido.\n' +
|
||||
'"Make the best of the link!"\n' +
|
||||
'gdd_per_link.credit-your-gradido gdd_per_link.validUntilDate',
|
||||
'gdd_per_link.credit-your-gradido gdd_per_link.validUntilDate\n' +
|
||||
'gdd_per_link.link-hint',
|
||||
)
|
||||
})
|
||||
it('toasts success message', () => {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user