From e2217bc762becf39e69150fae94cf3a5bf62234e Mon Sep 17 00:00:00 2001 From: random-anon333 Date: Mon, 16 Mar 2026 16:32:02 -0600 Subject: [PATCH 1/2] Replace 'donate with stripe' with 'donate with card' Made-with: Cursor --- config/text.js | 2 +- scripts/pay-methods/fiat.js | 2 +- scripts/pay-methods/preferred.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/text.js b/config/text.js index c201b15..2b60c10 100644 --- a/config/text.js +++ b/config/text.js @@ -26,7 +26,7 @@ window.APP_TEXT = { stripe: { title: 'card (stripe)', description: '', - button: 'donate with stripe', + button: 'donate with card', }, }, diff --git a/scripts/pay-methods/fiat.js b/scripts/pay-methods/fiat.js index 9a206ca..fa85f8f 100644 --- a/scripts/pay-methods/fiat.js +++ b/scripts/pay-methods/fiat.js @@ -50,7 +50,7 @@ var stripeActions = stripeBlock.querySelector('#fiat-stripe-actions'); if (stripeLink) { - var btnLabel = get(text, 'fiat.stripe.button') || 'donate with stripe'; + var btnLabel = get(text, 'fiat.stripe.button') || 'donate with card'; var btn = document.createElement('a'); btn.href = stripeLink; btn.target = '_blank'; diff --git a/scripts/pay-methods/preferred.js b/scripts/pay-methods/preferred.js index d9c7514..f7568b4 100644 --- a/scripts/pay-methods/preferred.js +++ b/scripts/pay-methods/preferred.js @@ -27,7 +27,7 @@ if (bitcoinLabel === undefined) bitcoinLabel = 'bitcoin'; var stripeLink = (config && config.fiat && config.fiat.stripe && config.fiat.stripe.link) ? config.fiat.stripe.link : ''; - var stripeBtnLabel = get(text, 'fiat.stripe.button') || 'donate with stripe'; + var stripeBtnLabel = get(text, 'fiat.stripe.button') || 'donate with card'; var bitcoinAddr = (config && config.crypto && config.crypto.addresses && config.crypto.addresses.bitcoin) ? config.crypto.addresses.bitcoin From 172ee67ff3c9e7a602db1ff118fc027c6b9aad3c Mon Sep 17 00:00:00 2001 From: random-anon333 Date: Mon, 16 Mar 2026 16:49:09 -0600 Subject: [PATCH 2/2] Change button label from 'donate with card' to 'donate with cash' Made-with: Cursor --- config/text.js | 2 +- scripts/pay-methods/fiat.js | 4 ++-- scripts/pay-methods/preferred.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/text.js b/config/text.js index 2b60c10..2a86040 100644 --- a/config/text.js +++ b/config/text.js @@ -26,7 +26,7 @@ window.APP_TEXT = { stripe: { title: 'card (stripe)', description: '', - button: 'donate with card', + button: 'donate with cash', }, }, diff --git a/scripts/pay-methods/fiat.js b/scripts/pay-methods/fiat.js index fa85f8f..dfc8ca2 100644 --- a/scripts/pay-methods/fiat.js +++ b/scripts/pay-methods/fiat.js @@ -20,7 +20,7 @@ var title = get(text, 'fiat.title'); if (title === undefined) title = 'donate with fiat'; var description = get(text, 'fiat.description'); - if (description === undefined) description = 'donate with card or other fiat options.'; + if (description === undefined) description = 'donate with cash or other fiat options.'; section.innerHTML = '
' + @@ -50,7 +50,7 @@ var stripeActions = stripeBlock.querySelector('#fiat-stripe-actions'); if (stripeLink) { - var btnLabel = get(text, 'fiat.stripe.button') || 'donate with card'; + var btnLabel = get(text, 'fiat.stripe.button') || 'donate with cash'; var btn = document.createElement('a'); btn.href = stripeLink; btn.target = '_blank'; diff --git a/scripts/pay-methods/preferred.js b/scripts/pay-methods/preferred.js index f7568b4..5f947cd 100644 --- a/scripts/pay-methods/preferred.js +++ b/scripts/pay-methods/preferred.js @@ -27,7 +27,7 @@ if (bitcoinLabel === undefined) bitcoinLabel = 'bitcoin'; var stripeLink = (config && config.fiat && config.fiat.stripe && config.fiat.stripe.link) ? config.fiat.stripe.link : ''; - var stripeBtnLabel = get(text, 'fiat.stripe.button') || 'donate with card'; + var stripeBtnLabel = get(text, 'fiat.stripe.button') || 'donate with cash'; var bitcoinAddr = (config && config.crypto && config.crypto.addresses && config.crypto.addresses.bitcoin) ? config.crypto.addresses.bitcoin