htmlarea.js.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // I18N constants
  2. HTMLArea.I18N = {
  3. // the following should be the filename without .js extension
  4. // it will be used for automatically load plugin language.
  5. lang: "es",
  6. tooltips: {
  7. bold: "Negrita",
  8. italic: "Cursiva",
  9. underline: "Subrayado",
  10. strikethrough: "Tachado",
  11. subscript: "Subíndice",
  12. superscript: "Superíndice",
  13. justifyleft: "Alinear a la Izquierda",
  14. justifycenter: "Centrar",
  15. justifyright: "Alinear a la Derecha",
  16. justifyfull: "Justificar",
  17. orderedlist: "Lista Ordenada",
  18. unorderedlist: "Lista No Ordenada",
  19. outdent: "Aumentar Sangría",
  20. indent: "Disminuir Sangría",
  21. forecolor: "Color del Texto",
  22. hilitecolor: "Color del Fondo",
  23. inserthorizontalrule: "Línea Horizontal",
  24. createlink: "Insertar Enlace",
  25. insertimage: "Insertar Imagen",
  26. inserttable: "Insertar Tabla",
  27. htmlmode: "Ver Documento en HTML",
  28. popupeditor: "Ampliar Editor",
  29. about: "Acerca del Editor",
  30. showhelp: "Ayuda",
  31. textindicator: "Estilo Actual",
  32. undo: "Deshacer",
  33. redo: "Rehacer",
  34. cut: "Cortar selección",
  35. copy: "Copiar selección",
  36. paste: "Pegar desde el portapapeles"
  37. },
  38. buttons: {
  39. "ok": "Aceptar",
  40. "cancel": "Cancelar"
  41. },
  42. msg: {
  43. "Path": "Ruta",
  44. "TEXT_MODE": "Esta en modo TEXTO. Use el boton [<>] para cambiar a WYSIWIG",
  45. }
  46. };