| 12345678910111213141516171819 |
- import { APP_NAME } from '@/config/app.js'
- export default {
- title: 'Login',
- appTitle: APP_NAME, // Keep backward compatibility, but recommend using t('common.app.fullName')
- welcome: 'Welcome',
- phonePlaceholder: 'Enter phone number',
- passwordPlaceholder: 'Enter password',
- loginButton: 'Login',
- phoneError: 'Please enter a valid phone number',
- passwordError: 'Password must be at least 6 characters',
- loginSuccess: 'Login successful',
- loggingIn: 'Logging in...',
- agreePrefix: 'I have read and agree to',
- userAgreement: 'User Agreement',
- and: 'and',
- privacyPolicy: 'Privacy Agreement',
- agreementError: 'Please read and agree to the User Agreement and Privacy Agreement'
- }
|