es.js 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.md or http://ckeditor.com/license
  4. */
  5. CKEDITOR.plugins.setLang( 'forms', 'es', {
  6. button: {
  7. title: 'Propiedades de Botón',
  8. text: 'Texto (Valor)',
  9. type: 'Tipo',
  10. typeBtn: 'Boton',
  11. typeSbm: 'Enviar',
  12. typeRst: 'Reestablecer'
  13. },
  14. checkboxAndRadio: {
  15. checkboxTitle: 'Propiedades de Casilla',
  16. radioTitle: 'Propiedades de Botón de Radio',
  17. value: 'Valor',
  18. selected: 'Seleccionado',
  19. required: 'Required' // MISSING
  20. },
  21. form: {
  22. title: 'Propiedades de Formulario',
  23. menu: 'Propiedades de Formulario',
  24. action: 'Acción',
  25. method: 'Método',
  26. encoding: 'Codificación'
  27. },
  28. hidden: {
  29. title: 'Propiedades de Campo Oculto',
  30. name: 'Nombre',
  31. value: 'Valor'
  32. },
  33. select: {
  34. title: 'Propiedades de Campo de Selección',
  35. selectInfo: 'Información',
  36. opAvail: 'Opciones disponibles',
  37. value: 'Valor',
  38. size: 'Tamaño',
  39. lines: 'Lineas',
  40. chkMulti: 'Permitir múltiple selección',
  41. required: 'Required', // MISSING
  42. opText: 'Texto',
  43. opValue: 'Valor',
  44. btnAdd: 'Agregar',
  45. btnModify: 'Modificar',
  46. btnUp: 'Subir',
  47. btnDown: 'Bajar',
  48. btnSetValue: 'Establecer como predeterminado',
  49. btnDelete: 'Eliminar'
  50. },
  51. textarea: {
  52. title: 'Propiedades de Area de Texto',
  53. cols: 'Columnas',
  54. rows: 'Filas'
  55. },
  56. textfield: {
  57. title: 'Propiedades de Campo de Texto',
  58. name: 'Nombre',
  59. value: 'Valor',
  60. charWidth: 'Caracteres de ancho',
  61. maxChars: 'Máximo caracteres',
  62. required: 'Required', // MISSING
  63. type: 'Tipo',
  64. typeText: 'Texto',
  65. typePass: 'Contraseña',
  66. typeEmail: 'Correo electrónico',
  67. typeSearch: 'Buscar',
  68. typeTel: 'Número de teléfono',
  69. typeUrl: 'URL'
  70. }
  71. } );