-
-
Notifications
You must be signed in to change notification settings - Fork 407
Expand file tree
/
Copy pathesES.tsx
More file actions
41 lines (35 loc) · 1.07 KB
/
esES.tsx
File metadata and controls
41 lines (35 loc) · 1.07 KB
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
import type { LocaleText } from '../AppProvider';
import { getLocalization } from './getLocalization';
const esESLabels: Partial<LocaleText> = {
// Account
accountSignInLabel: 'Iniciar sesión',
accountSignOutLabel: 'Cerrar sesión',
// AccountPreview
accountPreviewTitle: 'Cuenta',
accountPreviewIconButtonLabel: 'Usuario actual',
// SignInPage
signInTitle: 'Iniciar sesión',
signInSubtitle: 'Bienvenido/a, inicia sesión para continuar',
signInRememberMe: 'Recuérdame',
oauthSignInTitle: 'Inicia sesión con OAuth',
passkeySignInTitle: 'Inicia sesión con Clave de acceso',
magicLinkSignInTitle: 'Inicia sesión con Magic Link',
// Common authentication labels
email: 'Correo electrónico',
password: 'Contraseña',
username: 'Nombre de usuario',
passkey: 'Clave de acceso',
// Common action labels
save: 'Guardar',
cancel: 'Cancelar',
ok: 'Aceptar',
or: 'O',
to: 'A',
with: 'Con',
close: 'Cerrar',
delete: 'Eliminar',
alert: 'Alerta',
confirm: 'Confirmar',
loading: 'Cargando...',
};
export default getLocalization(esESLabels);