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 40KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 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 <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. /**
  24. * French
  25. *
  26. * LCD Menu Messages
  27. * See also https://marlinfw.org/docs/development/lcd_language.html
  28. */
  29. #define DISPLAY_CHARSET_ISO10646_1
  30. namespace Language_fr {
  31. using namespace Language_en; // Inherit undefined strings from English
  32. constexpr uint8_t CHARSIZE = 2;
  33. LSTR LANGUAGE = _UxGT("Français");
  34. LSTR WELCOME_MSG = MACHINE_NAME _UxGT(" prête.");
  35. LSTR MSG_YES = _UxGT("Oui");
  36. LSTR MSG_NO = _UxGT("Non");
  37. LSTR MSG_BACK = _UxGT("Retour");
  38. LSTR MSG_MEDIA_ABORTING = _UxGT("Annulation...");
  39. LSTR MSG_MEDIA_INSERTED = _UxGT("Média inséré");
  40. LSTR MSG_MEDIA_REMOVED = _UxGT("Média retiré");
  41. LSTR MSG_MEDIA_WAITING = _UxGT("Attente média");
  42. LSTR MSG_MEDIA_READ_ERROR = _UxGT("Err lecture média");
  43. LSTR MSG_MEDIA_USB_REMOVED = _UxGT("USB débranché");
  44. LSTR MSG_MEDIA_USB_FAILED = _UxGT("Erreur média USB");
  45. LSTR MSG_LCD_ENDSTOPS = _UxGT("Butées");
  46. LSTR MSG_LCD_SOFT_ENDSTOPS = _UxGT("Butées SW");
  47. LSTR MSG_MAIN = _UxGT("Menu principal");
  48. LSTR MSG_ADVANCED_SETTINGS = _UxGT("Config. avancée");
  49. LSTR MSG_CONFIGURATION = _UxGT("Configuration");
  50. LSTR MSG_RUN_AUTO_FILES = _UxGT("Exéc. auto.gcode");
  51. LSTR MSG_DISABLE_STEPPERS = _UxGT("Arrêter moteurs");
  52. LSTR MSG_DEBUG_MENU = _UxGT("Menu debug");
  53. LSTR MSG_PROGRESS_BAR_TEST = _UxGT("Test barre progress.");
  54. LSTR MSG_HOMING = _UxGT("Origine");
  55. LSTR MSG_AUTO_HOME = _UxGT("Origine auto");
  56. LSTR MSG_AUTO_HOME_A = _UxGT("Origine @ auto");
  57. LSTR MSG_AUTO_HOME_X = _UxGT("Origine X auto");
  58. LSTR MSG_AUTO_HOME_Y = _UxGT("Origine Y auto");
  59. LSTR MSG_AUTO_HOME_Z = _UxGT("Origine Z auto");
  60. LSTR MSG_AUTO_Z_ALIGN = _UxGT("Align. Z auto");
  61. LSTR MSG_LEVEL_BED_HOMING = _UxGT("Origine XYZ...");
  62. LSTR MSG_LEVEL_BED_WAITING = _UxGT("Clic pour commencer");
  63. LSTR MSG_LEVEL_BED_NEXT_POINT = _UxGT("Point suivant");
  64. LSTR MSG_LEVEL_BED_DONE = _UxGT("Mise à niveau OK!");
  65. LSTR MSG_Z_FADE_HEIGHT = _UxGT("Hauteur lissée");
  66. LSTR MSG_SET_HOME_OFFSETS = _UxGT("Régl. décal origine");
  67. LSTR MSG_HOME_OFFSET_X = _UxGT("Décal. origine X");
  68. LSTR MSG_HOME_OFFSET_Y = _UxGT("Décal. origine Y");
  69. LSTR MSG_HOME_OFFSET_Z = _UxGT("Décal. origine Z");
  70. LSTR MSG_HOME_OFFSETS_APPLIED = _UxGT("Décalages appliqués");
  71. LSTR MSG_TRAMMING_WIZARD = _UxGT("Assistant Molettes");
  72. LSTR MSG_SELECT_ORIGIN = _UxGT("Molette du lit"); // Not a selection of the origin
  73. LSTR MSG_LAST_VALUE_SP = _UxGT("Ecart origine ");
  74. #if HAS_PREHEAT
  75. LSTR MSG_PREHEAT_1 = _UxGT("Préchauffage ") PREHEAT_1_LABEL;
  76. LSTR MSG_PREHEAT_1_H = _UxGT("Préchauffage ") PREHEAT_1_LABEL " ~";
  77. LSTR MSG_PREHEAT_1_END = _UxGT("Préch. ") PREHEAT_1_LABEL _UxGT(" buse");
  78. LSTR MSG_PREHEAT_1_END_E = _UxGT("Préch. ") PREHEAT_1_LABEL _UxGT(" buse ~");
  79. LSTR MSG_PREHEAT_1_ALL = _UxGT("Préch. ") PREHEAT_1_LABEL _UxGT(" Tout");
  80. LSTR MSG_PREHEAT_1_BEDONLY = _UxGT("Préch. ") PREHEAT_1_LABEL _UxGT(" lit");
  81. LSTR MSG_PREHEAT_1_SETTINGS = _UxGT("Régler préch. ") PREHEAT_1_LABEL;
  82. LSTR MSG_PREHEAT_M = _UxGT("Préchauffage $");
  83. LSTR MSG_PREHEAT_M_H = _UxGT("Préchauffage $ ~");
  84. LSTR MSG_PREHEAT_M_END = _UxGT("Préch. $ buse");
  85. LSTR MSG_PREHEAT_M_END_E = _UxGT("Préch. $ buse ~");
  86. LSTR MSG_PREHEAT_M_ALL = _UxGT("Préch. $ Tout");
  87. LSTR MSG_PREHEAT_M_BEDONLY = _UxGT("Préch. $ lit");
  88. LSTR MSG_PREHEAT_M_SETTINGS = _UxGT("Régler préch. $");
  89. #endif
  90. LSTR MSG_PREHEAT_CUSTOM = _UxGT("Préchauf. perso");
  91. LSTR MSG_COOLDOWN = _UxGT("Refroidir");
  92. LSTR MSG_LASER_MENU = _UxGT("Contrôle Laser");
  93. LSTR MSG_LASER_POWER = _UxGT("Puissance");
  94. LSTR MSG_SPINDLE_REVERSE = _UxGT("Inverser broches");
  95. LSTR MSG_SWITCH_PS_ON = _UxGT("Allumer alim.");
  96. LSTR MSG_SWITCH_PS_OFF = _UxGT("Eteindre alim.");
  97. LSTR MSG_EXTRUDE = _UxGT("Extrusion");
  98. LSTR MSG_RETRACT = _UxGT("Rétractation");
  99. LSTR MSG_MOVE_AXIS = _UxGT("Déplacer un axe");
  100. LSTR MSG_BED_LEVELING = _UxGT("Régler Niv. lit");
  101. LSTR MSG_LEVEL_BED = _UxGT("Niveau du lit");
  102. LSTR MSG_BED_TRAMMING = _UxGT("Niveau des coins");
  103. LSTR MSG_BED_TRAMMING_RAISE = _UxGT("Relever le coin jusqu'à la sonde");
  104. LSTR MSG_BED_TRAMMING_IN_RANGE = _UxGT("Coins dans la tolérance. Niveau lit.");
  105. LSTR MSG_NEXT_CORNER = _UxGT("Coin suivant");
  106. LSTR MSG_MESH_EDITOR = _UxGT("Modif. maille"); // 13 car. max
  107. LSTR MSG_EDIT_MESH = _UxGT("Modifier grille");
  108. LSTR MSG_EDITING_STOPPED = _UxGT("Modification arrêtée");
  109. LSTR MSG_PROBING_POINT = _UxGT("Mesure point");
  110. LSTR MSG_MESH_X = _UxGT("Index X");
  111. LSTR MSG_MESH_Y = _UxGT("Index Y");
  112. LSTR MSG_MESH_EDIT_Z = _UxGT("Valeur Z");
  113. LSTR MSG_CUSTOM_COMMANDS = _UxGT("Commandes perso");
  114. LSTR MSG_LCD_TILTING_MESH = _UxGT("Mesure point");
  115. LSTR MSG_M48_TEST = _UxGT("Ecart sonde Z M48");
  116. LSTR MSG_M48_DEVIATION = _UxGT("Ecart");
  117. LSTR MSG_M48_POINT = _UxGT("Point M48");
  118. LSTR MSG_IDEX_MENU = _UxGT("Mode IDEX");
  119. LSTR MSG_IDEX_MODE_AUTOPARK = _UxGT("Auto-Park");
  120. LSTR MSG_IDEX_MODE_DUPLICATE = _UxGT("Duplication");
  121. LSTR MSG_IDEX_MODE_MIRRORED_COPY = _UxGT("Copie miroir");
  122. LSTR MSG_IDEX_MODE_FULL_CTRL = _UxGT("Contrôle complet");
  123. LSTR MSG_OFFSETS_MENU = _UxGT("Offsets Outil");
  124. LSTR MSG_HOTEND_OFFSET_Z = _UxGT("Buse 2 Z");
  125. LSTR MSG_HOTEND_OFFSET_A = _UxGT("Buse 2 @");
  126. LSTR MSG_G26_HEATING_BED = _UxGT("G26: Chauffage du lit");
  127. LSTR MSG_G26_HEATING_NOZZLE = _UxGT("Buse en chauffe...");
  128. LSTR MSG_G26_MANUAL_PRIME = _UxGT("Amorce manuelle...");
  129. LSTR MSG_G26_FIXED_LENGTH = _UxGT("Amorce longueur fixe");
  130. LSTR MSG_G26_PRIME_DONE = _UxGT("Amorce terminée");
  131. LSTR MSG_G26_CANCELED = _UxGT("G26 annulé");
  132. LSTR MSG_G26_LEAVING = _UxGT("Sortie G26");
  133. LSTR MSG_UBL_DOING_G29 = _UxGT("G29 en cours");
  134. LSTR MSG_UBL_TOOLS = _UxGT("Outils UBL");
  135. LSTR MSG_UBL_LEVEL_BED = _UxGT("Niveau lit unifié");
  136. LSTR MSG_UBL_MANUAL_MESH = _UxGT("Maillage manuel");
  137. LSTR MSG_UBL_BC_INSERT = _UxGT("Poser câle & mesurer");
  138. LSTR MSG_UBL_BC_INSERT2 = _UxGT("Mesure");
  139. LSTR MSG_UBL_BC_REMOVE = _UxGT("ôter et mesurer lit");
  140. LSTR MSG_UBL_MOVING_TO_NEXT = _UxGT("Aller au suivant");
  141. LSTR MSG_UBL_ACTIVATE_MESH = _UxGT("Activer l'UBL");
  142. LSTR MSG_UBL_DEACTIVATE_MESH = _UxGT("Désactiver l'UBL");
  143. LSTR MSG_UBL_SET_TEMP_BED = _UxGT("Température lit");
  144. LSTR MSG_UBL_BED_TEMP_CUSTOM = _UxGT("Température lit");
  145. LSTR MSG_UBL_SET_TEMP_HOTEND = _UxGT("Température buse");
  146. LSTR MSG_UBL_HOTEND_TEMP_CUSTOM = _UxGT("Température buse");
  147. LSTR MSG_UBL_MESH_EDIT = _UxGT("Modifier grille");
  148. LSTR MSG_UBL_EDIT_CUSTOM_MESH = _UxGT("Modif. grille perso");
  149. LSTR MSG_UBL_FINE_TUNE_MESH = _UxGT("Réglage fin");
  150. LSTR MSG_UBL_DONE_EDITING_MESH = _UxGT("Terminer");
  151. LSTR MSG_UBL_BUILD_MESH_MENU = _UxGT("Créer la grille");
  152. #if HAS_PREHEAT
  153. LSTR MSG_UBL_BUILD_MESH_M = _UxGT("Créer grille $");
  154. LSTR MSG_UBL_VALIDATE_MESH_M = _UxGT("Impr. grille $");
  155. #endif
  156. LSTR MSG_UBL_BUILD_CUSTOM_MESH = _UxGT("Créer grille ...");
  157. LSTR MSG_UBL_BUILD_COLD_MESH = _UxGT("Mesure à froid");
  158. LSTR MSG_UBL_MESH_HEIGHT_ADJUST = _UxGT("Ajuster haut. couche");
  159. LSTR MSG_UBL_MESH_HEIGHT_AMOUNT = _UxGT("Hauteur (x0.1mm)");
  160. LSTR MSG_UBL_VALIDATE_MESH_MENU = _UxGT("Vérifier grille");
  161. LSTR MSG_UBL_VALIDATE_CUSTOM_MESH = _UxGT("Impr. grille ...");
  162. LSTR MSG_UBL_CONTINUE_MESH = _UxGT("Continuer grille");
  163. LSTR MSG_UBL_MESH_LEVELING = _UxGT("Niveau par mailles");
  164. LSTR MSG_UBL_3POINT_MESH_LEVELING = _UxGT("Niveau à 3 points");
  165. LSTR MSG_UBL_GRID_MESH_LEVELING = _UxGT("Niveau par grille");
  166. LSTR MSG_UBL_MESH_LEVEL = _UxGT("Effectuer mesures");
  167. LSTR MSG_UBL_SIDE_POINTS = _UxGT("Points latéraux");
  168. LSTR MSG_UBL_MAP_TYPE = _UxGT("Type de carte");
  169. LSTR MSG_UBL_OUTPUT_MAP = _UxGT("Exporter grille");
  170. LSTR MSG_UBL_OUTPUT_MAP_HOST = _UxGT("Export pour hôte");
  171. LSTR MSG_UBL_OUTPUT_MAP_CSV = _UxGT("Export en CSV");
  172. LSTR MSG_UBL_OUTPUT_MAP_BACKUP = _UxGT("Export sauvegarde");
  173. LSTR MSG_UBL_INFO_UBL = _UxGT("Infos debug UBL");
  174. LSTR MSG_UBL_FILLIN_AMOUNT = _UxGT("Nombre de points");
  175. LSTR MSG_UBL_MANUAL_FILLIN = _UxGT("Remplissage manuel");
  176. LSTR MSG_UBL_SMART_FILLIN = _UxGT("Remplissage auto");
  177. LSTR MSG_UBL_FILLIN_MESH = _UxGT("Remplissage grille");
  178. LSTR MSG_UBL_INVALIDATE_ALL = _UxGT("Tout effacer");
  179. LSTR MSG_UBL_INVALIDATE_CLOSEST = _UxGT("Effacer le + près");
  180. LSTR MSG_UBL_FINE_TUNE_ALL = _UxGT("Réglage fin (tous)");
  181. LSTR MSG_UBL_FINE_TUNE_CLOSEST = _UxGT("Réglage fin + près");
  182. LSTR MSG_UBL_STORAGE_MESH_MENU = _UxGT("Stockage grille");
  183. LSTR MSG_UBL_STORAGE_SLOT = _UxGT("Slot mémoire");
  184. LSTR MSG_UBL_LOAD_MESH = _UxGT("Charger la grille");
  185. LSTR MSG_UBL_SAVE_MESH = _UxGT("Stocker la grille");
  186. LSTR MSG_MESH_LOADED = _UxGT("Grille %i chargée");
  187. LSTR MSG_MESH_SAVED = _UxGT("Grille %i enreg.");
  188. LSTR MSG_UBL_NO_STORAGE = _UxGT("Pas de mémoire");
  189. LSTR MSG_UBL_SAVE_ERROR = _UxGT("Err: Enreg. UBL");
  190. LSTR MSG_UBL_RESTORE_ERROR = _UxGT("Err: Ouvrir UBL");
  191. LSTR MSG_UBL_Z_OFFSET = _UxGT("Z-Offset: ");
  192. LSTR MSG_UBL_Z_OFFSET_STOPPED = _UxGT("Décal. Z arrêté");
  193. LSTR MSG_UBL_STEP_BY_STEP_MENU = _UxGT("Assistant UBL");
  194. LSTR MSG_UBL_1_BUILD_COLD_MESH = _UxGT("1.Mesure à froid");
  195. LSTR MSG_UBL_2_SMART_FILLIN = _UxGT("2.Compléter auto.");
  196. LSTR MSG_UBL_3_VALIDATE_MESH_MENU = _UxGT("3.Vérifier grille");
  197. LSTR MSG_UBL_4_FINE_TUNE_ALL = _UxGT("4.Réglage fin");
  198. LSTR MSG_UBL_5_VALIDATE_MESH_MENU = _UxGT("5.Vérifier grille");
  199. LSTR MSG_UBL_6_FINE_TUNE_ALL = _UxGT("6.Réglage fin");
  200. LSTR MSG_UBL_7_SAVE_MESH = _UxGT("7.Stocker grille");
  201. LSTR MSG_LED_CONTROL = _UxGT("Contrôle LED");
  202. LSTR MSG_LEDS = _UxGT("Lumière");
  203. LSTR MSG_LED_PRESETS = _UxGT("Préregl. LED");
  204. LSTR MSG_SET_LEDS_RED = _UxGT("Rouge");
  205. LSTR MSG_SET_LEDS_ORANGE = _UxGT("Orange");
  206. LSTR MSG_SET_LEDS_YELLOW = _UxGT("Jaune");
  207. LSTR MSG_SET_LEDS_GREEN = _UxGT("Vert");
  208. LSTR MSG_SET_LEDS_BLUE = _UxGT("Bleu");
  209. LSTR MSG_SET_LEDS_INDIGO = _UxGT("Indigo");
  210. LSTR MSG_SET_LEDS_VIOLET = _UxGT("Violet");
  211. LSTR MSG_SET_LEDS_WHITE = _UxGT("Blanc");
  212. LSTR MSG_SET_LEDS_DEFAULT = _UxGT("Defaut");
  213. LSTR MSG_CUSTOM_LEDS = _UxGT("LEDs perso.");
  214. LSTR MSG_INTENSITY_R = _UxGT("Intensité rouge");
  215. LSTR MSG_INTENSITY_G = _UxGT("Intensité vert");
  216. LSTR MSG_INTENSITY_B = _UxGT("Intensité bleu");
  217. LSTR MSG_INTENSITY_W = _UxGT("Intensité blanc");
  218. LSTR MSG_LED_BRIGHTNESS = _UxGT("Luminosité");
  219. LSTR MSG_MOVING = _UxGT("Déplacement...");
  220. LSTR MSG_FREE_XY = _UxGT("Débloquer XY");
  221. LSTR MSG_MOVE_X = _UxGT("Déplacer X");
  222. LSTR MSG_MOVE_Y = _UxGT("Déplacer Y");
  223. LSTR MSG_MOVE_Z = _UxGT("Déplacer Z");
  224. LSTR MSG_MOVE_N = _UxGT("Déplacer @");
  225. LSTR MSG_MOVE_E = _UxGT("Extruder");
  226. LSTR MSG_MOVE_EN = _UxGT("Extruder *");
  227. LSTR MSG_HOTEND_TOO_COLD = _UxGT("Buse trop froide");
  228. LSTR MSG_MOVE_N_MM = _UxGT("Déplacer $mm");
  229. LSTR MSG_MOVE_01MM = _UxGT("Déplacer 0.1mm");
  230. LSTR MSG_MOVE_1MM = _UxGT("Déplacer 1mm");
  231. LSTR MSG_MOVE_10MM = _UxGT("Déplacer 10mm");
  232. LSTR MSG_MOVE_100MM = _UxGT("Déplacer 100mm");
  233. LSTR MSG_MOVE_0001IN = _UxGT("Déplacer 0.001\"");
  234. LSTR MSG_MOVE_001IN = _UxGT("Déplacer 0.01\"");
  235. LSTR MSG_MOVE_01IN = _UxGT("Déplacer 0.1\"");
  236. LSTR MSG_MOVE_1IN = _UxGT("Déplacer 1\"");
  237. LSTR MSG_SPEED = _UxGT("Vitesse");
  238. LSTR MSG_BED_Z = _UxGT("Lit Z");
  239. LSTR MSG_NOZZLE = _UxGT("Buse");
  240. LSTR MSG_NOZZLE_N = _UxGT("Buse ~");
  241. LSTR MSG_BED = _UxGT("Lit");
  242. LSTR MSG_CHAMBER = _UxGT("Caisson");
  243. LSTR MSG_FAN_SPEED = _UxGT("Vit. ventil. "); // 15 car. max
  244. LSTR MSG_FAN_SPEED_N = _UxGT("Vit. ventil. ~");
  245. LSTR MSG_STORED_FAN_N = _UxGT("Vit. enreg. ~");
  246. LSTR MSG_EXTRA_FAN_SPEED = _UxGT("Extra ventil. ");
  247. LSTR MSG_EXTRA_FAN_SPEED_N = _UxGT("Extra ventil. ~");
  248. LSTR MSG_FLOW = _UxGT("Flux");
  249. LSTR MSG_FLOW_N = _UxGT("Flux ~");
  250. LSTR MSG_CONTROL = _UxGT("Contrôler");
  251. LSTR MSG_MIN = " " LCD_STR_THERMOMETER _UxGT(" Min");
  252. LSTR MSG_MAX = " " LCD_STR_THERMOMETER _UxGT(" Max");
  253. LSTR MSG_FACTOR = " " LCD_STR_THERMOMETER _UxGT(" Facteur");
  254. LSTR MSG_AUTOTEMP = _UxGT("Temp. Auto.");
  255. LSTR MSG_LCD_ON = _UxGT("Marche");
  256. LSTR MSG_LCD_OFF = _UxGT("Arrêt");
  257. LSTR MSG_PID_AUTOTUNE = _UxGT("PID Autotune");
  258. LSTR MSG_PID_AUTOTUNE_E = _UxGT("PID Autotune *");
  259. LSTR MSG_PID_AUTOTUNE_DONE = _UxGT("Tuning PID terminé");
  260. LSTR MSG_PID_BAD_EXTRUDER_NUM = _UxGT("Echec Autotune! E incorrect");
  261. LSTR MSG_PID_TEMP_TOO_HIGH = _UxGT("Echec Autotune! Temp. trop haute");
  262. LSTR MSG_PID_TIMEOUT = _UxGT("Echec Autotune! Opér. expirée");
  263. LSTR MSG_SELECT = _UxGT("Sélectionner");
  264. LSTR MSG_SELECT_E = _UxGT("Sélectionner *");
  265. LSTR MSG_ACC = _UxGT("Accélération");
  266. LSTR MSG_JERK = _UxGT("Jerk");
  267. LSTR MSG_VA_JERK = _UxGT("V") STR_A _UxGT(" jerk");
  268. LSTR MSG_VB_JERK = _UxGT("V") STR_B _UxGT(" jerk");
  269. LSTR MSG_VC_JERK = _UxGT("V") STR_C _UxGT(" jerk");
  270. LSTR MSG_VN_JERK = _UxGT("V@ jerk");
  271. LSTR MSG_VE_JERK = _UxGT("Ve jerk");
  272. LSTR MSG_MAX_SPEED = _UxGT("Max Vélocité");
  273. LSTR MSG_VMAX_A = _UxGT("Vit. Max ") STR_A;
  274. LSTR MSG_VMAX_B = _UxGT("Vit. Max ") STR_B;
  275. LSTR MSG_VMAX_C = _UxGT("Vit. Max ") STR_C;
  276. LSTR MSG_VMAX_N = _UxGT("Vit. Max @");
  277. LSTR MSG_VMAX_E = _UxGT("Vit. Max E");
  278. LSTR MSG_VMAX_EN = _UxGT("Vit. Max *");
  279. LSTR MSG_JUNCTION_DEVIATION = _UxGT("Déviat. jonct.");
  280. LSTR MSG_VMIN = _UxGT("Vit. Min");
  281. LSTR MSG_VTRAV_MIN = _UxGT("Vmin course");
  282. LSTR MSG_ACCELERATION = _UxGT("Accélération");
  283. LSTR MSG_AMAX_A = _UxGT("Max Accél. ") STR_A;
  284. LSTR MSG_AMAX_B = _UxGT("Max Accél. ") STR_B;
  285. LSTR MSG_AMAX_C = _UxGT("Max Accél. ") STR_C;
  286. LSTR MSG_AMAX_N = _UxGT("Max Accél. @");
  287. LSTR MSG_AMAX_E = _UxGT("Max Accél. E");
  288. LSTR MSG_AMAX_EN = _UxGT("Max Accél. *");
  289. LSTR MSG_A_RETRACT = _UxGT("Acc.rétraction");
  290. LSTR MSG_A_TRAVEL = _UxGT("Acc.course");
  291. LSTR MSG_XY_FREQUENCY_LIMIT = _UxGT("Fréquence max");
  292. LSTR MSG_XY_FREQUENCY_FEEDRATE = _UxGT("Vitesse min");
  293. LSTR MSG_STEPS_PER_MM = _UxGT("Pas/mm");
  294. LSTR MSG_A_STEPS = STR_A _UxGT(" pas/mm");
  295. LSTR MSG_B_STEPS = STR_B _UxGT(" pas/mm");
  296. LSTR MSG_C_STEPS = STR_C _UxGT(" pas/mm");
  297. LSTR MSG_N_STEPS = _UxGT("@ pas/mm");
  298. LSTR MSG_E_STEPS = _UxGT("E pas/mm");
  299. LSTR MSG_EN_STEPS = _UxGT("* pas/mm");
  300. LSTR MSG_TEMPERATURE = _UxGT("Température");
  301. LSTR MSG_MOTION = _UxGT("Mouvement");
  302. LSTR MSG_FILAMENT = _UxGT("Filament");
  303. LSTR MSG_VOLUMETRIC_ENABLED = _UxGT("E en mm") SUPERSCRIPT_THREE;
  304. LSTR MSG_VOLUMETRIC_LIMIT = _UxGT("Limite en mm") SUPERSCRIPT_THREE;
  305. LSTR MSG_VOLUMETRIC_LIMIT_E = _UxGT("Limite *");
  306. LSTR MSG_FILAMENT_DIAM = _UxGT("Diamètre fil.");
  307. LSTR MSG_FILAMENT_DIAM_E = _UxGT("Diamètre fil. *");
  308. LSTR MSG_FILAMENT_UNLOAD = _UxGT("Retrait mm");
  309. LSTR MSG_FILAMENT_LOAD = _UxGT("Charger mm");
  310. LSTR MSG_ADVANCE_K = _UxGT("Avance K");
  311. LSTR MSG_ADVANCE_K_E = _UxGT("Avance K *");
  312. LSTR MSG_BRIGHTNESS = _UxGT("Luminosité LCD");
  313. LSTR MSG_CONTRAST = _UxGT("Contraste LCD");
  314. LSTR MSG_LCD_TIMEOUT_SEC = _UxGT("Veille LCD (s)");
  315. LSTR MSG_BRIGHTNESS_OFF = _UxGT("Éteindre l'écran LCD");
  316. LSTR MSG_STORE_EEPROM = _UxGT("Enregistrer config.");
  317. LSTR MSG_LOAD_EEPROM = _UxGT("Charger config.");
  318. LSTR MSG_RESTORE_DEFAULTS = _UxGT("Restaurer défauts");
  319. LSTR MSG_INIT_EEPROM = _UxGT("Initialiser EEPROM");
  320. LSTR MSG_SETTINGS_STORED = _UxGT("Config. enregistrée");
  321. LSTR MSG_MEDIA_UPDATE = _UxGT("MaJ Firmware SD");
  322. LSTR MSG_RESET_PRINTER = _UxGT("RaZ imprimante");
  323. LSTR MSG_REFRESH = LCD_STR_REFRESH _UxGT("Actualiser");
  324. LSTR MSG_INFO_SCREEN = _UxGT("Surveiller");
  325. LSTR MSG_PREPARE = _UxGT("Préparer");
  326. LSTR MSG_TUNE = _UxGT("Régler");
  327. LSTR MSG_START_PRINT = _UxGT("Démarrer impression");
  328. LSTR MSG_BUTTON_NEXT = _UxGT("Suivant");
  329. LSTR MSG_BUTTON_INIT = _UxGT("Init.");
  330. LSTR MSG_BUTTON_STOP = _UxGT("Stop");
  331. LSTR MSG_BUTTON_PRINT = _UxGT("Imprimer");
  332. LSTR MSG_BUTTON_RESET = _UxGT("Reset");
  333. LSTR MSG_BUTTON_IGNORE = _UxGT("Ignorer");
  334. LSTR MSG_BUTTON_CANCEL = _UxGT("Annuler");
  335. LSTR MSG_BUTTON_DONE = _UxGT("Terminé");
  336. LSTR MSG_BUTTON_BACK = _UxGT("Retour");
  337. LSTR MSG_BUTTON_PROCEED = _UxGT("Procéder");
  338. LSTR MSG_BUTTON_SKIP = _UxGT("Passer");
  339. LSTR MSG_PAUSING = _UxGT("Mise en pause...");
  340. LSTR MSG_PAUSE_PRINT = _UxGT("Pause impression");
  341. LSTR MSG_RESUME_PRINT = _UxGT("Reprendre impr.");
  342. LSTR MSG_STOP_PRINT = _UxGT("Arrêter impr.");
  343. LSTR MSG_PRINTING_OBJECT = _UxGT("Impression objet");
  344. LSTR MSG_CANCEL_OBJECT = _UxGT("Annuler objet");
  345. LSTR MSG_CANCEL_OBJECT_N = _UxGT("Annuler objet =");
  346. LSTR MSG_OUTAGE_RECOVERY = _UxGT("Récup. coup.");
  347. LSTR MSG_MEDIA_MENU = _UxGT("Impression SD");
  348. LSTR MSG_NO_MEDIA = _UxGT("Pas de média");
  349. LSTR MSG_DWELL = _UxGT("Repos...");
  350. LSTR MSG_USERWAIT = _UxGT("Attente utilis.");
  351. LSTR MSG_PRINT_PAUSED = _UxGT("Impr. en pause");
  352. LSTR MSG_PRINTING = _UxGT("Impression");
  353. LSTR MSG_PRINT_ABORTED = _UxGT("Impr. annulée");
  354. LSTR MSG_NO_MOVE = _UxGT("Moteurs bloqués");
  355. LSTR MSG_KILLED = _UxGT("KILLED");
  356. LSTR MSG_STOPPED = _UxGT("STOPPÉ");
  357. LSTR MSG_CONTROL_RETRACT = _UxGT("Rétractation mm");
  358. LSTR MSG_CONTROL_RETRACT_SWAP = _UxGT("Ech. rétr. mm");
  359. LSTR MSG_CONTROL_RETRACTF = _UxGT("Vit. rétract°");
  360. LSTR MSG_CONTROL_RETRACT_ZHOP = _UxGT("Saut Z mm");
  361. LSTR MSG_CONTROL_RETRACT_RECOVER = _UxGT("Rét.reprise mm");
  362. LSTR MSG_CONTROL_RETRACT_RECOVER_SWAP = _UxGT("Ech.reprise mm");
  363. LSTR MSG_CONTROL_RETRACT_RECOVERF = _UxGT("V.rét. reprise");
  364. LSTR MSG_CONTROL_RETRACT_RECOVER_SWAPF = _UxGT("V.éch. reprise");
  365. LSTR MSG_AUTORETRACT = _UxGT("Rétraction auto");
  366. LSTR MSG_TOOL_CHANGE = _UxGT("Changement outil");
  367. LSTR MSG_TOOL_CHANGE_ZLIFT = _UxGT("Augmenter Z");
  368. LSTR MSG_SINGLENOZZLE_PRIME_SPEED = _UxGT("Vitesse primaire");
  369. LSTR MSG_SINGLENOZZLE_RETRACT_SPEED = _UxGT("Vitesse rétract°");
  370. LSTR MSG_FILAMENT_PARK_ENABLED = _UxGT("Garer Extrudeur");
  371. LSTR MSG_SINGLENOZZLE_UNRETRACT_SPEED = _UxGT("Vitesse reprise");
  372. LSTR MSG_SINGLENOZZLE_FAN_SPEED = _UxGT("Vit. ventil.");
  373. LSTR MSG_SINGLENOZZLE_FAN_TIME = _UxGT("Temps ventil.");
  374. LSTR MSG_TOOL_MIGRATION_ON = _UxGT("Auto ON");
  375. LSTR MSG_TOOL_MIGRATION_OFF = _UxGT("Auto OFF");
  376. LSTR MSG_TOOL_MIGRATION = _UxGT("Migration d'outil");
  377. LSTR MSG_TOOL_MIGRATION_AUTO = _UxGT("Migration auto");
  378. LSTR MSG_TOOL_MIGRATION_END = _UxGT("Extrudeur Final");
  379. LSTR MSG_TOOL_MIGRATION_SWAP = _UxGT("Migrer vers *");
  380. LSTR MSG_NOZZLE_STANDBY = _UxGT("Attente buse");
  381. LSTR MSG_FILAMENT_SWAP_LENGTH = _UxGT("Longueur retrait");
  382. LSTR MSG_FILAMENT_SWAP_EXTRA = _UxGT("Longueur Extra");
  383. LSTR MSG_FILAMENT_PURGE_LENGTH = _UxGT("Longueur de purge");
  384. LSTR MSG_FILAMENTCHANGE = _UxGT("Changer filament");
  385. LSTR MSG_FILAMENTCHANGE_E = _UxGT("Changer filament *");
  386. LSTR MSG_FILAMENTLOAD = _UxGT("Charger filament");
  387. LSTR MSG_FILAMENTLOAD_E = _UxGT("Charger filament *");
  388. LSTR MSG_FILAMENTUNLOAD = _UxGT("Retrait filament");
  389. LSTR MSG_FILAMENTUNLOAD_E = _UxGT("Retrait filament *");
  390. LSTR MSG_FILAMENTUNLOAD_ALL = _UxGT("Retirer tout");
  391. LSTR MSG_ATTACH_MEDIA = _UxGT("Charger le média");
  392. LSTR MSG_CHANGE_MEDIA = _UxGT("Actualiser média");
  393. LSTR MSG_RELEASE_MEDIA = _UxGT("Retirer le média");
  394. LSTR MSG_ZPROBE_OUT = _UxGT("Sonde Z hors lit");
  395. LSTR MSG_SKEW_FACTOR = _UxGT("Facteur écart");
  396. LSTR MSG_BLTOUCH = _UxGT("BLTouch");
  397. LSTR MSG_BLTOUCH_SELFTEST = _UxGT("Self-Test");
  398. LSTR MSG_BLTOUCH_RESET = _UxGT("Reset");
  399. LSTR MSG_BLTOUCH_STOW = _UxGT("Ranger");
  400. LSTR MSG_BLTOUCH_DEPLOY = _UxGT("Déployer");
  401. LSTR MSG_BLTOUCH_SW_MODE = _UxGT("Mode SW");
  402. LSTR MSG_BLTOUCH_5V_MODE = _UxGT("Mode 5V");
  403. LSTR MSG_BLTOUCH_OD_MODE = _UxGT("Mode OD");
  404. LSTR MSG_BLTOUCH_MODE_STORE = _UxGT("Appliquer Mode");
  405. LSTR MSG_BLTOUCH_MODE_STORE_5V = _UxGT("Mise en 5V");
  406. LSTR MSG_BLTOUCH_MODE_STORE_OD = _UxGT("Mise en OD");
  407. LSTR MSG_BLTOUCH_MODE_ECHO = _UxGT("Afficher Mode");
  408. LSTR MSG_TOUCHMI_PROBE = _UxGT("TouchMI");
  409. LSTR MSG_TOUCHMI_INIT = _UxGT("Init. TouchMI");
  410. LSTR MSG_TOUCHMI_ZTEST = _UxGT("Test décalage Z");
  411. LSTR MSG_TOUCHMI_SAVE = _UxGT("Sauvegarde");
  412. LSTR MSG_MANUAL_DEPLOY_TOUCHMI = _UxGT("Déployer TouchMI");
  413. LSTR MSG_MANUAL_DEPLOY = _UxGT("Déployer Sonde Z");
  414. LSTR MSG_MANUAL_STOW = _UxGT("Ranger Sonde Z");
  415. LSTR MSG_HOME_FIRST = _UxGT("Origine %s%s%s Premier");
  416. LSTR MSG_ZPROBE_OFFSETS = _UxGT("Position sonde Z");
  417. LSTR MSG_ZPROBE_XOFFSET = _UxGT("Décalage X");
  418. LSTR MSG_ZPROBE_YOFFSET = _UxGT("Décalage Y");
  419. LSTR MSG_ZPROBE_ZOFFSET = _UxGT("Décalage Z");
  420. LSTR MSG_BABYSTEP_X = _UxGT("Babystep X");
  421. LSTR MSG_BABYSTEP_Y = _UxGT("Babystep Y");
  422. LSTR MSG_BABYSTEP_Z = _UxGT("Babystep Z");
  423. LSTR MSG_BABYSTEP_N = _UxGT("Babystep @");
  424. LSTR MSG_BABYSTEP_TOTAL = _UxGT("Total");
  425. LSTR MSG_ENDSTOP_ABORT = _UxGT("Butée abandon");
  426. LSTR MSG_HEATING_FAILED_LCD = _UxGT("Err de chauffe");
  427. LSTR MSG_ERR_REDUNDANT_TEMP = _UxGT("Err TEMP. REDONDANTE");
  428. LSTR MSG_THERMAL_RUNAWAY = _UxGT("Err THERMIQUE");
  429. LSTR MSG_ERR_MAXTEMP = _UxGT("Err TEMP. MAX");
  430. LSTR MSG_ERR_MINTEMP = _UxGT("Err TEMP. MIN");
  431. LSTR MSG_HALTED = _UxGT("IMPR. STOPPÉE");
  432. LSTR MSG_PLEASE_RESET = _UxGT("Redémarrer SVP");
  433. LSTR MSG_SHORT_DAY = _UxGT("j"); // One character only
  434. LSTR MSG_SHORT_HOUR = _UxGT("h"); // One character only
  435. LSTR MSG_SHORT_MINUTE = _UxGT("m"); // One character only
  436. LSTR MSG_HEATING = _UxGT("en chauffe...");
  437. LSTR MSG_COOLING = _UxGT("Refroidissement");
  438. LSTR MSG_BED_HEATING = _UxGT("Lit en chauffe...");
  439. LSTR MSG_BED_COOLING = _UxGT("Refroid. du lit...");
  440. LSTR MSG_PROBE_HEATING = _UxGT("Probe en chauffe...");
  441. LSTR MSG_PROBE_COOLING = _UxGT("Refroid. Probe...");
  442. LSTR MSG_CHAMBER_HEATING = _UxGT("Chauffe caisson...");
  443. LSTR MSG_CHAMBER_COOLING = _UxGT("Refroid. caisson...");
  444. LSTR MSG_DELTA_CALIBRATE = _UxGT("Calibration Delta");
  445. LSTR MSG_DELTA_CALIBRATE_X = _UxGT("Calibrer X");
  446. LSTR MSG_DELTA_CALIBRATE_Y = _UxGT("Calibrer Y");
  447. LSTR MSG_DELTA_CALIBRATE_Z = _UxGT("Calibrer Z");
  448. LSTR MSG_DELTA_CALIBRATE_CENTER = _UxGT("Calibrer centre");
  449. LSTR MSG_DELTA_SETTINGS = _UxGT("Réglages Delta");
  450. LSTR MSG_DELTA_AUTO_CALIBRATE = _UxGT("Calibration Auto");
  451. LSTR MSG_DELTA_HEIGHT_CALIBRATE = _UxGT("Hauteur Delta");
  452. LSTR MSG_DELTA_Z_OFFSET_CALIBRATE = _UxGT("Delta Z sonde");
  453. LSTR MSG_DELTA_DIAG_ROD = _UxGT("Diagonale");
  454. LSTR MSG_DELTA_HEIGHT = _UxGT("Hauteur");
  455. LSTR MSG_DELTA_RADIUS = _UxGT("Rayon");
  456. LSTR MSG_INFO_MENU = _UxGT("Infos imprimante");
  457. LSTR MSG_INFO_PRINTER_MENU = _UxGT("Infos imprimante");
  458. LSTR MSG_3POINT_LEVELING = _UxGT("Niveau à 3 points");
  459. LSTR MSG_LINEAR_LEVELING = _UxGT("Niveau linéaire");
  460. LSTR MSG_BILINEAR_LEVELING = _UxGT("Niveau bilinéaire");
  461. LSTR MSG_UBL_LEVELING = _UxGT("Niveau lit unifié");
  462. LSTR MSG_MESH_LEVELING = _UxGT("Niveau par grille");
  463. LSTR MSG_MESH_DONE = _UxGT("Niveau terminé");
  464. LSTR MSG_INFO_STATS_MENU = _UxGT("Stats. imprimante");
  465. LSTR MSG_INFO_BOARD_MENU = _UxGT("Infos carte");
  466. LSTR MSG_INFO_THERMISTOR_MENU = _UxGT("Thermistances");
  467. LSTR MSG_INFO_EXTRUDERS = _UxGT("Extrudeurs");
  468. LSTR MSG_INFO_BAUDRATE = _UxGT("Bauds");
  469. LSTR MSG_INFO_PROTOCOL = _UxGT("Protocole");
  470. LSTR MSG_INFO_RUNAWAY_OFF = _UxGT("Protection inactive");
  471. LSTR MSG_INFO_RUNAWAY_ON = _UxGT("Protection active");
  472. LSTR MSG_HOTEND_IDLE_TIMEOUT = _UxGT("Hotend Idle Timeout");
  473. LSTR MSG_CASE_LIGHT = _UxGT("Lumière caisson");
  474. LSTR MSG_CASE_LIGHT_BRIGHTNESS = _UxGT("Luminosité");
  475. LSTR MSG_KILL_EXPECTED_PRINTER = _UxGT("Imprimante incorrecte");
  476. #if LCD_WIDTH >= 20 || HAS_DWIN_E3V2
  477. LSTR MSG_INFO_PRINT_COUNT = _UxGT("Nbre impressions");
  478. LSTR MSG_INFO_COMPLETED_PRINTS = _UxGT("Terminées");
  479. LSTR MSG_INFO_PRINT_TIME = _UxGT("Tps impr. total");
  480. LSTR MSG_INFO_PRINT_LONGEST = _UxGT("Impr. la + longue");
  481. LSTR MSG_INFO_PRINT_FILAMENT = _UxGT("Total filament");
  482. #else
  483. LSTR MSG_INFO_PRINT_COUNT = _UxGT("Impressions");
  484. LSTR MSG_INFO_COMPLETED_PRINTS = _UxGT("Terminées");
  485. LSTR MSG_INFO_PRINT_TIME = _UxGT("Total");
  486. LSTR MSG_INFO_PRINT_LONGEST = _UxGT("+ long");
  487. LSTR MSG_INFO_PRINT_FILAMENT = _UxGT("Filament");
  488. #endif
  489. LSTR MSG_INFO_MIN_TEMP = _UxGT("Temp Min");
  490. LSTR MSG_INFO_MAX_TEMP = _UxGT("Temp Max");
  491. LSTR MSG_INFO_PSU = _UxGT("Alim.");
  492. LSTR MSG_DRIVE_STRENGTH = _UxGT("Puiss. moteur ");
  493. LSTR MSG_DAC_PERCENT_N = _UxGT("Driver @ %");
  494. LSTR MSG_DAC_EEPROM_WRITE = _UxGT("DAC EEPROM sauv.");
  495. LSTR MSG_ERROR_TMC = _UxGT("ERREUR CONNEXION TMC");
  496. LSTR MSG_FILAMENT_CHANGE_HEADER = _UxGT("CHANGER FILAMENT");
  497. LSTR MSG_FILAMENT_CHANGE_HEADER_PAUSE = _UxGT("IMPR. PAUSE");
  498. LSTR MSG_FILAMENT_CHANGE_HEADER_LOAD = _UxGT("CHARGER FIL");
  499. LSTR MSG_FILAMENT_CHANGE_HEADER_UNLOAD = _UxGT("DECHARGER FIL");
  500. LSTR MSG_FILAMENT_CHANGE_OPTION_HEADER = _UxGT("OPTIONS REPRISE:");
  501. LSTR MSG_FILAMENT_CHANGE_OPTION_PURGE = _UxGT("Purger encore");
  502. LSTR MSG_FILAMENT_CHANGE_OPTION_RESUME = _UxGT("Reprendre impr.");
  503. LSTR MSG_FILAMENT_CHANGE_NOZZLE = _UxGT(" Buse: ");
  504. LSTR MSG_RUNOUT_SENSOR = _UxGT("Capteur fil.");
  505. LSTR MSG_KILL_HOMING_FAILED = _UxGT("Echec origine");
  506. LSTR MSG_LCD_PROBING_FAILED = _UxGT("Echec sonde");
  507. LSTR MSG_KILL_MMU2_FIRMWARE = _UxGT("MAJ firmware MMU!!");
  508. LSTR MSG_MMU2_CHOOSE_FILAMENT_HEADER = _UxGT("CHOISIR FILAMENT");
  509. LSTR MSG_MMU2_MENU = _UxGT("MMU");
  510. LSTR MSG_MMU2_NOT_RESPONDING = _UxGT("MMU ne répond plus");
  511. LSTR MSG_MMU2_RESUME = _UxGT("Continuer Imp. MMU");
  512. LSTR MSG_MMU2_RESUMING = _UxGT("Reprise MMU...");
  513. LSTR MSG_MMU2_LOAD_FILAMENT = _UxGT("Charge dans MMU");
  514. LSTR MSG_MMU2_LOAD_ALL = _UxGT("Charger tous dans MMU");
  515. LSTR MSG_MMU2_LOAD_TO_NOZZLE = _UxGT("Charger dans buse");
  516. LSTR MSG_MMU2_EJECT_FILAMENT = _UxGT("Ejecter fil. du MMU");
  517. LSTR MSG_MMU2_EJECT_FILAMENT_N = _UxGT("Ejecter fil. ~");
  518. LSTR MSG_MMU2_UNLOAD_FILAMENT = _UxGT("Retrait filament");
  519. LSTR MSG_MMU2_LOADING_FILAMENT = _UxGT("Chargem. fil. %i...");
  520. LSTR MSG_MMU2_EJECTING_FILAMENT = _UxGT("Ejection fil...");
  521. LSTR MSG_MMU2_UNLOADING_FILAMENT = _UxGT("Retrait fil....");
  522. LSTR MSG_MMU2_ALL = _UxGT("Tous");
  523. LSTR MSG_MMU2_FILAMENT_N = _UxGT("Filament ~");
  524. LSTR MSG_MMU2_RESET = _UxGT("Réinit. MMU");
  525. LSTR MSG_MMU2_RESETTING = _UxGT("Réinit. MMU...");
  526. LSTR MSG_MMU2_EJECT_RECOVER = _UxGT("Retrait, click");
  527. LSTR MSG_MIX_COMPONENT_N = _UxGT("Composante =");
  528. LSTR MSG_MIXER = _UxGT("Mixeur");
  529. LSTR MSG_GRADIENT = _UxGT("Dégradé");
  530. LSTR MSG_FULL_GRADIENT = _UxGT("Dégradé complet");
  531. LSTR MSG_TOGGLE_MIX = _UxGT("Toggle mix");
  532. LSTR MSG_CYCLE_MIX = _UxGT("Cycle mix");
  533. LSTR MSG_GRADIENT_MIX = _UxGT("Mix dégradé");
  534. LSTR MSG_REVERSE_GRADIENT = _UxGT("Inverser dégradé");
  535. LSTR MSG_ACTIVE_VTOOL = _UxGT("Active V-tool");
  536. LSTR MSG_START_VTOOL = _UxGT("Début V-tool");
  537. LSTR MSG_END_VTOOL = _UxGT(" Fin V-tool");
  538. LSTR MSG_GRADIENT_ALIAS = _UxGT("Alias V-tool");
  539. LSTR MSG_RESET_VTOOLS = _UxGT("Réinit. V-tools");
  540. LSTR MSG_COMMIT_VTOOL = _UxGT("Valider Mix V-tool");
  541. LSTR MSG_VTOOLS_RESET = _UxGT("V-tools réinit. ok");
  542. LSTR MSG_START_Z = _UxGT("Début Z:");
  543. LSTR MSG_END_Z = _UxGT(" Fin Z:");
  544. LSTR MSG_GAMES = _UxGT("Jeux");
  545. LSTR MSG_BRICKOUT = _UxGT("Casse-briques");
  546. LSTR MSG_INVADERS = _UxGT("Invaders");
  547. LSTR MSG_SNAKE = _UxGT("Sn4k3");
  548. LSTR MSG_MAZE = _UxGT("Labyrinthe");
  549. LSTR MSG_BAD_PAGE = _UxGT("Erreur index page");
  550. LSTR MSG_BAD_PAGE_SPEED = _UxGT("Erreur vitesse page");
  551. #if LCD_HEIGHT >= 4
  552. // Up to 3 lines allowed
  553. LSTR MSG_ADVANCED_PAUSE_WAITING = _UxGT(MSG_2_LINE("Presser bouton", "pour reprendre"));
  554. LSTR MSG_PAUSE_PRINT_PARKING = _UxGT(MSG_1_LINE("Parking..."));
  555. LSTR MSG_FILAMENT_CHANGE_INIT = _UxGT(MSG_2_LINE("Attente filament", "pour démarrer"));
  556. LSTR MSG_FILAMENT_CHANGE_INSERT = _UxGT(MSG_3_LINE("Insérer filament", "et app. bouton", "pour continuer..."));
  557. LSTR MSG_FILAMENT_CHANGE_HEAT = _UxGT(MSG_2_LINE("Presser le bouton", "pour chauffer..."));
  558. LSTR MSG_FILAMENT_CHANGE_HEATING = _UxGT(MSG_2_LINE("Buse en chauffe", "Patienter SVP..."));
  559. LSTR MSG_FILAMENT_CHANGE_UNLOAD = _UxGT(MSG_2_LINE("Attente", "retrait du filament"));
  560. LSTR MSG_FILAMENT_CHANGE_LOAD = _UxGT(MSG_2_LINE("Attente", "chargement filament"));
  561. LSTR MSG_FILAMENT_CHANGE_PURGE = _UxGT(MSG_2_LINE("Attente", "Purge filament"));
  562. LSTR MSG_FILAMENT_CHANGE_CONT_PURGE = _UxGT(MSG_2_LINE("Presser pour finir", "la purge du filament"));
  563. LSTR MSG_FILAMENT_CHANGE_RESUME = _UxGT(MSG_2_LINE("Attente reprise", "impression"));
  564. #else // LCD_HEIGHT < 4
  565. // Up to 2 lines allowed
  566. LSTR MSG_ADVANCED_PAUSE_WAITING = _UxGT(MSG_1_LINE("Clic pour continuer"));
  567. LSTR MSG_FILAMENT_CHANGE_INIT = _UxGT(MSG_1_LINE("Patience..."));
  568. LSTR MSG_FILAMENT_CHANGE_INSERT = _UxGT(MSG_1_LINE("Insérer fil."));
  569. LSTR MSG_FILAMENT_CHANGE_HEAT = _UxGT(MSG_1_LINE("Chauffer ?"));
  570. LSTR MSG_FILAMENT_CHANGE_HEATING = _UxGT(MSG_1_LINE("Chauffage..."));
  571. LSTR MSG_FILAMENT_CHANGE_UNLOAD = _UxGT(MSG_1_LINE("Retrait fil..."));
  572. LSTR MSG_FILAMENT_CHANGE_LOAD = _UxGT(MSG_1_LINE("Chargement..."));
  573. LSTR MSG_FILAMENT_CHANGE_PURGE = _UxGT(MSG_1_LINE("Purge..."));
  574. LSTR MSG_FILAMENT_CHANGE_CONT_PURGE = _UxGT(MSG_1_LINE("Terminer ?"));
  575. LSTR MSG_FILAMENT_CHANGE_RESUME = _UxGT(MSG_1_LINE("Reprise..."));
  576. #endif // LCD_HEIGHT < 4
  577. LSTR MSG_TMC_CURRENT = _UxGT("Courant driver");
  578. LSTR MSG_TMC_HYBRID_THRS = _UxGT("Seuil hybride");
  579. LSTR MSG_TMC_HOMING_THRS = _UxGT("Home sans capteur");
  580. LSTR MSG_TMC_STEPPING_MODE = _UxGT("Mode pas à pas");
  581. LSTR MSG_TMC_STEALTH_ENABLED = _UxGT("StealthChop activé");
  582. LSTR MSG_SERVICE_RESET = _UxGT("Réinit.");
  583. LSTR MSG_SERVICE_IN = _UxGT(" dans:");
  584. LSTR MSG_BACKLASH_CORRECTION = _UxGT("Correction");
  585. LSTR MSG_BACKLASH_SMOOTHING = _UxGT("Lissage");
  586. LSTR MSG_LEVEL_X_AXIS = _UxGT("Niveau axe X");
  587. LSTR MSG_AUTO_CALIBRATE = _UxGT("Etalon. auto.");
  588. #if ENABLED(TOUCH_UI_FTDI_EVE)
  589. LSTR MSG_HEATER_TIMEOUT = _UxGT("En protection, temp. réduite. Ok pour rechauffer et continuer.");
  590. #else
  591. LSTR MSG_HEATER_TIMEOUT = _UxGT("En protection");
  592. #endif
  593. LSTR MSG_REHEAT = _UxGT("Chauffer");
  594. LSTR MSG_REHEATING = _UxGT("Réchauffe...");
  595. LSTR MSG_PROBE_WIZARD = _UxGT("Assistant Sonde Z");
  596. LSTR MSG_PROBE_WIZARD_PROBING = _UxGT("Mesure référence");
  597. LSTR MSG_PROBE_WIZARD_MOVING = _UxGT("Dépl. vers pos");
  598. LSTR MSG_SOUND = _UxGT("Sons");
  599. LSTR MSG_TOP_LEFT = _UxGT("Coin haut gauche");
  600. LSTR MSG_BOTTOM_LEFT = _UxGT("Coin bas gauche");
  601. LSTR MSG_TOP_RIGHT = _UxGT("Coin haut droit");
  602. LSTR MSG_BOTTOM_RIGHT = _UxGT("Coin bas droit");
  603. LSTR MSG_CALIBRATION_COMPLETED = _UxGT("Calibration terminée");
  604. LSTR MSG_CALIBRATION_FAILED = _UxGT("Échec de l'étalonnage");
  605. LSTR MSG_SD_CARD = _UxGT("Carte SD");
  606. LSTR MSG_USB_DISK = _UxGT("Clé USB");
  607. }