kendo.messages.es-ES.js 14.2 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 42 43 44 45 46 47 48 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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
/** 
 * Kendo UI v2016.1.112 (http://www.telerik.com/kendo-ui)                                                                                                                                               
 * Copyright 2016 Telerik AD. All rights reserved.                                                                                                                                                      
 *                                                                                                                                                                                                      
 * Kendo UI commercial licenses may be obtained at                                                                                                                                                      
 * http://www.telerik.com/purchase/license-agreement/kendo-ui-complete                                                                                                                                  
 * If you do not own a commercial license, this file shall be governed by the trial license terms.                                                                                                      
                                                                                                                                                                                                       
                                                                                                                                                                                                       
                                                                                                                                                                                                       
                                                                                                                                                                                                       
                                                                                                                                                                                                       
                                                                                                                                                                                                       
                                                                                                                                                                                                       
                                                                                                                                                                                                       
                                                                                                                                                                                                       
                                                                                                                                                                                                       
                                                                                                                                                                                                       
                                                                                                                                                                                                       
                                                                                                                                                                                                       
                                                                                                                                                                                                       
                                                                                                                                                                                                       

*/

(function(f){
    if (typeof define === 'function' && define.amd) {
        define([ "./kendo.core" ], f);
    } else {
        f();
    }
}(function(){
(function ($, undefined) {
/* Filter cell operator messages */

if (kendo.ui.FilterCell) {
kendo.ui.FilterCell.prototype.options.operators =
$.extend(true, kendo.ui.FilterCell.prototype.options.operators,{
  "date": {
    "eq": "Es igual a",
    "gte": "Es posterior o igual a",
    "gt": "Es posterior",
    "lte": "Es anterior o igual a",
    "lt": "Es anterior",
    "neq": "No es igual a"
  },
  "number": {
    "eq": "Es igual a",
    "gte": "Es mayor o igual que",
    "gt": "Es mayor que",
    "lte": "Es menor o igual que",
    "lt": "Es menor que",
    "neq": "No es igual a"
  },
  "string": {
    "endswith": "Termina en",
    "eq": "Es igual a",
    "neq": "No es igual a",
    "startswith": "Comienza con",
    "contains": "Contiene",
    "doesnotcontain": "No contiene"
  },
  "enums": {
    "eq": "Es igual a",
    "neq": "No es igual a"
  }
});
}

/* Filter menu operator messages */

if (kendo.ui.FilterMenu) {
kendo.ui.FilterMenu.prototype.options.operators =
$.extend(true, kendo.ui.FilterMenu.prototype.options.operators,{
  "date": {
    "eq": "Es igual a",
    "gte": "Es posterior o igual a",
    "gt": "Es posterior",
    "lte": "Es anterior o igual a",
    "lt": "Es anterior",
    "neq": "No es igual a"
  },
  "number": {
    "eq": "Es igual a",
    "gte": "Es mayor o igual que",
    "gt": "Es mayor que",
    "lte": "Es menor o igual que",
    "lt": "Es menor que",
    "neq": "No es igual a"
  },
  "string": {
    "endswith": "Termina en",
    "eq": "Es igual a",
    "neq": "No es igual a",
    "startswith": "Comienza con",
    "contains": "Contiene",
    "doesnotcontain": "No contiene"
  },
  "enums": {
    "eq": "Es igual a",
    "neq": "No es igual a"
  }
});
}

/* ColumnMenu messages */

if (kendo.ui.ColumnMenu) {
kendo.ui.ColumnMenu.prototype.options.messages =
$.extend(true, kendo.ui.ColumnMenu.prototype.options.messages,{
  "columns": "Columnas",
  "sortAscending": "Orden ascendente",
  "sortDescending": "Orden descendente",
  "settings": "Configuración de columnas",
  "done": "Hecho",
  "lock": "Bloquear",
  "unlock": "Desbloquear"
});
}

/* RecurrenceEditor messages */

if (kendo.ui.RecurrenceEditor) {
kendo.ui.RecurrenceEditor.prototype.options.messages =
$.extend(true, kendo.ui.RecurrenceEditor.prototype.options.messages,{
  "daily": {
    "interval": "día(s)",
    "repeatEvery": "Repetir cada:"
  },
  "end": {
    "after": "Después",
    "occurrence": "ocurrencia(s)",
    "label": "Fin:",
    "never": "Nunca",
    "on": "En",
    "mobileLabel": "Ends"
  },
  "frequencies": {
    "daily": "Diariamente",
    "monthly": "Mensualmente",
    "never": "Nunca",
    "weekly": "Semanalmente",
    "yearly": "Anualmente"
  },
  "monthly": {
    "day": "Día",
    "interval": "mes(es)",
    "repeatEvery": "Repetir cada:",
    "repeatOn": "Repetir en:"
  },
  "offsetPositions": {
    "first": "Primero",
    "fourth": "Cuarto",
    "last": "Último",
    "second": "Segundo",
    "third": "Tercero"
  },
  "weekly": {
    "repeatEvery": "Repetir cada:",
    "repeatOn": "Repetir en:",
    "interval": "semana(s)"
  },
  "yearly": {
    "of": "de",
    "repeatEvery": "Repetir cada:",
    "repeatOn": "Repetir en:",
    "interval": "año(s)"
  },
  "weekdays": {
    "day": "día",
    "weekday": "día de semana",
    "weekend": "día de fin de semana"
  }
});
}

/* Grid messages */

if (kendo.ui.Grid) {
kendo.ui.Grid.prototype.options.messages =
$.extend(true, kendo.ui.Grid.prototype.options.messages,{
  "commands": {
    "create": "Agregar",
    "destroy": "Eliminar",
    "canceledit": "Cancelar",
    "update": "Actualizar",
    "edit": "Editar",
    "excel": "Export to Excel",
    "pdf": "Export to PDF",
    "select": "Seleccionar",
    "cancel": "Cancelar Cambios",
    "save": "Guardar Cambios"
  },
  "editable": {
    "confirmation": "¿Confirma la eliminación de este registro?",
    "cancelDelete": "Cancelar",
    "confirmDelete": "Eliminar"
  }
});
}

/* Pager messages */

if (kendo.ui.Pager) {
kendo.ui.Pager.prototype.options.messages =
$.extend(true, kendo.ui.Pager.prototype.options.messages,{
  "allPages": "All",
  "page": "Página",
  "display": "Elementos mostrados  {0} - {1} de {2}",
  "of": "de {0}",
  "empty": "No hay registros.",
  "refresh": "Actualizar",
  "first": "Ir a la primera página",
  "itemsPerPage": "ítems por página",
  "last": "Ir a la última página",
  "next": "Ir a la página siguiente",
  "previous": "Ir a la página anterior",
  "morePages": "Más paginas"
});
}

/* FilterCell messages */

if (kendo.ui.FilterCell) {
kendo.ui.FilterCell.prototype.options.messages =
$.extend(true, kendo.ui.FilterCell.prototype.options.messages,{
  "filter": "Filtrar",
  "clear": "Limpiar filtro",
  "isFalse": "No",
  "isTrue": "Sí",
  "operator": "Operador"
});
}

/* FilterMenu messages */

if (kendo.ui.FilterMenu) {
kendo.ui.FilterMenu.prototype.options.messages =
$.extend(true, kendo.ui.FilterMenu.prototype.options.messages,{
  "filter": "Filtrar",
  "and": "Y",
  "clear": "Limpiar filtro",
  "info": "Mostrar filas con valor que",
  "isFalse": "No",
  "isTrue": "Si",
  "or": "Or",
  "cancel": "Cancelar",
  "operator": "Operador",
  "value": "Valor",
  "selectValue": "-Seleccionar valor-"
});
}

/* Groupable messages */

if (kendo.ui.Groupable) {
kendo.ui.Groupable.prototype.options.messages =
$.extend(true, kendo.ui.Groupable.prototype.options.messages,{
  "empty": "Arrastre un encabezado de columna y suéltelo aquí para agrupar por dicho criterio"
});
}

/* Editor messages */

if (kendo.ui.Editor) {
kendo.ui.Editor.prototype.options.messages =
$.extend(true, kendo.ui.Editor.prototype.options.messages,{
  "dialogButtonSeparator": "or",
  "dialogCancel": "Cancel",
  "dialogInsert": "Insert",
  "imageAltText": "Alternate text",
  "imageWebAddress": "Web address",
  "linkOpenInNewWindow": "Open link in new window",
  "linkText": "Text",
  "linkToolTip": "ToolTip",
  "linkWebAddress": "Web address",
  "search": "Search",
  "createTable": "Crear una tabla",
  "addColumnLeft": "Add column on the left",
  "addColumnRight": "Add column on the right",
  "addRowAbove": "Add row above",
  "addRowBelow": "Add row below",
  "deleteColumn": "Delete column",
  "deleteRow": "Delete row",
  "backColor": "Background color",
  "bold": "Bold",
  "createLink": "Insert hyperlink",
  "deleteFile": "Are you sure you want to delete \"{0}\"?",
  "directoryNotFound": "A directory with this name was not found.",
  "dropFilesHere": "drop files here to upload",
  "emptyFolder": "Empty Folder",
  "fontName": "Select font family",
  "fontNameInherit": "(inherited font)",
  "fontSize": "Select font size",
  "fontSizeInherit": "(inherited size)",
  "foreColor": "Color",
  "formatBlock": "Format",
  "indent": "Indent",
  "insertHtml": "Insert HTML",
  "insertImage": "Insert image",
  "insertOrderedList": "Insert ordered list",
  "insertUnorderedList": "Insert unordered list",
  "invalidFileType": "The selected file \"{0}\" is not valid. Supported file types are {1}.",
  "italic": "Italic",
  "justifyCenter": "Center text",
  "justifyFull": "Justify",
  "justifyLeft": "Align text left",
  "justifyRight": "Align text right",
  "linkOpenInNewWindow1": "Open link in new window",
  "linkText1": "Text",
  "linkToolTip1": "ToolTip",
  "linkWebAddress1": "Web address",
  "orderBy": "Arrange by:",
  "orderByName": "Name",
  "orderBySize": "Size",
  "outdent": "Outdent",
  "overwriteFile": "'A file with name \"{0}\" already exists in the current directory. Do you want to overwrite it?",
  "search1": "Search",
  "strikethrough": "Strikethrough",
  "styles": "Styles",
  "subscript": "Subscript",
  "superscript": "Superscript",
  "underline": "Underline",
  "unlink": "Remove hyperlink",
  "uploadFile": "Upload",
  "formatting": "Format",
  "viewHtml": "View HTML",
  "dialogUpdate": "Update",
  "insertFile": "Insert file"
});
}

/* Scheduler messages */

if (kendo.ui.Scheduler) {
kendo.ui.Scheduler.prototype.options.messages =
$.extend(true, kendo.ui.Scheduler.prototype.options.messages,{
  "allDay": "todo el día",
  "cancel": "Cancelar",
  "editable": {
    "confirmation": "¿Está seguro que quiere eliminar este evento?"
  },
  "date": "Fecha",
  "destroy": "Eliminar",
  "editor": {
    "allDayEvent": "Todo el día",
    "description": "Descripción",
    "editorTitle": "Evento",
    "end": "Fin",
    "endTimezone": "Zona horaria de fin",
    "repeat": "Repetir",
    "separateTimezones": "Usar zonas horarias separadas para el inicio y el fin",
    "start": "Inicio",
    "startTimezone": "Zona horaria de inicio",
    "timezone": " ",
    "timezoneEditorButton": "Zona horaria",
    "timezoneEditorTitle": "Zonas horarias",
    "title": "Título",
    "noTimezone": "Sin zona horaria"
  },
  "event": "Evento",
  "recurrenceMessages": {
    "deleteRecurring": "¿Quiere eliminar esta ocurrencia del evento o la serie completa?",
    "deleteWindowOccurrence": "Eliminar ocurrencia actual",
    "deleteWindowSeries": "Eliminar la serie",
    "deleteWindowTitle": "Eliminar elemento recurrente",
    "editRecurring": "¿Quiere editar esta ocurrencia del evento o la serie completa?",
    "editWindowOccurrence": "Editar ocurrencia actual",
    "editWindowSeries": "Editar la serie",
    "editWindowTitle": "Editar elemento recurrente"
  },
  "save": "Guardar",
  "time": "Hora",
  "today": "Hoy",
  "views": {
    "agenda": "Agenda",
    "day": "Día",
    "month": "Mes",
    "week": "Semana",
    "workWeek": "Semana laboral"
  },
  "deleteWindowTitle": "Eliminar evento",
  "showFullDay": "Mostrar día completo",
  "showWorkDay": "Mostrar horas laborables"
});
}

/* Upload messages */

if (kendo.ui.Upload) {
kendo.ui.Upload.prototype.options.localization =
$.extend(true, kendo.ui.Upload.prototype.options.localization,{
  "cancel": "Cancelar",
  "dropFilesHere": "Arrastre los archivos aquí para subirlos",
  "headerStatusUploaded": "Completado",
  "headerStatusUploading": "Subiendo...",
  "remove": "Quitar",
  "retry": "Reintentar",
  "select": "Seleccione...",
  "statusFailed": "Error",
  "statusUploaded": "Completado",
  "statusUploading": "subiendo",
  "uploadSelectedFiles": "Subir archivos"
});
}
})(window.kendo.jQuery);
}));