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_fr.h 34KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562
  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. * French
  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 CHARSIZE 2
  32. #define WELCOME_MSG MACHINE_NAME _UxGT(" prête.")
  33. #define MSG_YES _UxGT("Oui")
  34. #define MSG_NO _UxGT("Non")
  35. #define MSG_BACK _UxGT("Retour")
  36. #define MSG_MEDIA_ABORTING _UxGT("Annulation...")
  37. #define MSG_MEDIA_INSERTED _UxGT("Média inséré")
  38. #define MSG_MEDIA_REMOVED _UxGT("Média retiré")
  39. #define MSG_MEDIA_RELEASED _UxGT("Média libéré")
  40. #define MSG_MEDIA_WAITING _UxGT("Attente média")
  41. #define MSG_MEDIA_READ_ERROR _UxGT("Err lecture média")
  42. #define MSG_MEDIA_USB_REMOVED _UxGT("USB débranché")
  43. #define MSG_MEDIA_USB_FAILED _UxGT("Erreur média USB")
  44. #define MSG_LCD_ENDSTOPS _UxGT("Butées")
  45. #define MSG_LCD_SOFT_ENDSTOPS _UxGT("Butées SW")
  46. #define MSG_MAIN _UxGT("Menu principal")
  47. #define MSG_ADVANCED_SETTINGS _UxGT("Config. avancée")
  48. #define MSG_CONFIGURATION _UxGT("Configuration")
  49. #define MSG_AUTOSTART _UxGT("Exéc. auto#.gcode")
  50. #define MSG_DISABLE_STEPPERS _UxGT("Arrêter moteurs")
  51. #define MSG_DEBUG_MENU _UxGT("Menu debug")
  52. #define MSG_PROGRESS_BAR_TEST _UxGT("Test barre progress.")
  53. #define MSG_AUTO_HOME _UxGT("Origine auto")
  54. #define MSG_AUTO_HOME_X _UxGT("Origine X auto")
  55. #define MSG_AUTO_HOME_Y _UxGT("Origine Y auto")
  56. #define MSG_AUTO_HOME_Z _UxGT("Origine Z auto")
  57. #define MSG_AUTO_Z_ALIGN _UxGT("Align. Z auto")
  58. #define MSG_LEVEL_BED_HOMING _UxGT("Origine XYZ...")
  59. #define MSG_LEVEL_BED_WAITING _UxGT("Clic pour commencer")
  60. #define MSG_LEVEL_BED_NEXT_POINT _UxGT("Point suivant")
  61. #define MSG_LEVEL_BED_DONE _UxGT("Mise à niveau OK!")
  62. #define MSG_Z_FADE_HEIGHT _UxGT("Hauteur lissée")
  63. #define MSG_SET_HOME_OFFSETS _UxGT("Régl. décal origine")
  64. #define MSG_HOME_OFFSETS_APPLIED _UxGT("Décalages appliqués")
  65. #define MSG_SET_ORIGIN _UxGT("Régler origine")
  66. #define MSG_PREHEAT_1 _UxGT("Préchauffage " PREHEAT_1_LABEL)
  67. #define MSG_PREHEAT_1_N _UxGT("Préchauff. " PREHEAT_1_LABEL " ")
  68. #define MSG_PREHEAT_1_ALL _UxGT("Préch. " PREHEAT_1_LABEL " Tout")
  69. #define MSG_PREHEAT_1_END _UxGT("Préch. " PREHEAT_1_LABEL " buse")
  70. #define MSG_PREHEAT_1_BEDONLY _UxGT("Préch. " PREHEAT_1_LABEL " lit")
  71. #define MSG_PREHEAT_1_SETTINGS _UxGT("Régler préch. " PREHEAT_1_LABEL)
  72. #define MSG_PREHEAT_2 _UxGT("Préchauffage " PREHEAT_2_LABEL)
  73. #define MSG_PREHEAT_2_N _UxGT("Préchauff. " PREHEAT_2_LABEL " ")
  74. #define MSG_PREHEAT_2_ALL _UxGT("Préch. " PREHEAT_2_LABEL " Tout")
  75. #define MSG_PREHEAT_2_END _UxGT("Préch. " PREHEAT_2_LABEL " buse")
  76. #define MSG_PREHEAT_2_BEDONLY _UxGT("Préch. " PREHEAT_2_LABEL " lit")
  77. #define MSG_PREHEAT_2_SETTINGS _UxGT("Régler préch. " PREHEAT_2_LABEL)
  78. #define MSG_PREHEAT_CUSTOM _UxGT("Préchauffage perso")
  79. #define MSG_COOLDOWN _UxGT("Refroidir")
  80. #define MSG_LASER_MENU _UxGT("Contrôle Laser")
  81. #define MSG_LASER_OFF _UxGT("Laser Off")
  82. #define MSG_LASER_ON _UxGT("Laser On")
  83. #define MSG_LASER_POWER _UxGT("Puissance")
  84. #define MSG_SPINDLE_REVERSE _UxGT("Inverser broches")
  85. #define MSG_SWITCH_PS_ON _UxGT("Allumer alim.")
  86. #define MSG_SWITCH_PS_OFF _UxGT("Eteindre alim.")
  87. #define MSG_EXTRUDE _UxGT("Extrusion")
  88. #define MSG_RETRACT _UxGT("Retrait")
  89. #define MSG_MOVE_AXIS _UxGT("Déplacer un axe")
  90. #define MSG_BED_LEVELING _UxGT("Régler Niv. lit")
  91. #define MSG_LEVEL_BED _UxGT("Niveau du lit")
  92. #define MSG_LEVEL_CORNERS _UxGT("Niveau des coins")
  93. #define MSG_NEXT_CORNER _UxGT("Coin suivant")
  94. #define MSG_MESH_EDITOR _UxGT("Edition Maillage")
  95. #define MSG_EDIT_MESH _UxGT("Modifier maille")
  96. #define MSG_EDITING_STOPPED _UxGT("Arrêt édit. maillage")
  97. #define MSG_PROBING_MESH _UxGT("Mesure point")
  98. #define MSG_MESH_X _UxGT("Index X")
  99. #define MSG_MESH_Y _UxGT("Index Y")
  100. #define MSG_MESH_EDIT_Z _UxGT("Valeur Z")
  101. #define MSG_USER_MENU _UxGT("Commandes perso")
  102. #define MSG_LCD_TILTING_MESH _UxGT("Touche point")
  103. #define MSG_M48_TEST _UxGT("Ecart sonde Z M48")
  104. #define MSG_M48_DEVIATION _UxGT("Ecart")
  105. #define MSG_M48_POINT _UxGT("Point M48")
  106. #define MSG_IDEX_MENU _UxGT("Mode IDEX")
  107. #define MSG_IDEX_MODE_AUTOPARK _UxGT("Auto-Park")
  108. #define MSG_IDEX_MODE_DUPLICATE _UxGT("Duplication")
  109. #define MSG_IDEX_MODE_MIRRORED_COPY _UxGT("Copie miroir")
  110. #define MSG_IDEX_MODE_FULL_CTRL _UxGT("Contrôle complet")
  111. #define MSG_OFFSETS_MENU _UxGT("Offsets Outil")
  112. #define MSG_X_OFFSET _UxGT("Buse 2 X")
  113. #define MSG_Y_OFFSET _UxGT("Buse 2 Y")
  114. #define MSG_Z_OFFSET _UxGT("Buse 2 Z")
  115. #define MSG_G26_HEATING_BED _UxGT("G26 Chauffe lit")
  116. #define MSG_G26_HEATING_NOZZLE _UxGT("G26 Chauffe buse")
  117. #define MSG_G26_MANUAL_PRIME _UxGT("Amorce manuelle...")
  118. #define MSG_G26_FIXED_LENGTH _UxGT("Amorce longueur fixe")
  119. #define MSG_G26_PRIME_DONE _UxGT("Amorce terminée")
  120. #define MSG_G26_CANCELED _UxGT("G26 annulé")
  121. #define MSG_G26_LEAVING _UxGT("Sortie G26")
  122. #define MSG_UBL_DOING_G29 _UxGT("G29 en cours")
  123. #define MSG_UBL_TOOLS _UxGT("Outils UBL")
  124. #define MSG_UBL_LEVEL_BED _UxGT("Niveau lit unifié")
  125. #define MSG_UBL_MANUAL_MESH _UxGT("Maillage manuel")
  126. #define MSG_UBL_BC_INSERT _UxGT("Poser câle & mesurer")
  127. #define MSG_UBL_BC_INSERT2 _UxGT("Mesure")
  128. #define MSG_UBL_BC_REMOVE _UxGT("ôter et mesurer lit")
  129. #define MSG_UBL_MOVING_TO_NEXT _UxGT("Aller au suivant")
  130. #define MSG_UBL_ACTIVATE_MESH _UxGT("Activer l'UBL")
  131. #define MSG_UBL_DEACTIVATE_MESH _UxGT("Désactiver l'UBL")
  132. #define MSG_UBL_SET_TEMP_BED _UxGT("Température lit")
  133. #define MSG_UBL_BED_TEMP_CUSTOM MSG_UBL_SET_TEMP_BED
  134. #define MSG_UBL_SET_TEMP_HOTEND _UxGT("Température buse")
  135. #define MSG_UBL_HOTEND_TEMP_CUSTOM MSG_UBL_SET_TEMP_HOTEND
  136. #define MSG_UBL_MESH_EDIT _UxGT("Editer maille")
  137. #define MSG_UBL_EDIT_CUSTOM_MESH _UxGT("Editer maille perso")
  138. #define MSG_UBL_FINE_TUNE_MESH _UxGT("Réglage fin maille")
  139. #define MSG_UBL_DONE_EDITING_MESH _UxGT("Terminer maille")
  140. #define MSG_UBL_BUILD_CUSTOM_MESH _UxGT("Créer maille perso")
  141. #define MSG_UBL_BUILD_MESH_MENU _UxGT("Créer maille")
  142. #define MSG_UBL_BUILD_MESH_M1 _UxGT("Créer maille " PREHEAT_1_LABEL)
  143. #define MSG_UBL_BUILD_MESH_M2 _UxGT("Créer maille " PREHEAT_2_LABEL)
  144. #define MSG_UBL_BUILD_COLD_MESH _UxGT("Créer maille froide")
  145. #define MSG_UBL_MESH_HEIGHT_ADJUST _UxGT("Ajuster haut. maille")
  146. #define MSG_UBL_MESH_HEIGHT_AMOUNT _UxGT("Hauteur")
  147. #define MSG_UBL_VALIDATE_MESH_MENU _UxGT("Valider maille")
  148. #define MSG_UBL_VALIDATE_MESH_M1 _UxGT("Valider maille " PREHEAT_1_LABEL)
  149. #define MSG_UBL_VALIDATE_MESH_M2 _UxGT("Valider maille " PREHEAT_2_LABEL)
  150. #define MSG_UBL_VALIDATE_CUSTOM_MESH _UxGT("Valider maille perso")
  151. #define MSG_UBL_CONTINUE_MESH _UxGT("Continuer maille")
  152. #define MSG_UBL_MESH_LEVELING _UxGT("Niveau par maille")
  153. #define MSG_UBL_3POINT_MESH_LEVELING _UxGT("Niveau à 3 points")
  154. #define MSG_UBL_GRID_MESH_LEVELING _UxGT("Niveau grille")
  155. #define MSG_UBL_MESH_LEVEL _UxGT("Maille de niveau")
  156. #define MSG_UBL_SIDE_POINTS _UxGT("Point latéral")
  157. #define MSG_UBL_MAP_TYPE _UxGT("Type de carte")
  158. #define MSG_UBL_OUTPUT_MAP _UxGT("Voir maille")
  159. #define MSG_UBL_OUTPUT_MAP_HOST _UxGT("Voir pour hôte")
  160. #define MSG_UBL_OUTPUT_MAP_CSV _UxGT("Voir pour CSV")
  161. #define MSG_UBL_OUTPUT_MAP_BACKUP _UxGT("Voir pour sauveg.")
  162. #define MSG_UBL_INFO_UBL _UxGT("Voir info UBL")
  163. #define MSG_UBL_FILLIN_AMOUNT _UxGT("Taux de remplissage")
  164. #define MSG_UBL_MANUAL_FILLIN _UxGT("Remplissage manuel")
  165. #define MSG_UBL_SMART_FILLIN _UxGT("Remplissage auto")
  166. #define MSG_UBL_FILLIN_MESH _UxGT("Maille remplissage")
  167. #define MSG_UBL_INVALIDATE_ALL _UxGT("Tout annuler")
  168. #define MSG_UBL_INVALIDATE_CLOSEST _UxGT("Annuler le plus près")
  169. #define MSG_UBL_FINE_TUNE_ALL _UxGT("Réglage fin (tous)")
  170. #define MSG_UBL_FINE_TUNE_CLOSEST _UxGT("Réglage fin (proche)")
  171. #define MSG_UBL_STORAGE_MESH_MENU _UxGT("Stockage maille")
  172. #define MSG_UBL_STORAGE_SLOT _UxGT("Slot mémoire")
  173. #define MSG_UBL_LOAD_MESH _UxGT("Charger maille")
  174. #define MSG_UBL_SAVE_MESH _UxGT("Sauver maille")
  175. #define MSG_MESH_LOADED _UxGT("Maille %i chargée")
  176. #define MSG_MESH_SAVED _UxGT("Maille %i enreg.")
  177. #define MSG_UBL_NO_STORAGE _UxGT("Pas de mémoire")
  178. #define MSG_UBL_SAVE_ERROR _UxGT("Err: Enreg. UBL")
  179. #define MSG_UBL_RESTORE_ERROR _UxGT("Err: Ouvrir UBL")
  180. #define MSG_UBL_Z_OFFSET _UxGT("Z-Offset: ")
  181. #define MSG_UBL_Z_OFFSET_STOPPED _UxGT("Décal. Z arrêté")
  182. #define MSG_UBL_STEP_BY_STEP_MENU _UxGT("UBL Pas à pas")
  183. #define MSG_LED_CONTROL _UxGT("Contrôle LED")
  184. #define MSG_LEDS _UxGT("Lumière")
  185. #define MSG_LED_PRESETS _UxGT("Préregl. LED")
  186. #define MSG_SET_LEDS_RED _UxGT("Rouge")
  187. #define MSG_SET_LEDS_ORANGE _UxGT("Orange")
  188. #define MSG_SET_LEDS_YELLOW _UxGT("Jaune")
  189. #define MSG_SET_LEDS_GREEN _UxGT("Vert")
  190. #define MSG_SET_LEDS_BLUE _UxGT("Bleu")
  191. #define MSG_SET_LEDS_INDIGO _UxGT("Indigo")
  192. #define MSG_SET_LEDS_VIOLET _UxGT("Violet")
  193. #define MSG_SET_LEDS_WHITE _UxGT("Blanc")
  194. #define MSG_SET_LEDS_DEFAULT _UxGT("Defaut")
  195. #define MSG_CUSTOM_LEDS _UxGT("LEDs perso.")
  196. #define MSG_INTENSITY_R _UxGT("Intensité rouge")
  197. #define MSG_INTENSITY_G _UxGT("Intensité vert")
  198. #define MSG_INTENSITY_B _UxGT("Intensité bleu")
  199. #define MSG_INTENSITY_W _UxGT("Intensité blanc")
  200. #define MSG_LED_BRIGHTNESS _UxGT("Luminosité")
  201. #define MSG_MOVING _UxGT("Déplacement...")
  202. #define MSG_FREE_XY _UxGT("Débloquer XY")
  203. #define MSG_MOVE_X _UxGT("Déplacer X")
  204. #define MSG_MOVE_Y _UxGT("Déplacer Y")
  205. #define MSG_MOVE_Z _UxGT("Déplacer Z")
  206. #define MSG_MOVE_E _UxGT("Extrudeur")
  207. #define MSG_HOTEND_TOO_COLD _UxGT("Buse trop froide")
  208. #define MSG_MOVE_Z_DIST _UxGT("Déplacer %smm")
  209. #define MSG_MOVE_01MM _UxGT("Déplacer 0.1mm")
  210. #define MSG_MOVE_1MM _UxGT("Déplacer 1mm")
  211. #define MSG_MOVE_10MM _UxGT("Déplacer 10mm")
  212. #define MSG_SPEED _UxGT("Vitesse")
  213. #define MSG_BED_Z _UxGT("Lit Z")
  214. #define MSG_NOZZLE _UxGT("Buse")
  215. #define MSG_BED _UxGT("Lit")
  216. #define MSG_CHAMBER _UxGT("Caisson")
  217. #define MSG_FAN_SPEED _UxGT("Vitesse ventil.")
  218. #define MSG_EXTRA_FAN_SPEED _UxGT("Extra V ventil.")
  219. #define MSG_FLOW _UxGT("Flux")
  220. #define MSG_CONTROL _UxGT("Contrôler")
  221. #define MSG_MIN LCD_STR_THERMOMETER _UxGT(" Min")
  222. #define MSG_MAX LCD_STR_THERMOMETER _UxGT(" Max")
  223. #define MSG_FACTOR LCD_STR_THERMOMETER _UxGT(" Facteur")
  224. #define MSG_AUTOTEMP _UxGT("Temp. Auto.")
  225. #define MSG_LCD_ON _UxGT("Marche")
  226. #define MSG_LCD_OFF _UxGT("Arrêt")
  227. #define MSG_PID_P _UxGT("PID-P")
  228. #define MSG_PID_I _UxGT("PID-I")
  229. #define MSG_PID_D _UxGT("PID-D")
  230. #define MSG_PID_C _UxGT("PID-C")
  231. #define MSG_SELECT _UxGT("Sélectionner")
  232. #define MSG_ACC _UxGT("Accélération")
  233. #define MSG_JERK _UxGT("Jerk")
  234. #if IS_KINEMATIC
  235. #define MSG_VA_JERK _UxGT("Va jerk")
  236. #define MSG_VB_JERK _UxGT("Vb jerk")
  237. #define MSG_VC_JERK _UxGT("Vc jerk")
  238. #else
  239. #define MSG_VA_JERK _UxGT("Vx jerk")
  240. #define MSG_VB_JERK _UxGT("Vy jerk")
  241. #define MSG_VC_JERK _UxGT("Vz jerk")
  242. #endif
  243. #define MSG_VE_JERK _UxGT("Ve jerk")
  244. #define MSG_VELOCITY _UxGT("Vélocité")
  245. #define MSG_JUNCTION_DEVIATION _UxGT("Déviat. jonct.")
  246. #define MSG_VMAX _UxGT("Vmax ")
  247. #define MSG_VMIN _UxGT("Vmin ")
  248. #define MSG_VTRAV_MIN _UxGT("V dépl. min")
  249. #define MSG_ACCELERATION _UxGT("Accélération")
  250. #define MSG_AMAX _UxGT("Amax ")
  251. #define MSG_A_RETRACT _UxGT("A retrait")
  252. #define MSG_A_TRAVEL _UxGT("A dépl.")
  253. #define MSG_STEPS_PER_MM _UxGT("Pas/mm")
  254. #if IS_KINEMATIC
  255. #define MSG_ASTEPS _UxGT("A pas/mm")
  256. #define MSG_BSTEPS _UxGT("B pas/mm")
  257. #define MSG_CSTEPS _UxGT("C pas/mm")
  258. #else
  259. #define MSG_ASTEPS _UxGT("X pas/mm")
  260. #define MSG_BSTEPS _UxGT("Y pas/mm")
  261. #define MSG_CSTEPS _UxGT("Z pas/mm")
  262. #endif
  263. #define MSG_ESTEPS _UxGT("E pas/mm")
  264. #define MSG_E1STEPS _UxGT("E1 pas/mm")
  265. #define MSG_E2STEPS _UxGT("E2 pas/mm")
  266. #define MSG_E3STEPS _UxGT("E3 pas/mm")
  267. #define MSG_E4STEPS _UxGT("E4 pas/mm")
  268. #define MSG_E5STEPS _UxGT("E5 pas/mm")
  269. #define MSG_E6STEPS _UxGT("E6 pas/mm")
  270. #define MSG_TEMPERATURE _UxGT("Température")
  271. #define MSG_MOTION _UxGT("Mouvement")
  272. #define MSG_FILAMENT _UxGT("Filament")
  273. #define MSG_VOLUMETRIC_ENABLED _UxGT("E en mm3")
  274. #define MSG_FILAMENT_DIAM _UxGT("Diamètre fil.")
  275. #define MSG_FILAMENT_UNLOAD _UxGT("Retrait mm")
  276. #define MSG_FILAMENT_LOAD _UxGT("Charger mm")
  277. #define MSG_ADVANCE_K _UxGT("Avance K")
  278. #define MSG_CONTRAST _UxGT("Contraste LCD")
  279. #define MSG_STORE_EEPROM _UxGT("Enregistrer config.")
  280. #define MSG_LOAD_EEPROM _UxGT("Charger config.")
  281. #define MSG_RESTORE_FAILSAFE _UxGT("Restaurer défauts")
  282. #define MSG_INIT_EEPROM _UxGT("Initialiser EEPROM")
  283. #define MSG_MEDIA_UPDATE _UxGT("MaJ Firmware SD")
  284. #define MSG_RESET_PRINTER _UxGT("RaZ imprimante")
  285. #define MSG_REFRESH _UxGT("Actualiser")
  286. #define MSG_WATCH _UxGT("Surveiller")
  287. #define MSG_PREPARE _UxGT("Préparer")
  288. #define MSG_TUNE _UxGT("Régler")
  289. #define MSG_START_PRINT _UxGT("Démarrer impression")
  290. #define MSG_BUTTON_NEXT _UxGT("Suivant")
  291. #define MSG_BUTTON_INIT _UxGT("Init.")
  292. #define MSG_BUTTON_STOP _UxGT("Stop")
  293. #define MSG_BUTTON_PRINT _UxGT("Imprimer")
  294. #define MSG_BUTTON_RESET _UxGT("Reset")
  295. #define MSG_BUTTON_CANCEL _UxGT("Annuler")
  296. #define MSG_BUTTON_DONE _UxGT("Terminé")
  297. #define MSG_PAUSE_PRINT _UxGT("Pause impression")
  298. #define MSG_RESUME_PRINT _UxGT("Reprendre impr.")
  299. #define MSG_STOP_PRINT _UxGT("Arrêter impr.")
  300. #define MSG_OUTAGE_RECOVERY _UxGT("Récupér. coupure")
  301. #define MSG_MEDIA_MENU _UxGT("Impression SD")
  302. #define MSG_NO_MEDIA _UxGT("Pas de média")
  303. #define MSG_DWELL _UxGT("Repos...")
  304. #define MSG_USERWAIT _UxGT("Attente utilis.")
  305. #define MSG_PRINT_PAUSED _UxGT("Impr. en pause")
  306. #define MSG_PRINTING _UxGT("Impression")
  307. #define MSG_PRINT_ABORTED _UxGT("Impr. annulée")
  308. #define MSG_NO_MOVE _UxGT("Moteurs bloqués")
  309. #define MSG_KILLED _UxGT("KILLED")
  310. #define MSG_STOPPED _UxGT("STOPPÉ")
  311. #define MSG_CONTROL_RETRACT _UxGT("Retrait mm")
  312. #define MSG_CONTROL_RETRACT_SWAP _UxGT("Ech. Retr. mm")
  313. #define MSG_CONTROL_RETRACTF _UxGT("Retrait V")
  314. #define MSG_CONTROL_RETRACT_ZHOP _UxGT("Saut Z mm")
  315. #define MSG_CONTROL_RETRACT_RECOVER _UxGT("Rappel mm")
  316. #define MSG_CONTROL_RETRACT_RECOVER_SWAP _UxGT("Ech. Rappel mm")
  317. #define MSG_CONTROL_RETRACT_RECOVERF _UxGT("Rappel V")
  318. #define MSG_CONTROL_RETRACT_RECOVER_SWAPF _UxGT("Ech. Rappel V")
  319. #define MSG_AUTORETRACT _UxGT("Retrait auto")
  320. #define MSG_TOOL_CHANGE _UxGT("Changement outil")
  321. #define MSG_TOOL_CHANGE_ZLIFT _UxGT("Augmenter Z")
  322. #define MSG_SINGLENOZZLE_PRIME_SPD _UxGT("Vitesse primaire")
  323. #define MSG_SINGLENOZZLE_RETRACT_SPD _UxGT("Vitesse retrait")
  324. #define MSG_NOZZLE_STANDBY _UxGT("Attente buse")
  325. #define MSG_FILAMENT_SWAP_LENGTH _UxGT("Distance retrait")
  326. #define MSG_FILAMENT_PURGE_LENGTH _UxGT("Longueur de purge")
  327. #define MSG_FILAMENTCHANGE _UxGT("Changer filament")
  328. #define MSG_FILAMENTLOAD _UxGT("Charger filament")
  329. #define MSG_FILAMENTUNLOAD _UxGT("Retrait filament")
  330. #define MSG_FILAMENTUNLOAD_ALL _UxGT("Décharger tout")
  331. #define MSG_INIT_MEDIA _UxGT("Charger le média")
  332. #define MSG_CHANGE_MEDIA _UxGT("Actualiser média")
  333. #define MSG_RELEASE_MEDIA _UxGT("Retirer le média")
  334. #define MSG_ZPROBE_OUT _UxGT("Sonde Z hors lit")
  335. #define MSG_SKEW_FACTOR _UxGT("Facteur écart")
  336. #define MSG_BLTOUCH _UxGT("BLTouch")
  337. #define MSG_BLTOUCH_SELFTEST _UxGT("Cmd: Self-Test")
  338. #define MSG_BLTOUCH_RESET _UxGT("Cmd: Reset")
  339. #define MSG_BLTOUCH_STOW _UxGT("Cmd: Ranger")
  340. #define MSG_BLTOUCH_DEPLOY _UxGT("Cmd: Déployer")
  341. #define MSG_BLTOUCH_SW_MODE _UxGT("Cmd: Mode SW")
  342. #define MSG_BLTOUCH_5V_MODE _UxGT("Cmd: Mode 5V")
  343. #define MSG_BLTOUCH_OD_MODE _UxGT("Cmd: Mode OD")
  344. #define MSG_BLTOUCH_MODE_STORE _UxGT("Appliquer Mode")
  345. #define MSG_BLTOUCH_MODE_STORE_5V _UxGT("Mise en 5V")
  346. #define MSG_BLTOUCH_MODE_STORE_OD _UxGT("Mise en OD")
  347. #define MSG_BLTOUCH_MODE_ECHO _UxGT("Afficher Mode")
  348. #define MSG_TOUCHMI_PROBE _UxGT("TouchMI")
  349. #define MSG_TOUCHMI_INIT _UxGT("Init. TouchMI")
  350. #define MSG_TOUCHMI_ZTEST _UxGT("Test décalage Z")
  351. #define MSG_TOUCHMI_SAVE _UxGT("Sauvegarde")
  352. #define MSG_MANUAL_DEPLOY_TOUCHMI _UxGT("Déployer TouchMI")
  353. #define MSG_MANUAL_DEPLOY _UxGT("Déployer Sonde Z")
  354. #define MSG_MANUAL_STOW _UxGT("Ranger Sonde Z")
  355. #define MSG_HOME_FIRST _UxGT("Origine %s%s%s Premier")
  356. #define MSG_ZPROBE_ZOFFSET _UxGT("Décalage Z")
  357. #define MSG_BABYSTEP_X _UxGT("Babystep X")
  358. #define MSG_BABYSTEP_Y _UxGT("Babystep Y")
  359. #define MSG_BABYSTEP_Z _UxGT("Babystep Z")
  360. #define MSG_BABYSTEP_TOTAL _UxGT("Total")
  361. #define MSG_ENDSTOP_ABORT _UxGT("Butée abandon")
  362. #define MSG_HEATING_FAILED_LCD _UxGT("Err de chauffe")
  363. #define MSG_HEATING_FAILED_LCD_BED _UxGT("Err de chauffe lit")
  364. #define MSG_HEATING_FAILED_LCD_CHAMBER _UxGT("Err chauffe caisson")
  365. #define MSG_ERR_REDUNDANT_TEMP _UxGT("Err TEMP. REDONDANTE")
  366. #define MSG_THERMAL_RUNAWAY _UxGT("Err THERMIQUE")
  367. #define MSG_THERMAL_RUNAWAY_BED _UxGT("Err THERMIQUE LIT")
  368. #define MSG_THERMAL_RUNAWAY_CHAMBER _UxGT("Err THERMIQUE CAISSON")
  369. #define MSG_ERR_MAXTEMP _UxGT("Err TEMP. MAX")
  370. #define MSG_ERR_MINTEMP _UxGT("Err TEMP. MIN")
  371. #define MSG_ERR_MAXTEMP_BED _UxGT("Err TEMP. MAX LIT")
  372. #define MSG_ERR_MINTEMP_BED _UxGT("Err TEMP. MIN LIT")
  373. #define MSG_ERR_MAXTEMP_CHAMBER _UxGT("Err MAXTEMP CAISSON")
  374. #define MSG_ERR_MINTEMP_CHAMBER _UxGT("Err MINTEMP CAISSON")
  375. #define MSG_ERR_Z_HOMING _UxGT("Origine XY Premier")
  376. #define MSG_HALTED _UxGT("IMPR. STOPPÉE")
  377. #define MSG_PLEASE_RESET _UxGT("Redémarrer SVP")
  378. #define MSG_SHORT_DAY _UxGT("j") // One character only
  379. #define MSG_SHORT_HOUR _UxGT("h") // One character only
  380. #define MSG_SHORT_MINUTE _UxGT("m") // One character only
  381. #define MSG_HEATING _UxGT("En chauffe...")
  382. #define MSG_COOLING _UxGT("Refroidissement")
  383. #define MSG_BED_HEATING _UxGT("Lit en chauffe...")
  384. #define MSG_BED_COOLING _UxGT("Refroid. du lit...")
  385. #define MSG_CHAMBER_HEATING _UxGT("Chauffe caisson...")
  386. #define MSG_CHAMBER_COOLING _UxGT("Refroid. caisson...")
  387. #define MSG_DELTA_CALIBRATE _UxGT("Calibration Delta")
  388. #define MSG_DELTA_CALIBRATE_X _UxGT("Calibrer X")
  389. #define MSG_DELTA_CALIBRATE_Y _UxGT("Calibrer Y")
  390. #define MSG_DELTA_CALIBRATE_Z _UxGT("Calibrer Z")
  391. #define MSG_DELTA_CALIBRATE_CENTER _UxGT("Calibrer centre")
  392. #define MSG_DELTA_SETTINGS _UxGT("Réglages Delta")
  393. #define MSG_DELTA_AUTO_CALIBRATE _UxGT("Calibration Auto")
  394. #define MSG_DELTA_HEIGHT_CALIBRATE _UxGT("Hauteur Delta")
  395. #define MSG_DELTA_Z_OFFSET_CALIBRATE _UxGT("Delta Z sonde")
  396. #define MSG_DELTA_DIAG_ROD _UxGT("Diagonale")
  397. #define MSG_DELTA_HEIGHT _UxGT("Hauteur")
  398. #define MSG_DELTA_RADIUS _UxGT("Rayon")
  399. #define MSG_INFO_MENU _UxGT("Infos imprimante")
  400. #define MSG_INFO_PRINTER_MENU _UxGT("Infos imprimante")
  401. #define MSG_3POINT_LEVELING _UxGT("Niveau à 3 points")
  402. #define MSG_LINEAR_LEVELING _UxGT("Niveau linéaire")
  403. #define MSG_BILINEAR_LEVELING _UxGT("Niveau bilinéaire")
  404. #define MSG_UBL_LEVELING _UxGT("Niveau lit unifié")
  405. #define MSG_MESH_LEVELING _UxGT("Niveau maillage")
  406. #define MSG_INFO_STATS_MENU _UxGT("Stats. imprimante")
  407. #define MSG_INFO_BOARD_MENU _UxGT("Infos carte")
  408. #define MSG_INFO_THERMISTOR_MENU _UxGT("Thermistances")
  409. #define MSG_INFO_EXTRUDERS _UxGT("Extrudeurs")
  410. #define MSG_INFO_BAUDRATE _UxGT("Bauds")
  411. #define MSG_INFO_PROTOCOL _UxGT("Protocole")
  412. #define MSG_CASE_LIGHT _UxGT("Lumière caisson")
  413. #define MSG_CASE_LIGHT_BRIGHTNESS _UxGT("Luminosité")
  414. #define MSG_EXPECTED_PRINTER _UxGT("Imprimante incorrecte")
  415. #if LCD_WIDTH >= 20
  416. #define MSG_INFO_PRINT_COUNT _UxGT("Nbre impressions")
  417. #define MSG_INFO_COMPLETED_PRINTS _UxGT("Terminées")
  418. #define MSG_INFO_PRINT_TIME _UxGT("Tps impr. total")
  419. #define MSG_INFO_PRINT_LONGEST _UxGT("Impr. la + longue")
  420. #define MSG_INFO_PRINT_FILAMENT _UxGT("Total filament")
  421. #else
  422. #define MSG_INFO_PRINT_COUNT _UxGT("Impressions")
  423. #define MSG_INFO_COMPLETED_PRINTS _UxGT("Terminées")
  424. #define MSG_INFO_PRINT_TIME _UxGT("Total")
  425. #define MSG_INFO_PRINT_LONGEST _UxGT("+ long")
  426. #define MSG_INFO_PRINT_FILAMENT _UxGT("Filament")
  427. #endif
  428. #define MSG_INFO_MIN_TEMP _UxGT("Temp Min")
  429. #define MSG_INFO_MAX_TEMP _UxGT("Temp Max")
  430. #define MSG_INFO_PSU _UxGT("Alimentation")
  431. #define MSG_DRIVE_STRENGTH _UxGT("Puiss. moteur ")
  432. #define MSG_DAC_PERCENT _UxGT("Driver %")
  433. #define MSG_DAC_EEPROM_WRITE _UxGT("DAC EEPROM sauv.")
  434. #define MSG_ERROR_TMC _UxGT("ERREUR CONNEXION TMC")
  435. #define MSG_FILAMENT_CHANGE_HEADER_PAUSE _UxGT("IMPR. PAUSE")
  436. #define MSG_FILAMENT_CHANGE_HEADER_LOAD _UxGT("CHARGER FIL")
  437. #define MSG_FILAMENT_CHANGE_HEADER_UNLOAD _UxGT("DECHARGER FIL")
  438. #define MSG_FILAMENT_CHANGE_OPTION_HEADER _UxGT("OPTIONS REPRISE:")
  439. #define MSG_FILAMENT_CHANGE_OPTION_PURGE _UxGT("Purger encore")
  440. #define MSG_FILAMENT_CHANGE_OPTION_RESUME _UxGT("Reprendre impr.")
  441. #define MSG_FILAMENT_CHANGE_NOZZLE _UxGT(" Buse: ")
  442. #define MSG_RUNOUT_SENSOR _UxGT("Capteur fil.")
  443. #define MSG_ERR_HOMING_FAILED _UxGT("Echec origine")
  444. #define MSG_ERR_PROBING_FAILED _UxGT("Echec sonde")
  445. #define MSG_M600_TOO_COLD _UxGT("M600: Trop froid")
  446. #define MSG_MMU2_FILAMENT_CHANGE_HEADER _UxGT("CHANGER FILAMENT")
  447. #define MSG_MMU2_CHOOSE_FILAMENT_HEADER _UxGT("CHOISIR FILAMENT")
  448. #define MSG_MMU2_MENU _UxGT("MMU")
  449. #define MSG_MMU2_WRONG_FIRMWARE _UxGT("Update MMU firmware!")
  450. #define MSG_MMU2_NOT_RESPONDING _UxGT("MMU ne répond plus")
  451. #define MSG_MMU2_RESUME _UxGT("Continuer impr.")
  452. #define MSG_MMU2_RESUMING _UxGT("Reprise...")
  453. #define MSG_MMU2_LOAD_FILAMENT _UxGT("Charger filament")
  454. #define MSG_MMU2_LOAD_ALL _UxGT("Charger tous")
  455. #define MSG_MMU2_LOAD_TO_NOZZLE _UxGT("Charger dans buse")
  456. #define MSG_MMU2_EJECT_FILAMENT _UxGT("Ejecter filament")
  457. #define MSG_MMU2_EJECT_FILAMENT0 _UxGT("Ejecter fil. 1")
  458. #define MSG_MMU2_EJECT_FILAMENT1 _UxGT("Ejecter fil. 2")
  459. #define MSG_MMU2_EJECT_FILAMENT2 _UxGT("Ejecter fil. 3")
  460. #define MSG_MMU2_EJECT_FILAMENT3 _UxGT("Ejecter fil. 4")
  461. #define MSG_MMU2_EJECT_FILAMENT4 _UxGT("Ejecter fil. 5")
  462. #define MSG_MMU2_UNLOAD_FILAMENT _UxGT("Retrait filament")
  463. #define MSG_MMU2_LOADING_FILAMENT _UxGT("Chargem. fil. %i...")
  464. #define MSG_MMU2_EJECTING_FILAMENT _UxGT("Ejection fil...")
  465. #define MSG_MMU2_UNLOADING_FILAMENT _UxGT("Retrait fil....")
  466. #define MSG_MMU2_ALL _UxGT("Tous")
  467. #define MSG_MMU2_FILAMENT0 _UxGT("Filament 1")
  468. #define MSG_MMU2_FILAMENT1 _UxGT("Filament 2")
  469. #define MSG_MMU2_FILAMENT2 _UxGT("Filament 3")
  470. #define MSG_MMU2_FILAMENT3 _UxGT("Filament 4")
  471. #define MSG_MMU2_FILAMENT4 _UxGT("Filament 5")
  472. #define MSG_MMU2_RESET _UxGT("Réinit. MMU")
  473. #define MSG_MMU2_RESETTING _UxGT("Réinit. MMU...")
  474. #define MSG_MMU2_EJECT_RECOVER _UxGT("Retrait, click")
  475. #define MSG_MIX _UxGT("Mix")
  476. #define MSG_MIX_COMPONENT _UxGT("Composante")
  477. #define MSG_MIXER _UxGT("Mixeur")
  478. #define MSG_GRADIENT _UxGT("Dégradé")
  479. #define MSG_FULL_GRADIENT _UxGT("Dégradé complet")
  480. #define MSG_TOGGLE_MIX _UxGT("Toggle mix")
  481. #define MSG_CYCLE_MIX _UxGT("Cycle mix")
  482. #define MSG_GRADIENT_MIX _UxGT("Mix dégradé")
  483. #define MSG_REVERSE_GRADIENT _UxGT("Inverser dégradé")
  484. #define MSG_ACTIVE_VTOOL _UxGT("Active V-tool")
  485. #define MSG_START_VTOOL _UxGT("Début V-tool")
  486. #define MSG_END_VTOOL _UxGT(" Fin V-tool")
  487. #define MSG_GRADIENT_ALIAS _UxGT("Alias V-tool")
  488. #define MSG_RESET_VTOOLS _UxGT("Réinit. V-tools")
  489. #define MSG_COMMIT_VTOOL _UxGT("Valider Mix V-tool")
  490. #define MSG_VTOOLS_RESET _UxGT("V-tools réinit. ok")
  491. #define MSG_START_Z _UxGT("Début Z")
  492. #define MSG_END_Z _UxGT(" Fin Z")
  493. #define MSG_GAMES _UxGT("Jeux")
  494. #define MSG_BRICKOUT _UxGT("Casse-briques")
  495. #define MSG_INVADERS _UxGT("Invaders")
  496. #define MSG_SNAKE _UxGT("Sn4k3")
  497. #define MSG_MAZE _UxGT("Labyrinthe")
  498. #if LCD_HEIGHT >= 4
  499. // Up to 3 lines allowed
  500. #define MSG_ADVANCED_PAUSE_WAITING_1 _UxGT("Presser bouton")
  501. #define MSG_ADVANCED_PAUSE_WAITING_2 _UxGT("pour reprendre")
  502. #define MSG_PAUSE_PRINT_INIT_1 _UxGT("Parking...")
  503. #define MSG_FILAMENT_CHANGE_INIT_1 _UxGT("Attente filament")
  504. #define MSG_FILAMENT_CHANGE_INIT_2 _UxGT("pour démarrer")
  505. #define MSG_FILAMENT_CHANGE_INSERT_1 _UxGT("Insérer filament")
  506. #define MSG_FILAMENT_CHANGE_INSERT_2 _UxGT("et app. bouton")
  507. #define MSG_FILAMENT_CHANGE_INSERT_3 _UxGT("pour continuer...")
  508. #define MSG_FILAMENT_CHANGE_HEAT_1 _UxGT("Presser le bouton")
  509. #define MSG_FILAMENT_CHANGE_HEAT_2 _UxGT("pour chauffer...")
  510. #define MSG_FILAMENT_CHANGE_HEATING_1 _UxGT("Buse en chauffe")
  511. #define MSG_FILAMENT_CHANGE_HEATING_2 _UxGT("Patienter SVP...")
  512. #define MSG_FILAMENT_CHANGE_UNLOAD_1 _UxGT("Attente")
  513. #define MSG_FILAMENT_CHANGE_UNLOAD_2 _UxGT("retrait du filament")
  514. #define MSG_FILAMENT_CHANGE_LOAD_1 _UxGT("Attente")
  515. #define MSG_FILAMENT_CHANGE_LOAD_2 _UxGT("chargement filament")
  516. #define MSG_FILAMENT_CHANGE_PURGE_1 _UxGT("Attente")
  517. #define MSG_FILAMENT_CHANGE_PURGE_2 _UxGT("Purge filament")
  518. #define MSG_FILAMENT_CHANGE_CONT_PURGE_1 _UxGT("Presser pour finir")
  519. #define MSG_FILAMENT_CHANGE_CONT_PURGE_2 _UxGT("la purge du filament")
  520. #define MSG_FILAMENT_CHANGE_RESUME_1 _UxGT("Attente reprise")
  521. #define MSG_FILAMENT_CHANGE_RESUME_2 _UxGT("impression")
  522. #else // LCD_HEIGHT < 4
  523. // Up to 2 lines allowed
  524. #define MSG_ADVANCED_PAUSE_WAITING_1 _UxGT("Clic pour continuer")
  525. #define MSG_FILAMENT_CHANGE_INIT_1 _UxGT("Patience...")
  526. #define MSG_FILAMENT_CHANGE_INSERT_1 _UxGT("Insérer fil.")
  527. #define MSG_FILAMENT_CHANGE_HEAT_1 _UxGT("Chauffer ?")
  528. #define MSG_FILAMENT_CHANGE_HEATING_1 _UxGT("Chauffage...")
  529. #define MSG_FILAMENT_CHANGE_UNLOAD_1 _UxGT("Retrait fil...")
  530. #define MSG_FILAMENT_CHANGE_LOAD_1 _UxGT("Chargement...")
  531. #define MSG_FILAMENT_CHANGE_PURGE_1 _UxGT("Purge...")
  532. #define MSG_FILAMENT_CHANGE_CONT_PURGE_1 _UxGT("Terminer ?")
  533. #define MSG_FILAMENT_CHANGE_RESUME_1 _UxGT("Reprise...")
  534. #endif // LCD_HEIGHT < 4
  535. #define MSG_TMC_DRIVERS _UxGT("Drivers TMC")
  536. #define MSG_TMC_CURRENT _UxGT("Courant driver")
  537. #define MSG_TMC_HYBRID_THRS _UxGT("Seuil hybride")
  538. #define MSG_TMC_HOMING_THRS _UxGT("Home sans capteur")
  539. #define MSG_TMC_STEPPING_MODE _UxGT("Mode pas à pas")
  540. #define MSG_TMC_STEALTH_ENABLED _UxGT("StealthChop activé")
  541. #define MSG_SERVICE_RESET _UxGT("Réinit.")
  542. #define MSG_SERVICE_IN _UxGT(" dans:")
  543. #define MSG_BACKLASH _UxGT("Backlash")
  544. #define MSG_BACKLASH_CORRECTION _UxGT("Correction")
  545. #define MSG_BACKLASH_SMOOTHING _UxGT("Lissage")