Skip to content
This repository was archived by the owner on Jun 19, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/text.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ window.APP_TEXT = {
stripe: {
title: 'card (stripe)',
description: '',
button: 'donate with stripe',
button: 'donate with cash',
},
},

Expand Down
4 changes: 2 additions & 2 deletions scripts/pay-methods/fiat.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
'<div class="card-header">' +
Expand Down Expand Up @@ -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';
Expand Down
2 changes: 1 addition & 1 deletion scripts/pay-methods/preferred.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading