diff --git a/forms/admin_add_invites.rb b/forms/admin_add_invites.rb index dd28687f0f9a298d9c99eea7240186f501fd655a..ab6dc66d5a3d0457d4a5bc36b8ca14ecf5e13b0a 100644 --- a/forms/admin_add_invites.rb +++ b/forms/admin_add_invites.rb @@ -1,10 +1,10 @@ form! -instructions "Add Invites" +instructions "Add Referrals" field( var: "to_add", type: "text-single", datatype: "xs:integer", - label: "How many invites to add", + label: "How many referral codes to add", value: "0" ) diff --git a/forms/admin_menu.rb b/forms/admin_menu.rb index 8623553d7ac036747ef2f4acd833a7c94459e5a7..2d46719ec9fe711110add8316e25e7f84da8a368 100644 --- a/forms/admin_menu.rb +++ b/forms/admin_menu.rb @@ -22,7 +22,7 @@ field( { value: "undo", label: "Undo" }, { value: "reset_declines", label: "Reset Declines" }, { value: "set_trust_level", label: "Set Trust Level" }, - { value: "add_invites", label: "Add Invites" }, + { value: "add_invites", label: "Add Referral Codes" }, { value: "number_change", label: "Number Change" }, { value: "add_transaction", label: "Add Transaction" } ] diff --git a/forms/registration/activate.rb b/forms/registration/activate.rb index 9b788436ca8e7405d29401b808d9a12ab9427aae..cbd8e542190bce3309fc20067c9abc4bb97cea62 100644 --- a/forms/registration/activate.rb +++ b/forms/registration/activate.rb @@ -4,7 +4,7 @@ title "Activate JMP" center = " (#{@rate_center})" if @rate_center instructions <<~I You've selected #{@tel}#{center} as your JMP number. - To activate your account, you can either deposit $#{CONFIG[:activation_amount]} to your balance or enter your invite code if you have one. + To activate your account, you can either deposit $#{CONFIG[:activation_amount]} to your balance or enter your referral code if you have one. (If you'd like to pay in a cryptocurrency other than Bitcoin, currently we recommend using a service like simpleswap.io, morphtoken.com, changenow.io, or godex.io. Manual payment via Bitcoin Cash is also available if you contact support.) I @@ -24,7 +24,7 @@ field( }, { value: "code", - label: "Invite Code" + label: "Referral Code" }, { value: "mail", diff --git a/sgx_jmp.rb b/sgx_jmp.rb index 789986001a7c9a9a2df6c8a4a739581644db6e2c..78f498c0c4167c5bb66624793b6ef628e2c38102 100644 --- a/sgx_jmp.rb +++ b/sgx_jmp.rb @@ -680,11 +680,14 @@ Command.new( ) { Command.customer.then(&:unused_invites).then do |invites| if invites.empty? - Command.finish("You have no more invites right now, try again later.") + Command.finish( + "You have no more referral codes right now, " \ + "try again later." + ) else Command.finish do |reply| reply.form.type = :result - reply.form.title = "Unused Invite Codes" + reply.form.title = "Unused Referral Codes" reply.form.instructions = "Each of these codes is single use and gives the person using " \ "them a free month of JMP service. You will receive credit " \