From 96a2579e0ec0da9edc4fae07d1e62134d75d973f Mon Sep 17 00:00:00 2001 From: Snowteamer <64228468+snowteamer@users.noreply.github.com> Date: Thu, 18 Jan 2024 18:07:09 +0100 Subject: [PATCH] Add Lightning Address payment method (#1809) * Add Lightning Address payment method * Use L() for payment method names --- .../views/containers/contributions/PaymentMethods.vue | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/frontend/views/containers/contributions/PaymentMethods.vue b/frontend/views/containers/contributions/PaymentMethods.vue index 9a403185e9..3384b606fe 100644 --- a/frontend/views/containers/contributions/PaymentMethods.vue +++ b/frontend/views/containers/contributions/PaymentMethods.vue @@ -54,10 +54,11 @@ export default ({ data: () => ({ config: { options: { - // key to store on state and corresponding translation (if needed) - bitcoin: 'Bitcoin', - paypal: 'Paypal', - venmo: 'Venmo', + // Key to store on the state and corresponding translation. + bitcoin: L('Bitcoin'), + lightning: L('Lightning'), + paypal: L('Paypal'), + venmo: L('Venmo'), other: L('Other') } },