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
| const translation = {
| daysInWeek: {
| Sun: 'Sol',
| Thu: 'Jue',
| Tue: 'Mar',
| Sat: 'Sáb',
| Mon: 'Mon',
| Fri: 'Viernes',
| Wed: 'Miércoles',
| },
| months: {
| August: 'Agosto',
| September: 'Septiembre',
| April: 'Abril',
| February: 'Febrero',
| January: 'Enero',
| November: 'Noviembre',
| October: 'octubre',
| May: 'Mayo',
| June: 'Junio',
| December: 'Diciembre',
| July: 'Julio',
| March: 'Marzo',
| },
| operation: {
| ok: 'De acuerdo',
| pickDate: 'Seleccionar fecha',
| cancel: 'Cancelar',
| now: 'Ahora',
| },
| title: {
| pickTime: 'Elegir hora',
| },
| defaultPlaceholder: 'Elige una hora...',
| }
|
| export default translation
|
|