Commit b164f7c05c110ee03d890642eadf99921d083224

Authored by Aresn
Committed by GitHub
2 parents 64633e8c 068b8c9c

Merge pull request #634 from MatiasVerdier/patch-1

Add spanish support
Showing 1 changed file with 95 additions and 0 deletions   Show diff stats
src/locale/lang/es-ES.js 0 → 100644
  1 +export default {
  2 + i: {
  3 + select: {
  4 + placeholder: 'Seleccionar',
  5 + noMatch: 'Sin coincidencias'
  6 + },
  7 + table: {
  8 + noDataText: 'Sin Datos',
  9 + noFilteredDataText: 'Sin Datos para el filtro',
  10 + confirmFilter: 'Aceptar',
  11 + resetFilter: 'Quitar filtro',
  12 + clearFilter: 'Todos'
  13 + },
  14 + datepicker: {
  15 + selectDate: 'Seleccionar fecha',
  16 + selectTime: 'Seleccionar hora',
  17 + startTime: 'Hora de inicio',
  18 + endTime: 'Hora de fin',
  19 + clear: 'Limpiar',
  20 + ok: 'Aceptar',
  21 + month: 'Mes',
  22 + month1: 'Enero',
  23 + month2: 'Febrero',
  24 + month3: 'Marzo',
  25 + month4: 'Abril',
  26 + month5: 'Mayo',
  27 + month6: 'Junio',
  28 + month7: 'Julio',
  29 + month8: 'Augosto',
  30 + month9: 'Septiembre',
  31 + month10: 'Octubre',
  32 + month11: 'Noviembre',
  33 + month12: 'Deciembre',
  34 + year: 'Año',
  35 + weeks: {
  36 + sun: 'Domingo',
  37 + mon: 'Lunes',
  38 + tue: 'Martes',
  39 + wed: 'Miércoles',
  40 + thu: 'Jueves',
  41 + fri: 'Viernes',
  42 + sat: 'Sábado'
  43 + },
  44 + months: {
  45 + m1: 'Ene',
  46 + m2: 'Feb',
  47 + m3: 'Mar',
  48 + m4: 'Abr',
  49 + m5: 'May',
  50 + m6: 'Jun',
  51 + m7: 'Jul',
  52 + m8: 'Ago',
  53 + m9: 'Sep',
  54 + m10: 'Oct',
  55 + m11: 'Nov',
  56 + m12: 'Dic'
  57 + }
  58 + },
  59 + transfer: {
  60 + titles: {
  61 + source: 'Origen',
  62 + target: 'Destino'
  63 + },
  64 + filterPlaceholder: 'Buscar aquí',
  65 + notFoundText: 'Sin resultados'
  66 + },
  67 + modal: {
  68 + okText: 'Aceptar',
  69 + cancelText: 'Cancelar'
  70 + },
  71 + poptip: {
  72 + okText: 'Aceptar',
  73 + cancelText: 'Cancelar'
  74 + },
  75 + page: {
  76 + prev: 'Página Anterior',
  77 + next: 'Página Siguiente',
  78 + total: 'Total',
  79 + item: 'Elemento',
  80 + items: 'Elementos',
  81 + prev5: '5 Páginas Anteriores',
  82 + next5: '5 Páginas Siguientes',
  83 + page: '/page',
  84 + goto: 'Ir a',
  85 + p: ''
  86 + },
  87 + rate: {
  88 + star: 'Estrella',
  89 + stars: 'Estrellas'
  90 + },
  91 + tree: {
  92 + emptyText: 'Sin Datos'
  93 + }
  94 + }
  95 +};
... ...