htmlarea.js.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. ////////////////////////////////////////////////////////////added for compatibility with INTERNET EXPLORER
  46. "IE-sucks-full-screen" :
  47. // translate here
  48. "The full screen mode is known to cause problems with Internet Explorer, " +
  49. "due to browser bugs that we weren't able to workaround. You might experience garbage " +
  50. "display, lack of editor functions and/or random browser crashes. If your system is Windows 9x " +
  51. "it's very likely that you'll get a 'General Protection Fault' and need to reboot.\n\n" +
  52. "You have been warned. Please press OK if you still want to try the full screen editor.",
  53. "Moz-Clipboard" :
  54. "Unprivileged scripts cannot access Cut/Copy/Paste programatically " +
  55. "for security reasons. Click OK to see a technical note at mozilla.org " +
  56. "which shows you how to allow a script to access the clipboard."
  57. },
  58. dialogs: {
  59. "Cancel" : "Cancel",
  60. "Insert/Modify Link" : "Insert/Modify Link",
  61. "New window (_blank)" : "New window (_blank)",
  62. "None (use implicit)" : "None (use implicit)",
  63. "OK" : "OK",
  64. "Other" : "Other",
  65. "Same frame (_self)" : "Same frame (_self)",
  66. "Target:" : "Target:",
  67. "Title (tooltip):" : "Title (tooltip):",
  68. "Top frame (_top)" : "Top frame (_top)",
  69. "URL:" : "URL:",
  70. "You must enter the URL where this link points to" : "You must enter the URL where this link points to"
  71. ///////////////////////////////////////////////////////////////////////////////////////////////////
  72. }
  73. };