My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

language_it.h 34KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. /**
  24. * Italian
  25. *
  26. * LCD Menu Messages
  27. * See also http://marlinfw.org/docs/development/lcd_language.html
  28. *
  29. */
  30. #define DISPLAY_CHARSET_ISO10646_1
  31. #define WELCOME_MSG MACHINE_NAME _UxGT(" pronto.")
  32. #define MSG_YES _UxGT("SI")
  33. #define MSG_NO _UxGT("NO")
  34. #define MSG_BACK _UxGT("Indietro")
  35. #define MSG_SD_INSERTED _UxGT("SD Card inserita")
  36. #define MSG_SD_REMOVED _UxGT("SD Card rimossa")
  37. #define MSG_SD_RELEASED _UxGT("SD Card rilasciata")
  38. #define MSG_LCD_ENDSTOPS _UxGT("Finecor.") // Max 8 caratteri
  39. #define MSG_LCD_SOFT_ENDSTOPS _UxGT("Finecorsa Soft")
  40. #define MSG_MAIN _UxGT("Menu principale")
  41. #define MSG_ADVANCED_SETTINGS _UxGT("Impostaz. avanzate")
  42. #define MSG_CONFIGURATION _UxGT("Configurazione")
  43. #define MSG_AUTOSTART _UxGT("Autostart")
  44. #define MSG_DISABLE_STEPPERS _UxGT("Disabilita Motori")
  45. #define MSG_DEBUG_MENU _UxGT("Menu di debug")
  46. #define MSG_PROGRESS_BAR_TEST _UxGT("Test barra avanzam.")
  47. #define MSG_AUTO_HOME _UxGT("Auto Home")
  48. #define MSG_AUTO_HOME_X _UxGT("Home asse X")
  49. #define MSG_AUTO_HOME_Y _UxGT("Home asse Y")
  50. #define MSG_AUTO_HOME_Z _UxGT("Home asse Z")
  51. #define MSG_AUTO_Z_ALIGN _UxGT("Allineam.automat. Z")
  52. #define MSG_LEVEL_BED_HOMING _UxGT("Home assi XYZ")
  53. #define MSG_LEVEL_BED_WAITING _UxGT("Premi per iniziare")
  54. #define MSG_LEVEL_BED_NEXT_POINT _UxGT("Punto successivo")
  55. #define MSG_LEVEL_BED_DONE _UxGT("Livel. terminato!")
  56. #define MSG_Z_FADE_HEIGHT _UxGT("Fade Height")
  57. #define MSG_SET_HOME_OFFSETS _UxGT("Imp. offset home")
  58. #define MSG_HOME_OFFSETS_APPLIED _UxGT("Offset applicato")
  59. #define MSG_SET_ORIGIN _UxGT("Imposta Origine")
  60. #define MSG_PREHEAT_1 _UxGT("Preriscalda " PREHEAT_1_LABEL)
  61. #define MSG_PREHEAT_1_N _UxGT("Preris." PREHEAT_1_LABEL " ")
  62. #define MSG_PREHEAT_1_ALL MSG_PREHEAT_1_N _UxGT("Tutto")
  63. #define MSG_PREHEAT_1_END MSG_PREHEAT_1_N _UxGT("Ugello")
  64. #define MSG_PREHEAT_1_BEDONLY MSG_PREHEAT_1_N _UxGT("Piatto")
  65. #define MSG_PREHEAT_1_SETTINGS MSG_PREHEAT_1_N _UxGT("conf")
  66. #define MSG_PREHEAT_2 _UxGT("Preriscalda " PREHEAT_2_LABEL)
  67. #define MSG_PREHEAT_2_N _UxGT("Preris." PREHEAT_2_LABEL " ")
  68. #define MSG_PREHEAT_2_ALL MSG_PREHEAT_2_N _UxGT("Tutto")
  69. #define MSG_PREHEAT_2_END MSG_PREHEAT_2_N _UxGT("Ugello")
  70. #define MSG_PREHEAT_2_BEDONLY MSG_PREHEAT_2_N _UxGT("Piatto")
  71. #define MSG_PREHEAT_2_SETTINGS MSG_PREHEAT_2_N _UxGT("conf")
  72. #define MSG_PREHEAT_CUSTOM _UxGT("Prerisc.personal.")
  73. #define MSG_COOLDOWN _UxGT("Raffredda")
  74. #define MSG_LASER_MENU _UxGT("Controllo laser")
  75. #define MSG_LASER_OFF _UxGT("Laser Off")
  76. #define MSG_LASER_ON _UxGT("Laser On")
  77. #define MSG_LASER_POWER _UxGT("Potenza laser")
  78. #define MSG_SPINDLE_MENU _UxGT("Controllo mandrino")
  79. #define MSG_SPINDLE_OFF _UxGT("Mandrino Off")
  80. #define MSG_SPINDLE_ON _UxGT("Mandrino On")
  81. #define MSG_SPINDLE_POWER _UxGT("Potenza mandrino")
  82. #define MSG_SPINDLE_REVERSE _UxGT("Inverti mandrino")
  83. #define MSG_SWITCH_PS_ON _UxGT("Accendi aliment.")
  84. #define MSG_SWITCH_PS_OFF _UxGT("Spegni aliment.")
  85. #define MSG_EXTRUDE _UxGT("Estrudi")
  86. #define MSG_RETRACT _UxGT("Ritrai")
  87. #define MSG_MOVE_AXIS _UxGT("Muovi Asse")
  88. #define MSG_BED_LEVELING _UxGT("Livella piano")
  89. #define MSG_LEVEL_BED MSG_BED_LEVELING
  90. #define MSG_LEVEL_CORNERS _UxGT("Livella spigoli")
  91. #define MSG_NEXT_CORNER _UxGT("Prossimo spigolo")
  92. #define MSG_EDITING_STOPPED _UxGT("Modif. Mesh Fermata")
  93. #define MSG_MESH_X _UxGT("Indice X")
  94. #define MSG_MESH_Y _UxGT("Indice Y")
  95. #define MSG_MESH_EDIT_Z _UxGT("Valore di Z")
  96. #define MSG_USER_MENU _UxGT("Comandi personaliz.")
  97. #define MSG_UBL_DOING_G29 _UxGT("G29 in corso")
  98. #define MSG_UBL_UNHOMED _UxGT("Home XYZ prima")
  99. #define MSG_UBL_TOOLS _UxGT("Strumenti UBL")
  100. #define MSG_UBL_LEVEL_BED _UxGT("Unified Bed Leveling")
  101. #define MSG_LCD_PROBING_MESH _UxGT("Punto sondato")
  102. #define MSG_LCD_TILTING_MESH _UxGT("Punto inclinaz.")
  103. #define MSG_IDEX_MENU _UxGT("Modo IDEX")
  104. #define MSG_OFFSETS_MENU _UxGT("Strumenti Offsets")
  105. #define MSG_IDEX_MODE_AUTOPARK _UxGT("Auto-Park")
  106. #define MSG_IDEX_MODE_DUPLICATE _UxGT("Duplicazione")
  107. #define MSG_IDEX_MODE_MIRRORED_COPY _UxGT("Copia speculare")
  108. #define MSG_IDEX_MODE_FULL_CTRL _UxGT("Pieno controllo")
  109. #define MSG_X_OFFSET _UxGT("2° ugello X")
  110. #define MSG_Y_OFFSET _UxGT("2° ugello Y")
  111. #define MSG_Z_OFFSET _UxGT("2° ugello Z")
  112. #define MSG_UBL_MANUAL_MESH _UxGT("Mesh Manuale")
  113. #define MSG_UBL_BC_INSERT _UxGT("Metti spes. e misura")
  114. #define MSG_UBL_BC_INSERT2 _UxGT("Misura")
  115. #define MSG_UBL_BC_REMOVE _UxGT("Rimuovi e mis.piatto")
  116. #define MSG_UBL_MOVING_TO_NEXT _UxGT("Spostamento succes.")
  117. #define MSG_UBL_ACTIVATE_MESH _UxGT("Attiva UBL")
  118. #define MSG_UBL_DEACTIVATE_MESH _UxGT("Disattiva UBL")
  119. #define MSG_UBL_SET_TEMP_BED _UxGT("Temp. Piatto")
  120. #define MSG_UBL_BED_TEMP_CUSTOM MSG_UBL_SET_TEMP_BED
  121. #define MSG_UBL_SET_TEMP_HOTEND _UxGT("Temp. Ugello")
  122. #define MSG_UBL_HOTEND_TEMP_CUSTOM MSG_UBL_SET_TEMP_HOTEND
  123. #define MSG_UBL_MESH_EDIT _UxGT("Modifica Mesh")
  124. #define MSG_UBL_EDIT_CUSTOM_MESH _UxGT("Modif.Mesh personal.")
  125. #define MSG_UBL_FINE_TUNE_MESH _UxGT("Ritocca Mesh")
  126. #define MSG_UBL_DONE_EDITING_MESH _UxGT("Modif.Mesh fatta")
  127. #define MSG_UBL_BUILD_CUSTOM_MESH _UxGT("Crea Mesh personal.")
  128. #define MSG_UBL_BUILD_MESH_MENU _UxGT("Crea Mesh")
  129. #define MSG_UBL_BUILD_MESH_M1 _UxGT("Crea Mesh " PREHEAT_1_LABEL)
  130. #define MSG_UBL_BUILD_MESH_M2 _UxGT("Crea Mesh " PREHEAT_2_LABEL)
  131. #define MSG_UBL_BUILD_COLD_MESH _UxGT("Crea Mesh a freddo")
  132. #define MSG_UBL_MESH_HEIGHT_ADJUST _UxGT("Aggiusta Alt. Mesh")
  133. #define MSG_UBL_MESH_HEIGHT_AMOUNT _UxGT("Altezza")
  134. #define MSG_UBL_VALIDATE_MESH_MENU _UxGT("Valida Mesh")
  135. #define MSG_UBL_VALIDATE_MESH_M1 _UxGT("Valida Mesh " PREHEAT_1_LABEL)
  136. #define MSG_UBL_VALIDATE_MESH_M2 _UxGT("Valida Mesh " PREHEAT_2_LABEL)
  137. #define MSG_UBL_VALIDATE_CUSTOM_MESH _UxGT("Valida Mesh pers.")
  138. #define MSG_UBL_CONTINUE_MESH _UxGT("Continua Mesh")
  139. #define MSG_UBL_MESH_LEVELING _UxGT("Livell. Mesh")
  140. #define MSG_UBL_3POINT_MESH_LEVELING _UxGT("Livell. 3 Punti")
  141. #define MSG_UBL_GRID_MESH_LEVELING _UxGT("Livell. Griglia Mesh")
  142. #define MSG_UBL_MESH_LEVEL _UxGT("Livella Mesh")
  143. #define MSG_UBL_SIDE_POINTS _UxGT("Punti laterali")
  144. #define MSG_UBL_MAP_TYPE _UxGT("Tipo di Mappa")
  145. #define MSG_UBL_OUTPUT_MAP _UxGT("Esporta Mappa")
  146. #define MSG_UBL_OUTPUT_MAP_HOST _UxGT("Esporta per Host")
  147. #define MSG_UBL_OUTPUT_MAP_CSV _UxGT("Esporta in CSV")
  148. #define MSG_UBL_OUTPUT_MAP_BACKUP _UxGT("Backup esterno")
  149. #define MSG_UBL_INFO_UBL _UxGT("Esporta Info UBL")
  150. #define MSG_EDIT_MESH _UxGT("Modifica Mesh")
  151. #define MSG_UBL_FILLIN_AMOUNT _UxGT("Riempimento")
  152. #define MSG_UBL_MANUAL_FILLIN _UxGT("Riempimento Manuale")
  153. #define MSG_UBL_SMART_FILLIN _UxGT("Riempimento Smart")
  154. #define MSG_UBL_FILLIN_MESH _UxGT("Riempimento Mesh")
  155. #define MSG_UBL_INVALIDATE_ALL _UxGT("Invalida Tutto")
  156. #define MSG_UBL_INVALIDATE_CLOSEST _UxGT("Invalid.Punto Vicino")
  157. #define MSG_UBL_FINE_TUNE_ALL _UxGT("Ritocca All")
  158. #define MSG_UBL_FINE_TUNE_CLOSEST _UxGT("Ritocca Punto Vicino")
  159. #define MSG_UBL_STORAGE_MESH_MENU _UxGT("Mesh Salvate")
  160. #define MSG_UBL_STORAGE_SLOT _UxGT("Slot di memoria")
  161. #define MSG_UBL_LOAD_MESH _UxGT("Carica Mesh Piatto")
  162. #define MSG_UBL_SAVE_MESH _UxGT("Salva Mesh Piatto")
  163. #define MSG_MESH_LOADED _UxGT("Mesh %i caricata")
  164. #define MSG_MESH_SAVED _UxGT("Mesh %i salvata")
  165. #define MSG_NO_STORAGE _UxGT("Nessuna memoria")
  166. #define MSG_UBL_SAVE_ERROR _UxGT("Err: Salvataggio UBL")
  167. #define MSG_UBL_RESTORE_ERROR _UxGT("Err: Ripristino UBL")
  168. #define MSG_UBL_Z_OFFSET_STOPPED _UxGT("Z-Offset Fermato")
  169. #define MSG_UBL_STEP_BY_STEP_MENU _UxGT("UBL passo passo")
  170. #define MSG_LED_CONTROL _UxGT("Controllo LED")
  171. #define MSG_LEDS _UxGT("Luci")
  172. #define MSG_LED_PRESETS _UxGT("Preset luce")
  173. #define MSG_SET_LEDS_RED _UxGT("Rosso")
  174. #define MSG_SET_LEDS_ORANGE _UxGT("Arancione")
  175. #define MSG_SET_LEDS_YELLOW _UxGT("Giallo")
  176. #define MSG_SET_LEDS_GREEN _UxGT("Verde")
  177. #define MSG_SET_LEDS_BLUE _UxGT("Blu")
  178. #define MSG_SET_LEDS_INDIGO _UxGT("Indaco")
  179. #define MSG_SET_LEDS_VIOLET _UxGT("Viola")
  180. #define MSG_SET_LEDS_WHITE _UxGT("Bianco")
  181. #define MSG_SET_LEDS_DEFAULT _UxGT("Predefinito")
  182. #define MSG_CUSTOM_LEDS _UxGT("Luci personalizzate")
  183. #define MSG_INTENSITY_R _UxGT("Intensità rosso")
  184. #define MSG_INTENSITY_G _UxGT("Intensità verde")
  185. #define MSG_INTENSITY_B _UxGT("Intensità blu")
  186. #define MSG_INTENSITY_W _UxGT("Intensità bianco")
  187. #define MSG_LED_BRIGHTNESS _UxGT("Luminosità")
  188. #define MSG_MOVING _UxGT("In movimento...")
  189. #define MSG_FREE_XY _UxGT("XY liberi")
  190. #define MSG_MOVE_X _UxGT("Muovi X")
  191. #define MSG_MOVE_Y _UxGT("Muovi Y")
  192. #define MSG_MOVE_Z _UxGT("Muovi Z")
  193. #define MSG_MOVE_E _UxGT("Estrusore")
  194. #define MSG_HOTEND_TOO_COLD _UxGT("Ugello freddo")
  195. #define MSG_MOVE_0025MM _UxGT("Muovi di 0.025mm")
  196. #define MSG_MOVE_01MM _UxGT("Muovi di 0.1mm")
  197. #define MSG_MOVE_1MM _UxGT("Muovi di 1mm")
  198. #define MSG_MOVE_10MM _UxGT("Muovi di 10mm")
  199. #define MSG_SPEED _UxGT("Velocità")
  200. #define MSG_BED_Z _UxGT("Piatto Z")
  201. #define MSG_NOZZLE _UxGT("Ugello")
  202. #define MSG_BED _UxGT("Piatto")
  203. #define MSG_CHAMBER _UxGT("Camera")
  204. #define MSG_FAN_SPEED _UxGT("Velocità ventola")
  205. #define MSG_EXTRA_FAN_SPEED _UxGT("Extra vel. ventola")
  206. #define MSG_FLOW _UxGT("Flusso")
  207. #define MSG_CONTROL _UxGT("Controllo")
  208. #define MSG_MIN LCD_STR_THERMOMETER _UxGT(" Min")
  209. #define MSG_MAX LCD_STR_THERMOMETER _UxGT(" Max")
  210. #define MSG_FACTOR LCD_STR_THERMOMETER _UxGT(" Fact")
  211. #define MSG_AUTOTEMP _UxGT("Autotemp")
  212. #define MSG_LCD_ON _UxGT("On")
  213. #define MSG_LCD_OFF _UxGT("Off")
  214. #define MSG_PID_P _UxGT("PID-P")
  215. #define MSG_PID_I _UxGT("PID-I")
  216. #define MSG_PID_D _UxGT("PID-D")
  217. #define MSG_PID_C _UxGT("PID-C")
  218. #define MSG_SELECT _UxGT("Seleziona")
  219. #define MSG_ACC _UxGT("Accel")
  220. #define MSG_JERK _UxGT("Jerk")
  221. #if IS_KINEMATIC
  222. #define MSG_VA_JERK _UxGT("Va-jerk")
  223. #define MSG_VB_JERK _UxGT("Vb-jerk")
  224. #define MSG_VC_JERK _UxGT("Vc-jerk")
  225. #else
  226. #define MSG_VA_JERK _UxGT("Vx-jerk")
  227. #define MSG_VB_JERK _UxGT("Vy-jerk")
  228. #define MSG_VC_JERK _UxGT("Vz-jerk")
  229. #endif
  230. #define MSG_VE_JERK _UxGT("Ve-jerk")
  231. #define MSG_JUNCTION_DEVIATION _UxGT("Deviaz. giunzioni")
  232. #define MSG_VELOCITY _UxGT("Velocità")
  233. #define MSG_VMAX _UxGT("Vmax ")
  234. #define MSG_VMIN _UxGT("Vmin")
  235. #define MSG_VTRAV_MIN _UxGT("VTrav min")
  236. #define MSG_ACCELERATION _UxGT("Accelerazione")
  237. #define MSG_AMAX _UxGT("Amax ")
  238. #define MSG_A_RETRACT _UxGT("A-Ritrazione")
  239. #define MSG_A_TRAVEL _UxGT("A-Spostamento")
  240. #define MSG_STEPS_PER_MM _UxGT("Passi/mm")
  241. #if IS_KINEMATIC
  242. #define MSG_ASTEPS _UxGT("Apassi/mm")
  243. #define MSG_BSTEPS _UxGT("Bpassi/mm")
  244. #define MSG_CSTEPS _UxGT("Cpassi/mm")
  245. #else
  246. #define MSG_ASTEPS _UxGT("Xpassi/mm")
  247. #define MSG_BSTEPS _UxGT("Ypassi/mm")
  248. #define MSG_CSTEPS _UxGT("Zpassi/mm")
  249. #endif
  250. #define MSG_ESTEPS _UxGT("Epassi/mm")
  251. #define MSG_E1STEPS _UxGT("E1passi/mm")
  252. #define MSG_E2STEPS _UxGT("E2passi/mm")
  253. #define MSG_E3STEPS _UxGT("E3passi/mm")
  254. #define MSG_E4STEPS _UxGT("E4passi/mm")
  255. #define MSG_E5STEPS _UxGT("E5passi/mm")
  256. #define MSG_E6STEPS _UxGT("E6passi/mm")
  257. #define MSG_TEMPERATURE _UxGT("Temperatura")
  258. #define MSG_MOTION _UxGT("Movimento")
  259. #define MSG_FILAMENT _UxGT("Filamento")
  260. #define MSG_VOLUMETRIC_ENABLED _UxGT("E in mm³")
  261. #define MSG_FILAMENT_DIAM _UxGT("Diam. filo")
  262. #define MSG_FILAMENT_UNLOAD _UxGT("Rimuovi mm")
  263. #define MSG_FILAMENT_LOAD _UxGT("Carica mm")
  264. #define MSG_ADVANCE_K _UxGT("K Avanzamento")
  265. #define MSG_CONTRAST _UxGT("Contrasto LCD")
  266. #define MSG_STORE_EEPROM _UxGT("Salva impostazioni")
  267. #define MSG_LOAD_EEPROM _UxGT("Carica impostazioni")
  268. #define MSG_RESTORE_FAILSAFE _UxGT("Ripristina imp.")
  269. #define MSG_INIT_EEPROM _UxGT("Inizializza EEPROM")
  270. #define MSG_SD_UPDATE _UxGT("Aggiorna SD")
  271. #define MSG_RESET_PRINTER _UxGT("Resetta stampante")
  272. #define MSG_REFRESH _UxGT("Aggiorna")
  273. #define MSG_WATCH _UxGT("Schermata info")
  274. #define MSG_PREPARE _UxGT("Prepara")
  275. #define MSG_TUNE _UxGT("Regola")
  276. #define MSG_START_PRINT _UxGT("Avvia stampa")
  277. #define MSG_BUTTON_NEXT _UxGT("Prossimo")
  278. #define MSG_BUTTON_INIT _UxGT("Inizializza")
  279. #define MSG_BUTTON_STOP _UxGT("Stop")
  280. #define MSG_BUTTON_PRINT _UxGT("Stampa")
  281. #define MSG_BUTTON_RESET _UxGT("Resetta")
  282. #define MSG_BUTTON_CANCEL _UxGT("Annulla")
  283. #define MSG_BUTTON_DONE _UxGT("Fatto")
  284. #define MSG_PAUSE_PRINT _UxGT("Pausa stampa")
  285. #define MSG_RESUME_PRINT _UxGT("Riprendi stampa")
  286. #define MSG_STOP_PRINT _UxGT("Arresta stampa")
  287. #define MSG_OUTAGE_RECOVERY _UxGT("Ripresa da PowerLoss")
  288. #define MSG_CARD_MENU _UxGT("Stampa da SD")
  289. #define MSG_NO_CARD _UxGT("SD non presente")
  290. #define MSG_DWELL _UxGT("Sospensione...")
  291. #define MSG_USERWAIT _UxGT("Premi tasto..")
  292. #define MSG_PRINT_PAUSED _UxGT("Stampa sospesa")
  293. #define MSG_PRINTING _UxGT("Stampa...")
  294. #define MSG_PRINT_ABORTED _UxGT("Stampa annullata")
  295. #define MSG_NO_MOVE _UxGT("Nessun Movimento")
  296. #define MSG_KILLED _UxGT("UCCISO. ")
  297. #define MSG_STOPPED _UxGT("ARRESTATO. ")
  298. #define MSG_CONTROL_RETRACT _UxGT("Ritrai mm")
  299. #define MSG_CONTROL_RETRACT_SWAP _UxGT("Scamb. Ritrai mm")
  300. #define MSG_CONTROL_RETRACTF _UxGT("Ritrai V")
  301. #define MSG_CONTROL_RETRACT_ZHOP _UxGT("Salta mm")
  302. #define MSG_CONTROL_RETRACT_RECOVER _UxGT("UnRet mm")
  303. #define MSG_CONTROL_RETRACT_RECOVER_SWAP _UxGT("Scamb. UnRet mm")
  304. #define MSG_CONTROL_RETRACT_RECOVERF _UxGT("UnRet V")
  305. #define MSG_CONTROL_RETRACT_RECOVER_SWAPF _UxGT("S UnRet V")
  306. #define MSG_AUTORETRACT _UxGT("AutoRitrai")
  307. #define MSG_FILAMENT_SWAP_LENGTH _UxGT("Dist. ritrazione")
  308. #define MSG_TOOL_CHANGE _UxGT("Cambio utensile")
  309. #define MSG_TOOL_CHANGE_ZLIFT _UxGT("Risalita Z")
  310. #define MSG_SINGLENOZZLE_PRIME_SPD _UxGT("Velocità innesco")
  311. #define MSG_SINGLENOZZLE_RETRACT_SPD _UxGT("Velocità retrazione")
  312. #define MSG_NOZZLE_STANDBY _UxGT("Standby ugello")
  313. #define MSG_FILAMENTCHANGE _UxGT("Cambia filamento")
  314. #define MSG_FILAMENTLOAD _UxGT("Carica filamento")
  315. #define MSG_FILAMENTUNLOAD _UxGT("Rimuovi filamento")
  316. #define MSG_FILAMENTUNLOAD_ALL _UxGT("Rimuovi tutto")
  317. #define MSG_INIT_SDCARD _UxGT("Iniz. SD card")
  318. #define MSG_CHANGE_SDCARD _UxGT("Cambia SD card")
  319. #define MSG_RELEASE_SDCARD _UxGT("Rilascia SD card")
  320. #define MSG_ZPROBE_OUT _UxGT("Z probe fuori piatto")
  321. #define MSG_SKEW_FACTOR _UxGT("Fattore distorsione")
  322. #define MSG_BLTOUCH _UxGT("BLTouch")
  323. #define MSG_BLTOUCH_SELFTEST _UxGT("Autotest BLTouch")
  324. #define MSG_BLTOUCH_RESET _UxGT("Resetta BLTouch")
  325. #define MSG_BLTOUCH_DEPLOY _UxGT("Estendi BLTouch")
  326. #define MSG_BLTOUCH_SW_MODE _UxGT("BLTouch modo SW")
  327. #define MSG_BLTOUCH_5V_MODE _UxGT("BLTouch modo 5V")
  328. #define MSG_BLTOUCH_OD_MODE _UxGT("BLTouch modo OD")
  329. #define MSG_BLTOUCH_MODE_STORE _UxGT("BLTouch modo mem.")
  330. #define MSG_BLTOUCH_MODE_STORE_5V _UxGT("Metti BLTouch a 5V")
  331. #define MSG_BLTOUCH_MODE_STORE_OD _UxGT("Metti BLTouch a OD")
  332. #define MSG_BLTOUCH_MODE_ECHO _UxGT("Segnala modo")
  333. #define MSG_BLTOUCH_MODE_CHANGE _UxGT("PERICOLO: Impostazioni errate possono cause danni! Procedo comunque?")
  334. #define MSG_MANUAL_DEPLOY _UxGT("Estendi Sonda-Z")
  335. #define MSG_BLTOUCH_STOW _UxGT("Ritrai BLTouch")
  336. #define MSG_MANUAL_STOW _UxGT("Ritrai Sonda-Z")
  337. #define MSG_HOME _UxGT("Home") // Usato come MSG_HOME " " MSG_X MSG_Y MSG_Z " " MSG_FIRST
  338. #define MSG_FIRST _UxGT("prima")
  339. #define MSG_ZPROBE_ZOFFSET _UxGT("Offset sonda Z")
  340. #define MSG_BABYSTEP_X _UxGT("Babystep X")
  341. #define MSG_BABYSTEP_Y _UxGT("Babystep Y")
  342. #define MSG_BABYSTEP_Z _UxGT("Babystep Z")
  343. #define MSG_BABYSTEP_TOTAL _UxGT("Totali")
  344. #define MSG_ENDSTOP_ABORT _UxGT("Finecorsa annullati")
  345. #define MSG_HEATING_FAILED_LCD _UxGT("Riscald. Fallito")
  346. #define MSG_HEATING_FAILED_LCD_BED _UxGT("Risc. piatto fallito")
  347. #define MSG_HEATING_FAILED_LCD_CHAMBER _UxGT("Risc. camera fallito")
  348. #define MSG_ERR_REDUNDANT_TEMP _UxGT("Err: TEMP RIDONDANTE")
  349. #define MSG_THERMAL_RUNAWAY _UxGT("TEMP FUORI CONTROLLO")
  350. #define MSG_THERMAL_RUNAWAY_BED _UxGT("TEMP PIAT.FUORI CTRL")
  351. #define MSG_THERMAL_RUNAWAY_CHAMBER _UxGT("T.CAMERA FUORI CTRL")
  352. #define MSG_ERR_MAXTEMP _UxGT("Err: TEMP MASSIMA")
  353. #define MSG_ERR_MINTEMP _UxGT("Err: TEMP MINIMA")
  354. #define MSG_ERR_MAXTEMP_BED _UxGT("Err: TEMP MAX PIATTO")
  355. #define MSG_ERR_MINTEMP_BED _UxGT("Err: TEMP MIN PIATTO")
  356. #define MSG_ERR_MAXTEMP_CHAMBER _UxGT("Err: TEMP MAX CAMERA")
  357. #define MSG_ERR_MINTEMP_CHAMBER _UxGT("Err: TEMP MIN CAMERA")
  358. #define MSG_ERR_Z_HOMING MSG_HOME _UxGT(" ") MSG_X MSG_Y _UxGT(" ") MSG_FIRST
  359. #define MSG_HALTED _UxGT("STAMPANTE FERMATA")
  360. #define MSG_PLEASE_RESET _UxGT("Riavviare prego")
  361. #define MSG_SHORT_DAY _UxGT("g") // Un solo carattere
  362. #define MSG_SHORT_HOUR _UxGT("h") // Un solo carattere
  363. #define MSG_SHORT_MINUTE _UxGT("m") // Un solo carattere
  364. #define MSG_HEATING _UxGT("Riscaldamento...")
  365. #define MSG_COOLING _UxGT("Raffreddamento..")
  366. #define MSG_BED_HEATING _UxGT("Risc. piatto...")
  367. #define MSG_BED_COOLING _UxGT("Raffr. piatto...")
  368. #define MSG_CHAMBER_HEATING _UxGT("Risc. camera...")
  369. #define MSG_CHAMBER_COOLING _UxGT("Raffr. camera...")
  370. #define MSG_DELTA_CALIBRATE _UxGT("Calibraz. Delta")
  371. #define MSG_DELTA_CALIBRATE_X _UxGT("Calibra X")
  372. #define MSG_DELTA_CALIBRATE_Y _UxGT("Calibra Y")
  373. #define MSG_DELTA_CALIBRATE_Z _UxGT("Calibra Z")
  374. #define MSG_DELTA_CALIBRATE_CENTER _UxGT("Calibra centro")
  375. #define MSG_DELTA_SETTINGS _UxGT("Impostaz. Delta")
  376. #define MSG_DELTA_AUTO_CALIBRATE _UxGT("Auto calibrazione")
  377. #define MSG_DELTA_HEIGHT_CALIBRATE _UxGT("Imp. altezza Delta")
  378. #define MSG_DELTA_Z_OFFSET_CALIBRATE _UxGT("Offset sonda-Z")
  379. #define MSG_DELTA_DIAG_ROD _UxGT("Barra Diagonale")
  380. #define MSG_DELTA_HEIGHT _UxGT("Altezza")
  381. #define MSG_DELTA_RADIUS _UxGT("Raggio")
  382. #define MSG_INFO_MENU _UxGT("Riguardo stampante")
  383. #define MSG_INFO_PRINTER_MENU _UxGT("Info. stampante")
  384. #define MSG_3POINT_LEVELING _UxGT("Livel. a 3 punti")
  385. #define MSG_LINEAR_LEVELING _UxGT("Livel. Lineare")
  386. #define MSG_BILINEAR_LEVELING _UxGT("Livel. Bilineare")
  387. #define MSG_UBL_LEVELING _UxGT("Livel.piatto unific.")
  388. #define MSG_MESH_LEVELING _UxGT("Livel. Mesh")
  389. #define MSG_INFO_STATS_MENU _UxGT("Statistiche")
  390. #define MSG_INFO_BOARD_MENU _UxGT("Info. scheda")
  391. #define MSG_INFO_THERMISTOR_MENU _UxGT("Termistori")
  392. #define MSG_INFO_EXTRUDERS _UxGT("Estrusori")
  393. #define MSG_INFO_BAUDRATE _UxGT("Baud")
  394. #define MSG_INFO_PROTOCOL _UxGT("Protocollo")
  395. #define MSG_CASE_LIGHT _UxGT("Luci Case")
  396. #define MSG_CASE_LIGHT_BRIGHTNESS _UxGT("Luminosità Luci")
  397. #if LCD_WIDTH >= 20
  398. #define MSG_INFO_PRINT_COUNT _UxGT("Contat. stampa")
  399. #define MSG_INFO_COMPLETED_PRINTS _UxGT("Completati")
  400. #define MSG_INFO_PRINT_TIME _UxGT("Tempo totale")
  401. #define MSG_INFO_PRINT_LONGEST _UxGT("Lavoro più lungo")
  402. #define MSG_INFO_PRINT_FILAMENT _UxGT("Totale estruso")
  403. #else
  404. #define MSG_INFO_PRINT_COUNT _UxGT("Stampe")
  405. #define MSG_INFO_COMPLETED_PRINTS _UxGT("Completati")
  406. #define MSG_INFO_PRINT_TIME _UxGT("Durata")
  407. #define MSG_INFO_PRINT_LONGEST _UxGT("Più lungo")
  408. #define MSG_INFO_PRINT_FILAMENT _UxGT("Estruso")
  409. #endif
  410. #define MSG_INFO_MIN_TEMP _UxGT("Temp min")
  411. #define MSG_INFO_MAX_TEMP _UxGT("Temp max")
  412. #define MSG_INFO_PSU _UxGT("Alimentatore")
  413. #define MSG_DRIVE_STRENGTH _UxGT("Potenza Drive")
  414. #define MSG_DAC_PERCENT _UxGT("Driver %")
  415. #define MSG_DAC_EEPROM_WRITE _UxGT("Scrivi DAC EEPROM")
  416. #define MSG_FILAMENT_CHANGE_HEADER_PAUSE _UxGT("STAMPA IN PAUSA")
  417. #define MSG_FILAMENT_CHANGE_HEADER_LOAD _UxGT("CARICA FILAMENTO")
  418. #define MSG_FILAMENT_CHANGE_HEADER_UNLOAD _UxGT("RIMUOVI FILAMENTO")
  419. #define MSG_FILAMENT_CHANGE_OPTION_HEADER _UxGT("OPZIONI RIPRESA:")
  420. #define MSG_FILAMENT_CHANGE_OPTION_PURGE _UxGT("Spurga di più")
  421. #define MSG_FILAMENT_CHANGE_OPTION_RESUME _UxGT("Riprendi stampa")
  422. #define MSG_FILAMENT_CHANGE_NOZZLE _UxGT(" Ugello: ")
  423. #define MSG_RUNOUT_SENSOR _UxGT("Sens.filo termin.") // Max 17 caratteri
  424. #define MSG_RUNOUT_DISTANCE_MM _UxGT("Dist mm filo term.")
  425. #define MSG_ERR_HOMING_FAILED _UxGT("Home fallito")
  426. #define MSG_ERR_PROBING_FAILED _UxGT("Sondaggio fallito")
  427. #define MSG_M600_TOO_COLD _UxGT("M600:Troppo freddo")
  428. #define MSG_MMU2_FILAMENT_CHANGE_HEADER _UxGT("CAMBIO FILAMENTO")
  429. #define MSG_MMU2_CHOOSE_FILAMENT_HEADER _UxGT("SCELTA FILAMENTO")
  430. #define MSG_MMU2_MENU _UxGT("MMU")
  431. #define MSG_MMU2_WRONG_FIRMWARE _UxGT("Agg.firmware MMU!")
  432. #define MSG_MMU2_NOT_RESPONDING _UxGT("MMU chiede attenz.")
  433. #define MSG_MMU2_RESUME _UxGT("Riprendi stampa")
  434. #define MSG_MMU2_RESUMING _UxGT("Ripresa...")
  435. #define MSG_MMU2_LOAD_FILAMENT _UxGT("Carica filamento")
  436. #define MSG_MMU2_LOAD_ALL _UxGT("Carica tutto")
  437. #define MSG_MMU2_LOAD_TO_NOZZLE _UxGT("Carica fino ugello")
  438. #define MSG_MMU2_EJECT_FILAMENT _UxGT("Espelli filamento")
  439. #define MSG_MMU2_EJECT_FILAMENT0 _UxGT("Espelli filam.1")
  440. #define MSG_MMU2_EJECT_FILAMENT1 _UxGT("Espelli filam.2")
  441. #define MSG_MMU2_EJECT_FILAMENT2 _UxGT("Espelli filam.3")
  442. #define MSG_MMU2_EJECT_FILAMENT3 _UxGT("Espelli filam.4")
  443. #define MSG_MMU2_EJECT_FILAMENT4 _UxGT("Espelli filam.5")
  444. #define MSG_MMU2_UNLOAD_FILAMENT _UxGT("Scarica filamento")
  445. #define MSG_MMU2_LOADING_FILAMENT _UxGT("Caric.fil. %i...")
  446. #define MSG_MMU2_EJECTING_FILAMENT _UxGT("Esplus.filam. ...")
  447. #define MSG_MMU2_UNLOADING_FILAMENT _UxGT("Scaric.filam. ...")
  448. #define MSG_MMU2_ALL _UxGT("Tutto")
  449. #define MSG_MMU2_FILAMENT0 _UxGT("Filamento 1")
  450. #define MSG_MMU2_FILAMENT1 _UxGT("Filamento 2")
  451. #define MSG_MMU2_FILAMENT2 _UxGT("Filamento 3")
  452. #define MSG_MMU2_FILAMENT3 _UxGT("Filamento 4")
  453. #define MSG_MMU2_FILAMENT4 _UxGT("Filamento 5")
  454. #define MSG_MMU2_RESET _UxGT("Azzera MMU")
  455. #define MSG_MMU2_RESETTING _UxGT("Azzeramento MMU...")
  456. #define MSG_MMU2_EJECT_RECOVER _UxGT("Rimuovi, click")
  457. #define MSG_MIX _UxGT("Miscela")
  458. #define MSG_MIX_COMPONENT _UxGT("Componente")
  459. #define MSG_MIXER _UxGT("Miscelatore")
  460. #define MSG_GRADIENT _UxGT("Gradiente")
  461. #define MSG_FULL_GRADIENT _UxGT("Gradiente pieno")
  462. #define MSG_TOGGLE_MIX _UxGT("Alterna miscela")
  463. #define MSG_CYCLE_MIX _UxGT("Ciclo miscela")
  464. #define MSG_GRADIENT_MIX _UxGT("Miscela gradiente")
  465. #define MSG_REVERSE_GRADIENT _UxGT("Inverti gradiente")
  466. #define MSG_ACTIVE_VTOOL _UxGT("V-tool attivo")
  467. #define MSG_START_VTOOL _UxGT("V-tool iniziale")
  468. #define MSG_END_VTOOL _UxGT("V-tool finale")
  469. #define MSG_GRADIENT_ALIAS _UxGT("V-tool alias")
  470. #define MSG_RESET_VTOOLS _UxGT("Ripristina V-tools")
  471. #define MSG_COMMIT_VTOOL _UxGT("Commit mix V-tool")
  472. #define MSG_VTOOLS_RESET _UxGT("V-tools ripristin.")
  473. #define MSG_START_Z _UxGT("Z inizio")
  474. #define MSG_END_Z _UxGT("Z fine")
  475. #define MSG_BRICKOUT _UxGT("Brickout")
  476. #define MSG_INVADERS _UxGT("Invaders")
  477. #define MSG_SNAKE _UxGT("Sn4k3")
  478. #define MSG_MAZE _UxGT("Maze")
  479. //
  480. // Le schermate di Cambio Filamento possono visualizzare fino a 3 linee su un display a 4 righe
  481. // ...o fino a 2 linee su un display a 3 righe.
  482. #if LCD_HEIGHT >= 4
  483. #define MSG_ADVANCED_PAUSE_WAITING_1 _UxGT("Premi per")
  484. #define MSG_ADVANCED_PAUSE_WAITING_2 _UxGT("riprendere")
  485. #define MSG_ADVANCED_PAUSE_WAITING_3 _UxGT("la stampa")
  486. #define MSG_PAUSE_PRINT_INIT_1 _UxGT("Parcheggiando...")
  487. #define MSG_FILAMENT_CHANGE_INIT_1 _UxGT("Attendere avvio")
  488. #define MSG_FILAMENT_CHANGE_INIT_2 _UxGT("del cambio")
  489. #define MSG_FILAMENT_CHANGE_INIT_3 _UxGT("di filamento")
  490. #define MSG_FILAMENT_CHANGE_INSERT_1 _UxGT("Inserisci il")
  491. #define MSG_FILAMENT_CHANGE_INSERT_2 _UxGT("filamento e premi")
  492. #define MSG_FILAMENT_CHANGE_INSERT_3 _UxGT("per continuare")
  493. #define MSG_FILAMENT_CHANGE_HEAT_1 _UxGT("Premi per")
  494. #define MSG_FILAMENT_CHANGE_HEAT_2 _UxGT("riscaldare ugello")
  495. #define MSG_FILAMENT_CHANGE_HEATING_1 _UxGT("Riscaldam. ugello")
  496. #define MSG_FILAMENT_CHANGE_HEATING_2 _UxGT("Attendere prego...")
  497. #define MSG_FILAMENT_CHANGE_UNLOAD_1 _UxGT("Attendere")
  498. #define MSG_FILAMENT_CHANGE_UNLOAD_2 _UxGT("l'espulsione")
  499. #define MSG_FILAMENT_CHANGE_UNLOAD_3 _UxGT("del filamento")
  500. #define MSG_FILAMENT_CHANGE_LOAD_1 _UxGT("Attendere")
  501. #define MSG_FILAMENT_CHANGE_LOAD_2 _UxGT("il caricamento")
  502. #define MSG_FILAMENT_CHANGE_LOAD_3 _UxGT("del filamento")
  503. #define MSG_FILAMENT_CHANGE_PURGE_1 _UxGT("Attendere")
  504. #define MSG_FILAMENT_CHANGE_PURGE_2 _UxGT("lo spurgo")
  505. #define MSG_FILAMENT_CHANGE_PURGE_3 _UxGT("del filamento")
  506. #define MSG_FILAMENT_CHANGE_CONT_PURGE_1 _UxGT("Premi x terminare")
  507. #define MSG_FILAMENT_CHANGE_CONT_PURGE_2 _UxGT("lo spurgo")
  508. #define MSG_FILAMENT_CHANGE_CONT_PURGE_3 _UxGT("del filamento")
  509. #define MSG_FILAMENT_CHANGE_RESUME_1 _UxGT("Attendere")
  510. #define MSG_FILAMENT_CHANGE_RESUME_2 _UxGT("la ripresa")
  511. #define MSG_FILAMENT_CHANGE_RESUME_3 _UxGT("della stampa...")
  512. #else // LCD_HEIGHT < 4
  513. #define MSG_ADVANCED_PAUSE_WAITING_1 _UxGT("Premi x continuare")
  514. #define MSG_FILAMENT_CHANGE_INIT_1 _UxGT("Attendere...")
  515. #define MSG_FILAMENT_CHANGE_INSERT_1 _UxGT("Inserisci e premi")
  516. #define MSG_FILAMENT_CHANGE_HEAT_1 _UxGT("Riscalda ugello")
  517. #define MSG_FILAMENT_CHANGE_HEATING_1 _UxGT("Riscaldamento...")
  518. #define MSG_FILAMENT_CHANGE_UNLOAD_1 _UxGT("Espulsione...")
  519. #define MSG_FILAMENT_CHANGE_LOAD_1 _UxGT("Caricamento...")
  520. #define MSG_FILAMENT_CHANGE_PURGE_1 _UxGT("Spurgo filamento")
  521. #define MSG_FILAMENT_CHANGE_CONT_PURGE_1 _UxGT("Premi x terminare")
  522. #define MSG_FILAMENT_CHANGE_RESUME_1 _UxGT("Ripresa...")
  523. #endif // LCD_HEIGHT < 4
  524. #define MSG_TMC_DRIVERS _UxGT("Drivers TMC")
  525. #define MSG_TMC_CURRENT _UxGT("Driver in uso")
  526. #define MSG_TMC_HYBRID_THRS _UxGT("Soglia modo ibrido")
  527. #define MSG_TMC_HOMING_THRS _UxGT("Azzer. sensorless")
  528. #define MSG_TMC_STEPPING_MODE _UxGT("Modo stepping")
  529. #define MSG_TMC_STEALTH_ENABLED _UxGT("StealthChop abil.")
  530. #define MSG_SERVICE_RESET _UxGT("Resetta")
  531. #define MSG_SERVICE_IN _UxGT(" tra:")
  532. #define MSG_BACKLASH _UxGT("Gioco")
  533. #define MSG_BACKLASH_CORRECTION _UxGT("Correzione")
  534. #define MSG_BACKLASH_SMOOTHING _UxGT("Smoothing")