summernote-it-IT.js 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. (function($) {
  2. $.extend($.summernote.lang, {
  3. 'it-IT': {
  4. font: {
  5. bold: 'Testo in grassetto',
  6. italic: 'Testo in corsivo',
  7. underline: 'Testo sottolineato',
  8. clear: 'Elimina la formattazione del testo',
  9. height: 'Altezza della linea di testo',
  10. name: 'Famiglia Font',
  11. strikethrough: 'Testo barrato',
  12. subscript: 'Subscript',
  13. superscript: 'Superscript',
  14. size: 'Dimensione del carattere',
  15. },
  16. image: {
  17. image: 'Immagine',
  18. insert: 'Inserisci Immagine',
  19. resizeFull: 'Dimensioni originali',
  20. resizeHalf: 'Ridimensiona al 50%',
  21. resizeQuarter: 'Ridimensiona al 25%',
  22. floatLeft: 'Posiziona a sinistra',
  23. floatRight: 'Posiziona a destra',
  24. floatNone: 'Nessun posizionamento',
  25. shapeRounded: 'Shape: Rounded',
  26. shapeCircle: 'Shape: Circle',
  27. shapeThumbnail: 'Shape: Thumbnail',
  28. shapeNone: 'Shape: None',
  29. dragImageHere: 'Trascina qui un\'immagine',
  30. dropImage: 'Drop image or Text',
  31. selectFromFiles: 'Scegli dai Documenti',
  32. maximumFileSize: 'Maximum file size',
  33. maximumFileSizeError: 'Maximum file size exceeded.',
  34. url: 'URL dell\'immagine',
  35. remove: 'Rimuovi immagine',
  36. original: 'Original',
  37. },
  38. video: {
  39. video: 'Video',
  40. videoLink: 'Collegamento ad un Video',
  41. insert: 'Inserisci Video',
  42. url: 'URL del Video',
  43. providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion o Youku)',
  44. },
  45. link: {
  46. link: 'Collegamento',
  47. insert: 'Inserisci Collegamento',
  48. unlink: 'Elimina collegamento',
  49. edit: 'Modifica collegamento',
  50. textToDisplay: 'Testo del collegamento',
  51. url: 'URL del collegamento',
  52. openInNewWindow: 'Apri in una nuova finestra',
  53. },
  54. table: {
  55. table: 'Tabella',
  56. addRowAbove: 'Add row above',
  57. addRowBelow: 'Add row below',
  58. addColLeft: 'Add column left',
  59. addColRight: 'Add column right',
  60. delRow: 'Delete row',
  61. delCol: 'Delete column',
  62. delTable: 'Delete table',
  63. },
  64. hr: {
  65. insert: 'Inserisce una linea di separazione',
  66. },
  67. style: {
  68. style: 'Stili',
  69. p: 'pe',
  70. blockquote: 'Citazione',
  71. pre: 'Codice',
  72. h1: 'Titolo 1',
  73. h2: 'Titolo 2',
  74. h3: 'Titolo 3',
  75. h4: 'Titolo 4',
  76. h5: 'Titolo 5',
  77. h6: 'Titolo 6',
  78. },
  79. lists: {
  80. unordered: 'Elenco non ordinato',
  81. ordered: 'Elenco ordinato',
  82. },
  83. options: {
  84. help: 'Aiuto',
  85. fullscreen: 'Modalità a tutto schermo',
  86. codeview: 'Visualizza codice',
  87. },
  88. paragraph: {
  89. paragraph: 'Paragrafo',
  90. outdent: 'Diminuisce il livello di rientro',
  91. indent: 'Aumenta il livello di rientro',
  92. left: 'Allinea a sinistra',
  93. center: 'Centra',
  94. right: 'Allinea a destra',
  95. justify: 'Giustifica (allinea a destra e sinistra)',
  96. },
  97. color: {
  98. recent: 'Ultimo colore utilizzato',
  99. more: 'Altri colori',
  100. background: 'Colore di sfondo',
  101. foreground: 'Colore',
  102. transparent: 'Trasparente',
  103. setTransparent: 'Trasparente',
  104. reset: 'Reimposta',
  105. resetToDefault: 'Reimposta i colori',
  106. },
  107. shortcut: {
  108. shortcuts: 'Scorciatoie da tastiera',
  109. close: 'Chiudi',
  110. textFormatting: 'Formattazione testo',
  111. action: 'Azioni',
  112. paragraphFormatting: 'Formattazione paragrafo',
  113. documentStyle: 'Stili',
  114. extraKeys: 'Extra keys',
  115. },
  116. help: {
  117. 'insertParagraph': 'Insert Paragraph',
  118. 'undo': 'Undoes the last command',
  119. 'redo': 'Redoes the last command',
  120. 'tab': 'Tab',
  121. 'untab': 'Untab',
  122. 'bold': 'Set a bold style',
  123. 'italic': 'Set a italic style',
  124. 'underline': 'Set a underline style',
  125. 'strikethrough': 'Set a strikethrough style',
  126. 'removeFormat': 'Clean a style',
  127. 'justifyLeft': 'Set left align',
  128. 'justifyCenter': 'Set center align',
  129. 'justifyRight': 'Set right align',
  130. 'justifyFull': 'Set full align',
  131. 'insertUnorderedList': 'Toggle unordered list',
  132. 'insertOrderedList': 'Toggle ordered list',
  133. 'outdent': 'Outdent on current paragraph',
  134. 'indent': 'Indent on current paragraph',
  135. 'formatPara': 'Change current block\'s format as a paragraph(P tag)',
  136. 'formatH1': 'Change current block\'s format as H1',
  137. 'formatH2': 'Change current block\'s format as H2',
  138. 'formatH3': 'Change current block\'s format as H3',
  139. 'formatH4': 'Change current block\'s format as H4',
  140. 'formatH5': 'Change current block\'s format as H5',
  141. 'formatH6': 'Change current block\'s format as H6',
  142. 'insertHorizontalRule': 'Insert horizontal rule',
  143. 'linkDialog.show': 'Show Link Dialog',
  144. },
  145. history: {
  146. undo: 'Annulla',
  147. redo: 'Ripristina',
  148. },
  149. specialChar: {
  150. specialChar: 'SPECIAL CHARACTERS',
  151. select: 'Select Special characters',
  152. },
  153. },
  154. });
  155. })(jQuery);