forms/migrate_billing.rb 🔗
@@ -23,7 +23,7 @@ field(
},
{
value: "mail",
- label: "Mail or eTransfer"
+ label: "Mail or Interac e-Transfer"
}
]
)
Stephen Paul Weber created
In case you've been living under a rock and don't know what an eTransfer is.
forms/migrate_billing.rb | 2 +-
forms/registration/activate.rb | 2 +-
lib/alt_top_up_form.rb | 4 ++--
lib/registration.rb | 4 ++--
sgx_jmp.rb | 2 +-
5 files changed, 7 insertions(+), 7 deletions(-)
@@ -23,7 +23,7 @@ field(
},
{
value: "mail",
- label: "Mail or eTransfer"
+ label: "Mail or Interac e-Transfer"
}
]
)
@@ -28,7 +28,7 @@ field(
},
{
value: "mail",
- label: "Mail or eTransfer"
+ label: "Mail or Interac e-Transfer"
}
]
)
@@ -22,7 +22,7 @@ class AltTopUpForm
form.title = "Buy Account Credit"
form.instructions =
"Besides credit cards, we support payment by Bitcoin, postal mail, " \
- "or in Canada by Interac eTransfer."
+ "or in Canada by Interac e-Transfer."
form.fields = fields.to_a
form
@@ -66,7 +66,7 @@ class AltTopUpForm
IS_CAD = [{
var: "adr",
type: "fixed",
- label: "Interac eTransfer Address",
+ label: "Interac e-Transfer Address",
description: "Please include your Jabber ID in the note",
value: CONFIG[:interac]
}].freeze
@@ -379,11 +379,11 @@ class Registration
def form
form = Blather::Stanza::X.new(:result)
- form.title = "Activate by Mail or eTransfer"
+ form.title = "Activate by Mail or Interac e-Transfer"
form.instructions =
"Activate your account by sending at least " \
"$#{CONFIG[:activation_amount]}\nWe support payment by " \
- "postal mail or, in Canada, by Interac eTransfer.\n\n" \
+ "postal mail or, in Canada, by Interac e-Transfer.\n\n" \
"You will receive a notification when your payment is complete." \
"#{@final_message}"
@@ -562,7 +562,7 @@ Command.new(
Command.new(
"alt top up",
- "Buy Account Credit by Bitcoin, Mail, or Interac eTransfer",
+ "Buy Account Credit by Bitcoin, Mail, or Interac e-Transfer",
list_for: ->(customer:, **) { !!customer&.currency }
) {
Command.customer.then { |customer|