htmlarea.js.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // I18N constants
  2. // LANG: "it", ENCODING: UTF-8 | ISO-8859-1
  3. // Author: Fabio Rotondo <fabio@rotondo.it>
  4. HTMLArea.I18N = {
  5. // the following should be the filename without .js extension
  6. // it will be used for automatically load plugin language.
  7. lang: "it",
  8. tooltips: {
  9. bold: "Grassetto",
  10. italic: "Italico",
  11. underline: "Sottolineato",
  12. strikethrough: "Barrato",
  13. subscript: "Pedice",
  14. superscript: "Apice",
  15. justifyleft: "Giustifica a Sinistra",
  16. justifycenter: "Giustifica in Centro",
  17. justifyright: "Giustifica a Destra",
  18. justifyfull: "Giustifica Completamente",
  19. orderedlist: "Lista Ordinata",
  20. unorderedlist: "Lista Puntata",
  21. outdent: "Decrementa Indentazione",
  22. indent: "Incrementa Indentazione",
  23. forecolor: "Colore del Carattere",
  24. hilitecolor: "Colore di Sfondo",
  25. inserthorizontalrule: "Linea Orizzontale",
  26. createlink: "Inserisci un Link",
  27. insertimage: "Inserisci un'Immagine",
  28. inserttable: "Inserisci una Tabella",
  29. htmlmode: "Attiva il codice HTML",
  30. popupeditor: "Allarga l'editor",
  31. about: "Info sull'editor",
  32. showhelp: "Aiuto sull'editor",
  33. textindicator: "Stile Attuale",
  34. undo: "Elimina l'ultima modifica",
  35. redo: "Ripristina l'ultima modifica",
  36. cut: "Taglia l'area selezionata",
  37. copy: "Copia l'area selezionata",
  38. paste: "Incolla dalla memoria"
  39. },
  40. buttons: {
  41. "ok": "OK",
  42. "cancel": "Annulla"
  43. },
  44. msg: {
  45. "Path": "Percorso",
  46. "TEXT_MODE": "Sei in MODALITA' TESTO. Usa il bottone [<>] per tornare alla modalità WYSIWYG."
  47. }
  48. };