@@ -32,9 +32,8 @@ export default {
RedeemInformation,
},
props: {
- user: { type: Object, required: true },
- amount: { type: String, required: true },
- memo: { type: String, required: true, default: '' },
+ linkData: { type: Object, required: true },
+ isContributionLink: { type: Boolean, default: false },
},
computed: {
login() {
diff --git a/frontend/src/locales/de.json b/frontend/src/locales/de.json
index dd76dddf5..c16ed94b1 100644
--- a/frontend/src/locales/de.json
+++ b/frontend/src/locales/de.json
@@ -271,6 +271,9 @@
"transaction-link": {
"send_you": "sendet dir"
},
+ "contribution-link": {
+ "thanksYouWith":"dankt dir mit"
+ },
"via_link": "über einen Link",
"welcome": "Willkommen",
"WelcomeBy": "bei {name}"
diff --git a/frontend/src/locales/en.json b/frontend/src/locales/en.json
index e5ebbcb2c..403273633 100644
--- a/frontend/src/locales/en.json
+++ b/frontend/src/locales/en.json
@@ -271,6 +271,9 @@
"transaction-link": {
"send_you": "wants to send you"
},
+ "contribution-link": {
+ "thanksYouWith":"thanks you with"
+ },
"via_link": "via Link",
"welcome": "Welcome",
"WelcomeBy": "by {name}"
diff --git a/frontend/src/pages/TransactionLink.vue b/frontend/src/pages/TransactionLink.vue
index 5fc20326e..8bf095240 100644
--- a/frontend/src/pages/TransactionLink.vue
+++ b/frontend/src/pages/TransactionLink.vue
@@ -1,10 +1,9 @@