File size: 1,113 Bytes
98fbc6d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import type { TranslationStrings } from '../types';

const register: TranslationStrings = {
  'register.passwordMismatch': 'Passwords do not match',
  'register.passwordTooShort': 'Password must be at least 8 characters',
  'register.failed': 'Registration failed',
  'register.getStarted': 'Get Started',
  'register.subtitle': 'Create an account and start planning your dream trips.',
  'register.feature1': 'Unlimited trip plans',
  'register.feature2': 'Interactive map view',
  'register.feature3': 'Manage places and categories',
  'register.feature4': 'Track reservations',
  'register.feature5': 'Create packing lists',
  'register.feature6': 'Store photos and files',
  'register.createAccount': 'Create Account',
  'register.startPlanning': 'Start your trip planning',
  'register.minChars': 'Min. 6 characters',
  'register.confirmPassword': 'Confirm Password',
  'register.repeatPassword': 'Repeat password',
  'register.registering': 'Registering...',
  'register.register': 'Register',
  'register.hasAccount': 'Already have an account?',
  'register.signIn': 'Sign In',
};
export default register;