en_US.js 701 B

12345678910111213141516171819
  1. import { APP_NAME } from '@/config/app.js'
  2. export default {
  3. title: 'Login',
  4. appTitle: APP_NAME, // Keep backward compatibility, but recommend using t('common.app.fullName')
  5. welcome: 'Welcome',
  6. phonePlaceholder: 'Enter phone number',
  7. passwordPlaceholder: 'Enter password',
  8. loginButton: 'Login',
  9. phoneError: 'Please enter a valid phone number',
  10. passwordError: 'Password must be at least 6 characters',
  11. loginSuccess: 'Login successful',
  12. loggingIn: 'Logging in...',
  13. agreePrefix: 'I have read and agree to',
  14. userAgreement: 'User Agreement',
  15. and: 'and',
  16. privacyPolicy: 'Privacy Agreement',
  17. agreementError: 'Please read and agree to the User Agreement and Privacy Agreement'
  18. }