1
|
|
|
// translations for Spanish |
2
|
|
|
|
3
|
|
|
export default { |
4
|
|
|
content: { |
5
|
|
|
words: { |
6
|
|
|
animation: "animación", |
7
|
|
|
fade: "descolorarse", |
8
|
|
|
bounce: "rebotar", |
9
|
|
|
submit: "enviar", |
10
|
|
|
reset: "Reiniciar", |
11
|
|
|
continue: "continuar", |
12
|
|
|
proceed: "proceder", |
13
|
|
|
dismiss: "despedir", |
14
|
|
|
source_code: "Código fuente" |
15
|
|
|
}, |
16
|
|
|
titles: { |
17
|
|
|
method_usage: "Usage as a method", |
18
|
|
|
directive_usage: "Usage as a directive", |
19
|
|
|
confirmation_types: "Confirmation types", |
20
|
|
|
}, |
21
|
|
|
descriptions: { |
22
|
|
|
confirmation_types: { |
23
|
|
|
1: "Sometimes, you may want to be more strict by making sure a user really wants to proceed.", |
24
|
|
|
2: "The SOFT and HARD confirmation dialogs helps with that." |
25
|
|
|
}, |
26
|
|
|
}, |
27
|
|
|
examples: { |
28
|
|
|
method_usage: { |
29
|
|
|
1: "Alert Dialog - one button", |
30
|
|
|
2: "Html Dialog - style/format content", |
31
|
|
|
3: "Basic confirm - close instantly", |
32
|
|
|
4: "Loading Dialog - Useful with ajax", |
33
|
|
|
5: "Reversed Dialog - switch buttons", |
34
|
|
|
6: "Fade Dialog - Animation", |
35
|
|
|
7: "Bounce Dialog - Animation" |
36
|
|
|
}, |
37
|
|
|
directive_usage: { |
38
|
|
|
1: "Give it a string", |
39
|
|
|
2: "Go to example.com", |
40
|
|
|
3: "Give it an object v-confirm=\"messageAndCallback\"" |
41
|
|
|
}, |
42
|
|
|
confirmation_types: { |
43
|
|
|
1: "Soft confirm - multiple clicks required", |
44
|
|
|
2: "Hard confirm - verification text required" |
45
|
|
|
} |
46
|
|
|
} |
47
|
|
|
}, |
48
|
|
|
|
49
|
|
|
messages: { |
50
|
|
|
alert: 'Este es un cuadro de diálogo de alerta. Haga clic en el botón de abajo para cerrar.', |
51
|
|
|
html: `This dialog has <b class="dg-highlight-1">HTML</b> enabled. Click the button below to close.`, |
52
|
|
|
basic: 'Este es un diálogo de confirmación básico. Al hacer clic en cualquiera de los botones se descarta el cuadro de diálogo al instante', |
53
|
|
|
soft: 'Este es un diálogo de confirmación suave. Se necesitan varios clics para continuar.', |
54
|
|
|
hard: `This is a hard confirmation dialog. User\'s input must match <span class="dg-highlight-1">verification</span> <span class="dg-highlight-1">text</span> in order to proceed.`, |
55
|
|
|
loading: `Este es un diálogo de carga. El cargador se iniciará una vez que haga clic en el botón Continuar`, |
56
|
|
|
reverse: `El botón izquierdo es el botón Continuar en este cuadro de diálogo. Haga clic para tener una sensación de los botones de reversa`, |
57
|
|
|
click_continue: `Has hecho clic en continuar`, |
58
|
|
|
click_cancel: `Cerrado porque se hizo clic en cancelar`, |
59
|
|
|
loading_completed: `Si me ves, el cargador ha completado`, |
60
|
|
|
loading_canceled: `Hizo clic en cancelar, por lo que no hubo carga`, |
61
|
|
|
directive_object: "This dialog was also triggered using a v-confirm directive. It has both OK and CANCEL callback", |
62
|
|
|
directive_string: 'This is a message.', |
63
|
|
|
directive_link: 'This will take you to "http://example.com". Proceed with caution', |
64
|
|
|
form_reset: 'Changes would be discarded. Reset this form?', |
65
|
|
|
form_submit: 'Submit this form?', |
66
|
|
|
empty_name: "The name field is empty" |
67
|
|
|
}, |
68
|
|
|
placeholders: { |
69
|
|
|
your_name: "Tu nombre" |
70
|
|
|
} |
71
|
|
|
} |