diff --git a/config/text.js b/config/text.js index c201b15..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 stripe', + button: 'donate with cash', }, }, diff --git a/scripts/pay-methods/fiat.js b/scripts/pay-methods/fiat.js index 9a206ca..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 stripe'; + 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 d9c7514..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 stripe'; + 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