en-US.js 3.19 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
export default {
  'BLOCK_NAME.basic.title': 'Basic form',
  'BLOCK_NAME.basic.description':
    'Form pages are used to collect or verify information to users, and basic forms are common in scenarios where there are fewer data items.',

  'BLOCK_NAME.email.required': 'Please enter your email!',
  'BLOCK_NAME.email.wrong-format': 'The email address is in the wrong format!',
  'BLOCK_NAME.userName.required': 'Please enter your userName!',
  'BLOCK_NAME.password.required': 'Please enter your password!',
  'BLOCK_NAME.password.twice': 'The passwords entered twice do not match!',
  'BLOCK_NAME.strength.msg':
    "Please enter at least 6 characters and don't use passwords that are easy to guess.",
  'BLOCK_NAME.strength.strong': 'Strength: strong',
  'BLOCK_NAME.strength.medium': 'Strength: medium',
  'BLOCK_NAME.strength.short': 'Strength: too short',
  'BLOCK_NAME.confirm-password.required': 'Please confirm your password!',
  'BLOCK_NAME.phone-number.required': 'Please enter your phone number!',
  'BLOCK_NAME.phone-number.wrong-format': 'Malformed phone number!',
  'BLOCK_NAME.verification-code.required': 'Please enter the verification code!',
  'BLOCK_NAME.title.required': 'Please enter a title',
  'BLOCK_NAME.date.required': 'Please select the start and end date',
  'BLOCK_NAME.goal.required': 'Please enter a description of the goal',
  'BLOCK_NAME.standard.required': 'Please enter a metric',

  'BLOCK_NAME.form.get-captcha': 'Get Captcha',
  'BLOCK_NAME.captcha.second': 'sec',
  'BLOCK_NAME.form.optional': ' (optional) ',
  'BLOCK_NAME.form.submit': 'Submit',
  'BLOCK_NAME.form.save': 'Save',
  'BLOCK_NAME.email.placeholder': 'Email',
  'BLOCK_NAME.password.placeholder': 'Password',
  'BLOCK_NAME.confirm-password.placeholder': 'Confirm password',
  'BLOCK_NAME.phone-number.placeholder': 'Phone number',
  'BLOCK_NAME.verification-code.placeholder': 'Verification code',
  'BLOCK_NAME.title.label': 'Title',
  'BLOCK_NAME.title.placeholder': 'Give the target a name',
  'BLOCK_NAME.date.label': 'Start and end date',
  'BLOCK_NAME.placeholder.start': 'Start date',
  'BLOCK_NAME.placeholder.end': 'End date',
  'BLOCK_NAME.goal.label': 'Goal description',
  'BLOCK_NAME.goal.placeholder': 'Please enter your work goals',
  'BLOCK_NAME.standard.label': 'Metrics',
  'BLOCK_NAME.standard.placeholder': 'Please enter a metric',
  'BLOCK_NAME.client.label': 'Client',
  'BLOCK_NAME.label.tooltip': 'Target service object',
  'BLOCK_NAME.client.placeholder':
    'Please describe your customer service, internal customers directly @ Name / job number',
  'BLOCK_NAME.invites.label': 'Inviting critics',
  'BLOCK_NAME.invites.placeholder': 'Please direct @ Name / job number, you can invite up to 5 people',
  'BLOCK_NAME.weight.label': 'Weight',
  'BLOCK_NAME.weight.placeholder': 'Please enter weight',
  'BLOCK_NAME.public.label': 'Target disclosure',
  'BLOCK_NAME.label.help': 'Customers and invitees are shared by default',
  'BLOCK_NAME.radio.public': 'Public',
  'BLOCK_NAME.radio.partially-public': 'Partially public',
  'BLOCK_NAME.radio.private': 'Private',
  'BLOCK_NAME.publicUsers.placeholder': 'Open to',
  'BLOCK_NAME.option.A': 'Colleague A',
  'BLOCK_NAME.option.B': 'Colleague B',
  'BLOCK_NAME.option.C': 'Colleague C',
};