Blame view

src/locale/lang/es-ES.js 2.71 KB
5bd0f522   梁灏   fixed
1
  import setLang from '../lang';
a5dad1af   梁灏   fixed #1090 & clo...
2
3
  
  const lang = {
068b8c9c   Matias Verdier   Create es-ES.js
4
      i: {
3d50db5b   Sergio Crisostomo   add datePanelLabe...
5
          locale: 'es-ES',
068b8c9c   Matias Verdier   Create es-ES.js
6
7
          select: {
              placeholder: 'Seleccionar',
01b54e30   梁灏   Select support re...
8
9
              noMatch: 'Sin coincidencias',
              loading: 'Cargando'
068b8c9c   Matias Verdier   Create es-ES.js
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
          },
          table: {
              noDataText: 'Sin Datos',
              noFilteredDataText: 'Sin Datos para el filtro',
              confirmFilter: 'Aceptar',
              resetFilter: 'Quitar filtro',
              clearFilter: 'Todos'
          },
          datepicker: {
              selectDate: 'Seleccionar fecha',
              selectTime: 'Seleccionar hora',
              startTime: 'Hora de inicio',
              endTime: 'Hora de fin',
              clear: 'Limpiar',
              ok: 'Aceptar',
3d50db5b   Sergio Crisostomo   add datePanelLabe...
25
              datePanelLabel: '[mmmm] [yyyy]',
068b8c9c   Matias Verdier   Create es-ES.js
26
27
28
29
30
31
32
33
34
35
36
37
38
39
              month: 'Mes',
              month1: 'Enero',
              month2: 'Febrero',
              month3: 'Marzo',
              month4: 'Abril',
              month5: 'Mayo',
              month6: 'Junio',
              month7: 'Julio',
              month8: 'Augosto',
              month9: 'Septiembre',
              month10: 'Octubre',
              month11: 'Noviembre',
              month12: 'Deciembre',
              year: 'Año',
89303674   Sergio Crisostomo   add weekStartDay ...
40
              weekStartDay: '1',
068b8c9c   Matias Verdier   Create es-ES.js
41
              weeks: {
45435023   Patricio Barros   Long weekdays nam...
42
43
44
45
46
47
48
                  sun: 'Dom',
                  mon: 'Lun',
                  tue: 'Mar',
                  wed: 'Mié',
                  thu: 'Jue',
                  fri: 'Vie',
                  sat: 'Sáb'
068b8c9c   Matias Verdier   Create es-ES.js
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
101
              },
              months: {
                  m1: 'Ene',
                  m2: 'Feb',
                  m3: 'Mar',
                  m4: 'Abr',
                  m5: 'May',
                  m6: 'Jun',
                  m7: 'Jul',
                  m8: 'Ago',
                  m9: 'Sep',
                  m10: 'Oct',
                  m11: 'Nov',
                  m12: 'Dic'
              }
          },
          transfer: {
              titles: {
                  source: 'Origen',
                  target: 'Destino'
              },
              filterPlaceholder: 'Buscar aquí',
              notFoundText: 'Sin resultados'
          },
          modal: {
              okText: 'Aceptar',
              cancelText: 'Cancelar'
          },
          poptip: {
              okText: 'Aceptar',
              cancelText: 'Cancelar'
          },
          page: {
              prev: 'Página Anterior',
              next: 'Página Siguiente',
              total: 'Total',
              item: 'Elemento',
              items: 'Elementos',
              prev5: '5 Páginas Anteriores',
              next5: '5 Páginas Siguientes',
              page: '/page',
              goto: 'Ir a',
              p: ''
          },
          rate: {
              star: 'Estrella',
              stars: 'Estrellas'
          },
          tree: {
              emptyText: 'Sin Datos'
          }
      }
  };
a5dad1af   梁灏   fixed #1090 & clo...
102
  
5bd0f522   梁灏   fixed
103
  setLang(lang);
a5dad1af   梁灏   fixed #1090 & clo...
104
  
45435023   Patricio Barros   Long weekdays nam...
105
  export default lang;