Changed 'Invite' to 'Referral' where it displays ot the end user.

root21 created

Change summary

lib/registration.rb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

lib/registration.rb 🔗

@@ -331,7 +331,7 @@ class Registration
 			FIELDS = [{
 				var: "code",
 				type: "text-single",
-				label: "Your invite code",
+				label: "Your referral code",
 				required: true
 			}].freeze
 
@@ -344,7 +344,7 @@ class Registration
 			def add_form(reply)
 				form = reply.form
 				form.type = :form
-				form.title = "Enter Invite Code"
+				form.title = "Enter Referral Code"
 				form.instructions = @error if @error
 				form.fields = FIELDS
 			end