Change 'Sign up' to 'Create account'
This commit is contained in:
parent
68086fbf0b
commit
d98574a351
7 changed files with 14 additions and 14 deletions
|
|
@ -81,7 +81,7 @@ en:
|
|||
shared:
|
||||
links:
|
||||
sign_in: 'Sign in'
|
||||
sign_up: 'Sign up'
|
||||
sign_up: 'Create account'
|
||||
sign_up_closed: 'Open signups are closed at this time.'
|
||||
forgot_your_password: 'Forgot your password?'
|
||||
receive_confirmation: "Didn't receive confirmation instructions?"
|
||||
|
|
|
|||
|
|
@ -1137,7 +1137,7 @@ en:
|
|||
enter_username: "Pick a username (only letters, numbers, and underscores)"
|
||||
enter_password: "Enter a password (six character minimum)"
|
||||
enter_password_again: "Enter the same password as before"
|
||||
sign_up: "Sign up"
|
||||
sign_up: "Create account"
|
||||
email: "Email"
|
||||
username: "Username"
|
||||
password: "Password"
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ Feature: Invitations
|
|||
Given I have been invited by an admin
|
||||
And I am on my acceptance form page
|
||||
And I fill in the new user form
|
||||
And I press "Sign up"
|
||||
And I press "Create account"
|
||||
Then I should be on the getting started page
|
||||
And I should see "Well, hello there!"
|
||||
And I fill in the following:
|
||||
|
|
@ -23,7 +23,7 @@ Feature: Invitations
|
|||
Given I have been invited by "alice@alice.alice"
|
||||
And I am on my acceptance form page
|
||||
And I fill in the new user form
|
||||
And I press "Sign up"
|
||||
And I press "Create account"
|
||||
Then I should be on the getting started page
|
||||
And I should see "Well, hello there!"
|
||||
And I should be able to friend "alice@alice.alice"
|
||||
|
|
|
|||
|
|
@ -66,21 +66,21 @@ Feature: new user registration
|
|||
And I go to the new user registration page
|
||||
And I fill in the following:
|
||||
| user_username | $%&(/&%$&/=)(/ |
|
||||
And I press "Sign up"
|
||||
And I press "Create account"
|
||||
Then I should not be able to sign up
|
||||
And I should have a validation error on "user_username, user_password, user_email"
|
||||
|
||||
When I fill in the following:
|
||||
| user_username | valid_user |
|
||||
| user_email | this is not a valid email $%&/()( |
|
||||
And I press "Sign up"
|
||||
And I press "Create account"
|
||||
Then I should not be able to sign up
|
||||
And I should have a validation error on "user_password, user_email"
|
||||
|
||||
When I fill in the following:
|
||||
| user_email | valid@email.com |
|
||||
| user_password | 1 |
|
||||
And I press "Sign up"
|
||||
And I press "Create account"
|
||||
Then I should not be able to sign up
|
||||
And I should have a validation error on "user_password, user_password_confirmation"
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ Feature: editing the getting started in the mobile view
|
|||
|
||||
Background:
|
||||
Given I am on the login page
|
||||
When I follow "Sign up" within ".navbar"
|
||||
When I follow "Create account" within ".navbar"
|
||||
And I fill in the new user form
|
||||
And I submit the form
|
||||
Then I should be on the getting started page
|
||||
|
|
|
|||
|
|
@ -9,6 +9,6 @@ Feature: Invitations
|
|||
Given I have been invited by "alice@alice.alice"
|
||||
And I am on my acceptance form page
|
||||
When I fill in the new user form
|
||||
And I press "Sign up"
|
||||
And I press "Create account"
|
||||
Then I should see the "welcome to diaspora" message
|
||||
And I should be able to friend "alice@alice.alice"
|
||||
|
|
|
|||
|
|
@ -6,31 +6,31 @@ Feature: New user registration
|
|||
|
||||
Background:
|
||||
Given I am on the login page
|
||||
And I follow "Sign up" within "#main-nav"
|
||||
And I follow "Create account" within "#main-nav"
|
||||
|
||||
Scenario: user signs up and goes to getting started
|
||||
When I fill in the new user form
|
||||
And I press "Sign up"
|
||||
And I press "Create account"
|
||||
Then I should be on the getting started page
|
||||
And I should see the 'getting started' contents
|
||||
|
||||
Scenario: user fills in bogus data - client side validation
|
||||
When I fill in the following:
|
||||
| user_username | $%&(/&%$&/=)(/ |
|
||||
And I press "Sign up"
|
||||
And I press "Create account"
|
||||
Then I should not be able to sign up
|
||||
And I should have a validation error on "user_username, user_password, user_email"
|
||||
|
||||
When I fill in the following:
|
||||
| user_username | valid_user |
|
||||
| user_email | this is not a valid email $%&/()( |
|
||||
And I press "Sign up"
|
||||
And I press "Create account"
|
||||
Then I should not be able to sign up
|
||||
And I should have a validation error on "user_password, user_email"
|
||||
|
||||
When I fill in the following:
|
||||
| user_email | valid@email.com |
|
||||
| user_password | 1 |
|
||||
And I press "Sign up"
|
||||
And I press "Create account"
|
||||
Then I should not be able to sign up
|
||||
And I should have a validation error on "user_password, user_password_confirmation"
|
||||
|
|
|
|||
Loading…
Reference in a new issue