-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi18n.ts
100 lines (94 loc) · 3.64 KB
/
i18n.ts
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
import { I18n } from 'i18n-js';
import { getLocales, useLocales } from 'expo-localization';
import { createContext } from 'react';
const translations = {
en: {
takePhoto: 'TAKE PHOTO',
submit: 'SUBMIT',
hello: 'Hello',
signOut: 'SIGN OUT',
user: 'User',
harvest: 'Harvest',
signInWarning: 'You need to sign in to submit data.',
goToUser: 'GO TO USER TAB',
selectGarden: 'Select a garden',
selectCrop: 'Select a crop',
participation: 'Participation',
logParticipation: 'LOG PARTICIPATION',
participationLogged: 'Participation logged',
totalToday: 'Total today',
startHarvest: 'START HARVESTING',
back: 'BACK',
optional: 'optional',
signIn: 'Login',
switchToSignUp: 'Register',
switchToSignIn: 'Login',
or: 'or',
signUp: 'Register',
firstNameLength: 'First Name must be between 2 and 50 characters.',
lastNameLength: 'Last Name must be between 2 and 50 characters.',
invalidEmail: 'Invalid email format.',
invalidPassword:
'Password must be between 12 and 50 characters and contain at least 1 upper case letter, 1 lower case letter, 1 number, and 1 special character.',
emailAlreadyRegistered: 'Email already registered.',
invalidCredential: 'Invalid email or password. Please try again.',
firstName: 'First Name',
lastName: 'Last Name',
email: 'Email',
password: 'Password',
resetPassword: 'Request password reset',
qForgotPassword: 'Forgot your password?',
resetEmailSent:
'If we have an account with that email, a password reset email will be sent. Don`t forget to check your spam folder!',
},
es: {
takePhoto: 'TOMAR FOTO',
submit: 'ENTREGAR',
hello: 'Hola',
signOut: 'DESCONECTAR',
user: 'Usuario',
harvest: 'Cosechar',
signInWarning: 'Debes iniciar sesión para enviar datos.',
goToUser: 'IR A LA PESTAÑA DE USUARIO',
selectGarden: 'Selecciona un jardín',
selectCrop: 'Seleccione un cultivo',
participation: 'Participación',
logParticipation: 'REGISTRAR PARTICIPACIÓN',
participationLogged: 'Participación registrada',
totalToday: 'Total hoy',
startHarvest: 'EMPEZAR A COSECHAR',
back: 'REGRESA',
optional: 'opcional',
signIn: 'Iniciar sesión',
switchToSignUp: 'Inscribirse',
switchToSignIn: 'Iniciar sesión',
or: 'o',
signup: 'Inscribirse',
firstNameLength: 'El nombre debe tener entre 2 y 50 caracteres.',
lastNameLength: 'El apellido debe tener entre 2 y 50 caracteres.',
invalidEmail: 'Formato de correo electrónico no válido.',
invalidPassword:
'La contraseña debe tener entre 12 y 50 caracteres y contener al menos 1 letra mayúscula, 1 letra minúscula, 1 número y 1 carácter especial.',
emailAlreadyRegistered: 'Correo electrónico ya registrado.',
invalidCredential:
'Correo electrónico o contraseña no válidos. Por favor, inténtelo de nuevo.',
firstName: 'Nombre de pila',
lastName: 'Apellido',
email: 'Correo electrónico',
password: 'Contraseña',
resetPassword: 'Solicitar cambio de contraseña',
qForgotPassword: '¿Olvidaste tu contraseña?',
resetEmailSent:
'Si tenemos una cuenta con ese correo electrónico, se enviará un correo electrónico para restablecer la contraseña. ¡No olvides revisar tu carpeta de correo no deseado!',
},
};
const i18n = new I18n(translations);
i18n.enableFallback = true;
i18n.locale = getLocales()[0].languageTag ?? 'en';
export const i18nContext = createContext(i18n);
export function useI18n() {
const i18n = new I18n(translations);
i18n.enableFallback = true;
i18n.locale = useLocales()[0].languageTag ?? 'en';
return i18n;
}