tellform/public/modules/users/config/i18n/english.js

75 lines
2.8 KiB
JavaScript
Raw Normal View History

2016-06-16 00:38:22 +00:00
'use strict';
angular.module('users').config(['$translateProvider', function ($translateProvider) {
$translateProvider.translations('en', {
ACCESS_DENIED_TEXT: 'You need to be logged in to access this page',
USERNAME_OR_EMAIL_LABEL: 'Username or Email',
USERNAME_LABEL: 'Username',
2016-06-16 00:38:22 +00:00
PASSWORD_LABEL: 'Password',
CURRENT_PASSWORD_LABEL: 'Current Password',
NEW_PASSWORD_LABEL: 'New Password',
VERIFY_PASSWORD_LABEL: 'Verify Password',
UPDATE_PASSWORD_LABEL: 'Update Password',
FIRST_NAME_LABEL: 'First Name',
LAST_NAME_LABEL: 'Last Name',
LANGUAGE_LABEL: 'Language',
EMAIL_LABEL: 'Email',
2016-08-25 23:33:10 +00:00
SIGNUP_ACCOUNT_LINK: 'Don\'t have an account? Sign up here',
SIGN_IN_ACCOUNT_LINK: 'Already have an account? Sign in here',
SIGNUP_HEADER_TEXT: 'Sign up',
SIGNIN_HEADER_TEXT: 'Sign in',
2016-07-04 21:31:33 +00:00
2016-07-04 21:13:15 +00:00
SIGNUP_ERROR_TEXT: 'Couldn\'t complete registration due to errors',
2016-08-26 01:35:59 +00:00
ENTER_ACCOUNT_EMAIL: 'Enter your account email.',
RESEND_VERIFICATION_EMAIL: 'Resend Verification Email',
SAVE_CHANGES: 'Save Changes',
CANCEL_BTN: 'Cancel',
2016-07-04 21:13:15 +00:00
EDIT_PROFILE: 'Edit your profile',
2016-06-16 00:38:22 +00:00
UPDATE_PROFILE_BTN: 'Update Profile',
PROFILE_SAVE_SUCCESS: 'Profile saved successfully',
PROFILE_SAVE_ERROR: 'Could\'t Save Your Profile.',
CONNECTED_SOCIAL_ACCOUNTS: 'Connected social accounts',
CONNECT_OTHER_SOCIAL_ACCOUNTS: 'Connect other social accounts',
2016-06-16 00:38:22 +00:00
FORGOT_PASSWORD_LINK: 'Forgot your password?',
REVERIFY_ACCOUNT_LINK: 'Resend your verification email',
SIGNIN_BTN: 'Sign in',
SIGNUP_BTN: 'Sign up',
SAVE_PASSWORD_BTN: 'Save Password',
SUCCESS_HEADER: 'Signup Successful',
2016-06-18 07:34:10 +00:00
SUCCESS_TEXT: 'Youve successfully registered an account at TellForm.',
VERIFICATION_EMAIL_SENT: 'Verification Email has been Sent',
VERIFICATION_EMAIL_SENT_TO: 'A verification email has been sent to',
2016-06-16 00:38:22 +00:00
NOT_ACTIVATED_YET: 'But your account is not activated yet',
2016-06-18 07:34:10 +00:00
BEFORE_YOU_CONTINUE: 'Before you continue, make sure to check your email for our verification. If you dont receive it within 24h drop us a line at ',
2016-06-16 00:38:22 +00:00
CHECK_YOUR_EMAIL: 'Check your email and click on the activation link to activate your account. If you have any questions drop us a line at',
CONTINUE: 'Continue',
2016-06-16 00:38:22 +00:00
PASSWORD_RESTORE_HEADER: 'Restore your password',
ENTER_YOUR_EMAIL: 'Enter your account email.',
SUBMIT_BTN: 'Submit',
ASK_FOR_NEW_PASSWORD: 'Ask for new password reset',
PASSWORD_RESET_INVALID: 'Password reset is invalid',
PASSWORD_RESET_SUCCESS: 'Passport successfully reset',
PASSWORD_CHANGE_SUCCESS: 'Passport successfully changed',
RESET_PASSWORD: 'Reset your password',
CHANGE_PASSWORD: 'Change your password',
2016-06-16 00:38:22 +00:00
CONTINUE_TO_LOGIN: 'Continue to login page',
VERIFY_SUCCESS: 'Account successfully activated',
VERIFY_ERROR: 'Verification link is invalid or has expired'
});
$translateProvider.preferredLanguage('en')
.fallbackLanguage('en')
.useSanitizeValueStrategy('escape');
}]);