2017-10-15 02:35:51 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* French
|
|
|
|
*
|
|
|
|
* LCD Menu Messages
|
|
|
|
* See also http://marlinfw.org/docs/development/lcd_language.html
|
|
|
|
*
|
|
|
|
*/
|
2017-10-26 22:48:00 +02:00
|
|
|
#ifndef LANGUAGE_FR_UTF_H
|
|
|
|
#define LANGUAGE_FR_UTF_H
|
2017-10-15 02:35:51 +02:00
|
|
|
|
|
|
|
#define MAPPER_C2C3
|
|
|
|
#define DISPLAY_CHARSET_ISO10646_1
|
2018-02-10 21:06:02 +01:00
|
|
|
#define CHARSIZE 2
|
2017-10-15 02:35:51 +02:00
|
|
|
|
|
|
|
#define WELCOME_MSG MACHINE_NAME _UxGT(" prête.")
|
|
|
|
#define MSG_BACK _UxGT("Retour")
|
|
|
|
#define MSG_SD_INSERTED _UxGT("Carte insérée")
|
|
|
|
#define MSG_SD_REMOVED _UxGT("Carte retirée")
|
|
|
|
#define MSG_LCD_ENDSTOPS _UxGT("Butées") // Max length 8 characters
|
|
|
|
#define MSG_MAIN _UxGT("Menu principal")
|
|
|
|
#define MSG_AUTOSTART _UxGT("Demarrage auto")
|
|
|
|
#define MSG_DISABLE_STEPPERS _UxGT("Arrêter moteurs")
|
|
|
|
#define MSG_DEBUG_MENU _UxGT("Menu debug")
|
|
|
|
#define MSG_PROGRESS_BAR_TEST _UxGT("Test barre progress.")
|
|
|
|
#define MSG_AUTO_HOME _UxGT("Origine auto.")
|
|
|
|
#define MSG_AUTO_HOME_X _UxGT("Origine X Auto.")
|
|
|
|
#define MSG_AUTO_HOME_Y _UxGT("Origine Y Auto.")
|
|
|
|
#define MSG_AUTO_HOME_Z _UxGT("Origine Z Auto.")
|
|
|
|
#define MSG_LEVEL_BED_HOMING _UxGT("Origine XYZ")
|
|
|
|
#define MSG_LEVEL_BED_WAITING _UxGT("Clic pour commencer")
|
|
|
|
#define MSG_LEVEL_BED_NEXT_POINT _UxGT("Point suivant")
|
|
|
|
#define MSG_LEVEL_BED_DONE _UxGT("Mise à niveau OK!")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_Z_FADE_HEIGHT _UxGT("Hauteur lissée")
|
|
|
|
#define MSG_SET_HOME_OFFSETS _UxGT("Régl. décal. origine")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_HOME_OFFSETS_APPLIED _UxGT("Décalages appliqués")
|
|
|
|
#define MSG_SET_ORIGIN _UxGT("Régler origine")
|
|
|
|
#define MSG_PREHEAT_1 _UxGT("Préchauffage PLA")
|
|
|
|
#define MSG_PREHEAT_1_N _UxGT("Préchauff. PLA ")
|
|
|
|
#define MSG_PREHEAT_1_ALL _UxGT("Préch. PLA Tout")
|
|
|
|
#define MSG_PREHEAT_1_END MSG_PREHEAT_1 _UxGT(" fini")
|
|
|
|
#define MSG_PREHEAT_1_BEDONLY _UxGT("Préch. PLA lit")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_PREHEAT_1_SETTINGS _UxGT("Régl. prech. PLA")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_PREHEAT_2 _UxGT("Préchauffage ABS")
|
|
|
|
#define MSG_PREHEAT_2_N _UxGT("Préchauff. ABS ")
|
|
|
|
#define MSG_PREHEAT_2_ALL _UxGT("Préch. ABS Tout")
|
|
|
|
#define MSG_PREHEAT_2_END MSG_PREHEAT_2 _UxGT(" fini")
|
|
|
|
#define MSG_PREHEAT_2_BEDONLY _UxGT("Préch. ABS lit")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_PREHEAT_2_SETTINGS _UxGT("Régl. prech. ABS")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_COOLDOWN _UxGT("Refroidir")
|
|
|
|
#define MSG_SWITCH_PS_ON _UxGT("Allumer alim.")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_SWITCH_PS_OFF _UxGT("Eteindre alim.")
|
|
|
|
#define MSG_EXTRUDE _UxGT("Extrusion")
|
|
|
|
#define MSG_RETRACT _UxGT("Retrait")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_MOVE_AXIS _UxGT("Déplacer un axe")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_BED_LEVELING _UxGT("Régl. Niv. lit")
|
|
|
|
#define MSG_LEVEL_BED _UxGT("Régl. Niv. lit")
|
2018-02-10 21:06:02 +01:00
|
|
|
#define MSG_LEVEL_CORNERS _UxGT("Niveau coins")
|
|
|
|
#define MSG_NEXT_CORNER _UxGT("Coin suivant")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_EDITING_STOPPED _UxGT("Arrêt édit. maillage")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_USER_MENU _UxGT("Commandes perso")
|
|
|
|
|
|
|
|
#define MSG_UBL_DOING_G29 _UxGT("G29 en cours")
|
|
|
|
#define MSG_UBL_UNHOMED _UxGT("Origine XYZ d'abord")
|
|
|
|
#define MSG_UBL_TOOLS _UxGT("Outils UBL")
|
|
|
|
#define MSG_UBL_LEVEL_BED _UxGT("Niveau lit unifié")
|
|
|
|
#define MSG_UBL_MANUAL_MESH _UxGT("Maillage manuel")
|
|
|
|
#define MSG_UBL_BC_INSERT _UxGT("Poser câle & mesurer")
|
|
|
|
#define MSG_UBL_BC_INSERT2 _UxGT("Mesure")
|
|
|
|
#define MSG_UBL_BC_REMOVE _UxGT("ôter et mesurer lit")
|
|
|
|
#define MSG_UBL_MOVING_TO_NEXT _UxGT("Aller au suivant")
|
|
|
|
#define MSG_UBL_ACTIVATE_MESH _UxGT("Activer l'UBL")
|
|
|
|
#define MSG_UBL_DEACTIVATE_MESH _UxGT("Désactiver l'UBL")
|
|
|
|
#define MSG_UBL_SET_BED_TEMP _UxGT("Température lit")
|
|
|
|
#define MSG_UBL_CUSTOM_BED_TEMP MSG_UBL_SET_BED_TEMP
|
|
|
|
#define MSG_UBL_SET_HOTEND_TEMP _UxGT("Température buse")
|
|
|
|
#define MSG_UBL_CUSTOM_HOTEND_TEMP MSG_UBL_SET_HOTEND_TEMP
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_UBL_MESH_EDIT _UxGT("Editer maille")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_UBL_EDIT_CUSTOM_MESH _UxGT("Editer maille perso")
|
|
|
|
#define MSG_UBL_FINE_TUNE_MESH _UxGT("Réglage fin maille")
|
2018-01-28 00:01:00 +01:00
|
|
|
#define MSG_UBL_DONE_EDITING_MESH _UxGT("Terminer maille")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_UBL_BUILD_CUSTOM_MESH _UxGT("Créer maille perso")
|
|
|
|
#define MSG_UBL_BUILD_MESH_MENU _UxGT("Créer maille")
|
|
|
|
#define MSG_UBL_BUILD_PLA_MESH _UxGT("Créer maille PLA")
|
|
|
|
#define MSG_UBL_BUILD_ABS_MESH _UxGT("Créer maille ABS")
|
|
|
|
#define MSG_UBL_BUILD_COLD_MESH _UxGT("Créer maille froide")
|
|
|
|
#define MSG_UBL_MESH_HEIGHT_ADJUST _UxGT("Ajuster haut. maille")
|
|
|
|
#define MSG_UBL_MESH_HEIGHT_AMOUNT _UxGT("Hauteur")
|
|
|
|
#define MSG_UBL_VALIDATE_MESH_MENU _UxGT("Valider maille")
|
|
|
|
#define MSG_UBL_VALIDATE_PLA_MESH _UxGT("Valider maille PLA")
|
|
|
|
#define MSG_UBL_VALIDATE_ABS_MESH _UxGT("Valider maille ABS")
|
|
|
|
#define MSG_UBL_VALIDATE_CUSTOM_MESH _UxGT("Valider maille perso")
|
|
|
|
#define MSG_UBL_CONTINUE_MESH _UxGT("Continuer maille")
|
|
|
|
#define MSG_UBL_MESH_LEVELING _UxGT("Niveau par maille")
|
|
|
|
#define MSG_UBL_3POINT_MESH_LEVELING _UxGT("Niveau à 3 points")
|
|
|
|
#define MSG_UBL_GRID_MESH_LEVELING _UxGT("Niveau grille")
|
|
|
|
#define MSG_UBL_MESH_LEVEL _UxGT("Maille de niveau")
|
|
|
|
#define MSG_UBL_SIDE_POINTS _UxGT("Point latéral")
|
|
|
|
#define MSG_UBL_MAP_TYPE _UxGT("Type de carte")
|
|
|
|
#define MSG_UBL_OUTPUT_MAP _UxGT("Voir maille")
|
|
|
|
#define MSG_UBL_OUTPUT_MAP_HOST _UxGT("Voir pour hôte")
|
|
|
|
#define MSG_UBL_OUTPUT_MAP_CSV _UxGT("Voir pour CSV")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_UBL_OUTPUT_MAP_BACKUP _UxGT("Voir pour sauveg.")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_UBL_INFO_UBL _UxGT("Voir info UBL")
|
|
|
|
#define MSG_UBL_EDIT_MESH_MENU _UxGT("Modifier maille")
|
|
|
|
#define MSG_UBL_FILLIN_AMOUNT _UxGT("Taux de remplissage")
|
|
|
|
#define MSG_UBL_MANUAL_FILLIN _UxGT("Remplissage manuel")
|
|
|
|
#define MSG_UBL_SMART_FILLIN _UxGT("Remplissage auto")
|
|
|
|
#define MSG_UBL_FILLIN_MESH _UxGT("Maille remplissage")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_UBL_INVALIDATE_ALL _UxGT("Tout annuler")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_UBL_INVALIDATE_CLOSEST _UxGT("Annuler le plus près")
|
|
|
|
#define MSG_UBL_FINE_TUNE_ALL _UxGT("Réglage fin (tous)")
|
|
|
|
#define MSG_UBL_FINE_TUNE_CLOSEST _UxGT("Réglage fin (proche)")
|
|
|
|
#define MSG_UBL_STORAGE_MESH_MENU _UxGT("Stockage maille")
|
|
|
|
#define MSG_UBL_STORAGE_SLOT _UxGT("Slot mémoire")
|
|
|
|
#define MSG_UBL_LOAD_MESH _UxGT("Charger maille")
|
|
|
|
#define MSG_UBL_SAVE_MESH _UxGT("Sauver maille")
|
2018-02-10 21:06:02 +01:00
|
|
|
#define MSG_MESH_LOADED _UxGT("Maille %i charg.")
|
|
|
|
#define MSG_MESH_SAVED _UxGT("Maille %i enreg.")
|
|
|
|
#define MSG_NO_STORAGE _UxGT("Pas de mémoire")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_UBL_SAVE_ERROR _UxGT("Err: Enreg. UBL")
|
|
|
|
#define MSG_UBL_RESTORE_ERROR _UxGT("Err: Ouvrir UBL")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_UBL_Z_OFFSET_STOPPED _UxGT("Décal. Z arrêté")
|
|
|
|
#define MSG_UBL_STEP_BY_STEP_MENU _UxGT("UBL Pas à pas")
|
2017-10-15 02:35:51 +02:00
|
|
|
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_LED_CONTROL _UxGT("Contrôle LED")
|
|
|
|
#define MSG_LEDS_ON _UxGT("Lumière ON")
|
2018-02-10 21:06:02 +01:00
|
|
|
#define MSG_LEDS_OFF _UxGT("Lumière OFF")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_LED_PRESETS _UxGT("Préregl. LED")
|
2018-02-10 21:06:02 +01:00
|
|
|
#define MSG_SET_LEDS_RED _UxGT("Rouge")
|
|
|
|
#define MSG_SET_LEDS_ORANGE _UxGT("Orange")
|
|
|
|
#define MSG_SET_LEDS_YELLOW _UxGT("Jaune")
|
|
|
|
#define MSG_SET_LEDS_GREEN _UxGT("Vert")
|
|
|
|
#define MSG_SET_LEDS_BLUE _UxGT("Bleu")
|
|
|
|
#define MSG_SET_LEDS_INDIGO _UxGT("Indigo")
|
|
|
|
#define MSG_SET_LEDS_VIOLET _UxGT("Violet")
|
|
|
|
#define MSG_SET_LEDS_WHITE _UxGT("Blanc")
|
|
|
|
#define MSG_SET_LEDS_DEFAULT _UxGT("Defaut")
|
|
|
|
#define MSG_CUSTOM_LEDS _UxGT("Lum. perso.")
|
|
|
|
#define MSG_INTENSITY_R _UxGT("Intensité rouge")
|
|
|
|
#define MSG_INTENSITY_G _UxGT("Intensité vert")
|
|
|
|
#define MSG_INTENSITY_B _UxGT("Intensité bleu")
|
|
|
|
#define MSG_INTENSITY_W _UxGT("Intensité blanc")
|
|
|
|
#define MSG_LED_BRIGHTNESS _UxGT("Luminosité")
|
2017-10-15 02:35:51 +02:00
|
|
|
|
|
|
|
#define MSG_MOVING _UxGT("Déplacement...")
|
|
|
|
#define MSG_FREE_XY _UxGT("Débloquer XY")
|
|
|
|
#define MSG_MOVE_X _UxGT("Dépl. X")
|
|
|
|
#define MSG_MOVE_Y _UxGT("Dépl. Y")
|
|
|
|
#define MSG_MOVE_Z _UxGT("Dépl. Z")
|
2018-02-14 11:17:54 +01:00
|
|
|
#define MSG_MOVE_E _UxGT("Extrudeur")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_MOVE_01MM _UxGT("Dépl. 0.1mm")
|
|
|
|
#define MSG_MOVE_1MM _UxGT("Dépl. 1mm")
|
|
|
|
#define MSG_MOVE_10MM _UxGT("Dépl. 10mm")
|
2018-01-28 00:01:00 +01:00
|
|
|
#define MSG_SPEED _UxGT("Vitesse")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_BED_Z _UxGT("Lit Z")
|
|
|
|
#define MSG_NOZZLE _UxGT("Buse")
|
|
|
|
#define MSG_BED _UxGT("Lit")
|
|
|
|
#define MSG_FAN_SPEED _UxGT("Vitesse ventil.")
|
2018-02-14 11:17:54 +01:00
|
|
|
#define MSG_EXTRA_FAN_SPEED _UxGT("Extra V ventil.")
|
2018-02-10 21:06:02 +01:00
|
|
|
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_FLOW _UxGT("Flux")
|
|
|
|
#define MSG_CONTROL _UxGT("Contrôler")
|
|
|
|
#define MSG_MIN LCD_STR_THERMOMETER _UxGT(" Min")
|
|
|
|
#define MSG_MAX LCD_STR_THERMOMETER _UxGT(" Max")
|
|
|
|
#define MSG_FACTOR LCD_STR_THERMOMETER _UxGT(" Facteur")
|
|
|
|
#define MSG_AUTOTEMP _UxGT("Temp. Auto.")
|
|
|
|
#define MSG_ON _UxGT("Marche ")
|
|
|
|
#define MSG_OFF _UxGT("Arrêt")
|
|
|
|
#define MSG_PID_P _UxGT("PID-P")
|
|
|
|
#define MSG_PID_I _UxGT("PID-I")
|
|
|
|
#define MSG_PID_D _UxGT("PID-D")
|
|
|
|
#define MSG_PID_C _UxGT("PID-C")
|
|
|
|
#define MSG_SELECT _UxGT("Sélectionner")
|
|
|
|
#define MSG_ACC _UxGT("Accélération")
|
|
|
|
#define MSG_JERK _UxGT("Jerk")
|
2018-02-03 01:49:32 +01:00
|
|
|
#if IS_KINEMATIC
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_VA_JERK _UxGT("Va jerk")
|
|
|
|
#define MSG_VB_JERK _UxGT("Vb jerk")
|
|
|
|
#define MSG_VC_JERK _UxGT("Vc jerk")
|
2018-02-03 01:49:32 +01:00
|
|
|
#else
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_VA_JERK _UxGT("Vx jerk")
|
|
|
|
#define MSG_VB_JERK _UxGT("Vy jerk")
|
|
|
|
#define MSG_VC_JERK _UxGT("Vz jerk")
|
2018-02-03 01:49:32 +01:00
|
|
|
#endif
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_VE_JERK _UxGT("Ve jerk")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_VELOCITY _UxGT("Vélocité")
|
2018-02-14 11:17:54 +01:00
|
|
|
#define MSG_VMAX _UxGT("Vmax ")
|
|
|
|
#define MSG_VMIN _UxGT("Vmin ")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_VTRAV_MIN _UxGT("V dépl. min")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_ACCELERATION _UxGT("Accélération")
|
|
|
|
#define MSG_AMAX _UxGT("Amax ")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_A_RETRACT _UxGT("A retrait")
|
2018-02-14 11:17:54 +01:00
|
|
|
#define MSG_A_TRAVEL _UxGT("A dépl.")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_STEPS_PER_MM _UxGT("Pas/mm")
|
2018-02-03 01:49:32 +01:00
|
|
|
#if IS_KINEMATIC
|
|
|
|
#define MSG_ASTEPS _UxGT("A pas/mm")
|
|
|
|
#define MSG_BSTEPS _UxGT("B pas/mm")
|
|
|
|
#define MSG_CSTEPS _UxGT("C pas/mm")
|
|
|
|
#else
|
|
|
|
#define MSG_ASTEPS _UxGT("X pas/mm")
|
|
|
|
#define MSG_BSTEPS _UxGT("Y pas/mm")
|
|
|
|
#define MSG_CSTEPS _UxGT("Z pas/mm")
|
|
|
|
#endif
|
|
|
|
#define MSG_ESTEPS _UxGT("E pas/mm")
|
|
|
|
#define MSG_E1STEPS _UxGT("E1 pas/mm")
|
|
|
|
#define MSG_E2STEPS _UxGT("E2 pas/mm")
|
|
|
|
#define MSG_E3STEPS _UxGT("E3 pas/mm")
|
|
|
|
#define MSG_E4STEPS _UxGT("E4 pas/mm")
|
|
|
|
#define MSG_E5STEPS _UxGT("E5 pas/mm")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_TEMPERATURE _UxGT("Température")
|
|
|
|
#define MSG_MOTION _UxGT("Mouvement")
|
|
|
|
#define MSG_FILAMENT _UxGT("Filament")
|
|
|
|
#define MSG_VOLUMETRIC_ENABLED _UxGT("E en mm3")
|
|
|
|
#define MSG_FILAMENT_DIAM _UxGT("Diam. Fil.")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_FILAMENT_UNLOAD _UxGT("Décharger mm")
|
2018-02-10 21:06:02 +01:00
|
|
|
#define MSG_FILAMENT_LOAD _UxGT("Charger mm")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_ADVANCE_K _UxGT("Avance K")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_CONTRAST _UxGT("Contraste LCD")
|
|
|
|
#define MSG_STORE_EEPROM _UxGT("Sauver config")
|
|
|
|
#define MSG_LOAD_EEPROM _UxGT("Lire config")
|
|
|
|
#define MSG_RESTORE_FAILSAFE _UxGT("Restaurer défauts")
|
|
|
|
#define MSG_INIT_EEPROM _UxGT("Initialiser EEPROM")
|
|
|
|
#define MSG_REFRESH _UxGT("Actualiser")
|
|
|
|
#define MSG_WATCH _UxGT("Surveiller")
|
|
|
|
#define MSG_PREPARE _UxGT("Préparer")
|
|
|
|
#define MSG_TUNE _UxGT("Régler")
|
|
|
|
#define MSG_PAUSE_PRINT _UxGT("Interrompre impr.")
|
|
|
|
#define MSG_RESUME_PRINT _UxGT("Reprendre impr.")
|
|
|
|
#define MSG_STOP_PRINT _UxGT("Arrêter impr.")
|
|
|
|
#define MSG_CARD_MENU _UxGT("Impr. depuis SD")
|
|
|
|
#define MSG_NO_CARD _UxGT("Pas de carte")
|
|
|
|
#define MSG_DWELL _UxGT("Repos...")
|
|
|
|
#define MSG_USERWAIT _UxGT("Atten. de l'util.")
|
|
|
|
#define MSG_PRINT_PAUSED _UxGT("Impr. en pause")
|
|
|
|
#define MSG_PRINT_ABORTED _UxGT("Impr. Annulée")
|
|
|
|
#define MSG_NO_MOVE _UxGT("Moteurs bloqués.")
|
|
|
|
#define MSG_KILLED _UxGT("MORT.")
|
|
|
|
#define MSG_STOPPED _UxGT("STOPPÉ.")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_CONTROL_RETRACT _UxGT("Retrait mm")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_CONTROL_RETRACT_SWAP _UxGT("Ech. Retr. mm")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_CONTROL_RETRACTF _UxGT("Retrait V")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_CONTROL_RETRACT_ZLIFT _UxGT("Saut Z mm")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_CONTROL_RETRACT_RECOVER _UxGT("Rappel mm")
|
|
|
|
#define MSG_CONTROL_RETRACT_RECOVER_SWAP _UxGT("Ech. Rappel mm")
|
|
|
|
#define MSG_CONTROL_RETRACT_RECOVERF _UxGT("Rappel V")
|
2018-02-14 11:17:54 +01:00
|
|
|
#define MSG_CONTROL_RETRACT_RECOVER_SWAPF _UxGT("Ech. Rappel V")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_AUTORETRACT _UxGT("Retrait. Auto.")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_FILAMENTCHANGE _UxGT("Changer filament")
|
2018-02-10 21:06:02 +01:00
|
|
|
#define MSG_FILAMENTLOAD _UxGT("Charger fil.")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_FILAMENTUNLOAD _UxGT("Décharger fil.")
|
|
|
|
#define MSG_FILAMENTUNLOAD_ALL _UxGT("Décharger tout")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_INIT_SDCARD _UxGT("Init. la carte SD")
|
|
|
|
#define MSG_CNG_SDCARD _UxGT("Changer de carte")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_ZPROBE_OUT _UxGT("Z sonde hors lit")
|
|
|
|
#define MSG_SKEW_FACTOR _UxGT("Facteur écart")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_BLTOUCH _UxGT("BLTouch")
|
|
|
|
#define MSG_BLTOUCH_SELFTEST _UxGT("Autotest BLTouch")
|
|
|
|
#define MSG_BLTOUCH_RESET _UxGT("RaZ BLTouch")
|
|
|
|
#define MSG_BLTOUCH_DEPLOY _UxGT("Déployer BLTouch")
|
|
|
|
#define MSG_BLTOUCH_STOW _UxGT("Ranger BLTouch")
|
|
|
|
#define MSG_HOME _UxGT("Origine") // Used as MSG_HOME " " MSG_X MSG_Y MSG_Z " " MSG_FIRST
|
|
|
|
#define MSG_FIRST _UxGT("Premier")
|
|
|
|
#define MSG_ZPROBE_ZOFFSET _UxGT("Décalage Z")
|
|
|
|
#define MSG_BABYSTEP_X _UxGT("Babystep X")
|
|
|
|
#define MSG_BABYSTEP_Y _UxGT("Babystep Y")
|
|
|
|
#define MSG_BABYSTEP_Z _UxGT("Babystep Z")
|
|
|
|
#define MSG_ENDSTOP_ABORT _UxGT("Butée abandon")
|
|
|
|
#define MSG_HEATING_FAILED_LCD _UxGT("Erreur de chauffe")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_ERR_REDUNDANT_TEMP _UxGT("Err: TEMP. REDONDANTE")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_THERMAL_RUNAWAY _UxGT("EMBALLEMENT THERM.")
|
|
|
|
#define MSG_ERR_MAXTEMP _UxGT("Err: TEMP. MAX")
|
|
|
|
#define MSG_ERR_MINTEMP _UxGT("Err: TEMP. MIN")
|
|
|
|
#define MSG_ERR_MAXTEMP_BED _UxGT("Err: TEMP. MAX LIT")
|
|
|
|
#define MSG_ERR_MINTEMP_BED _UxGT("Err: TEMP. MIN LIT")
|
2018-03-29 04:54:20 +02:00
|
|
|
#define MSG_ERR_Z_HOMING MSG_HOME _UxGT(" ") MSG_X MSG_Y _UxGT(" ") MSG_FIRST
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_HALTED _UxGT("IMPR. STOPPÉE")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_PLEASE_RESET _UxGT("RàZ. SVP")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_SHORT_DAY _UxGT("j") // One character only
|
|
|
|
#define MSG_SHORT_HOUR _UxGT("h") // One character only
|
|
|
|
#define MSG_SHORT_MINUTE _UxGT("m") // One character only
|
|
|
|
|
|
|
|
#define MSG_HEATING _UxGT("En chauffe...")
|
2018-02-12 08:08:33 +01:00
|
|
|
#define MSG_BED_HEATING _UxGT("Lit en chauffe...")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_DELTA_CALIBRATE _UxGT("Calibration Delta")
|
|
|
|
#define MSG_DELTA_CALIBRATE_X _UxGT("Calibrer X")
|
|
|
|
#define MSG_DELTA_CALIBRATE_Y _UxGT("Calibrer Y")
|
|
|
|
#define MSG_DELTA_CALIBRATE_Z _UxGT("Calibrer Z")
|
|
|
|
#define MSG_DELTA_CALIBRATE_CENTER _UxGT("Calibrer centre")
|
2018-02-10 21:06:02 +01:00
|
|
|
#define MSG_DELTA_SETTINGS _UxGT("Réglages Delta")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_DELTA_AUTO_CALIBRATE _UxGT("Calibration Auto")
|
|
|
|
#define MSG_DELTA_HEIGHT_CALIBRATE _UxGT("Hauteur Delta")
|
2018-02-10 21:06:02 +01:00
|
|
|
#define MSG_DELTA_DIAG_ROD _UxGT("Diagonale")
|
|
|
|
#define MSG_DELTA_HEIGHT _UxGT("Hauteur")
|
|
|
|
#define MSG_DELTA_RADIUS _UxGT("Rayon")
|
2017-10-15 02:35:51 +02:00
|
|
|
|
|
|
|
#define MSG_INFO_MENU _UxGT("Infos imprimante")
|
|
|
|
#define MSG_INFO_PRINTER_MENU _UxGT("Infos imprimante")
|
|
|
|
#define MSG_3POINT_LEVELING _UxGT("Niveau à 3 points")
|
|
|
|
#define MSG_LINEAR_LEVELING _UxGT("Niveau linéaire")
|
|
|
|
#define MSG_BILINEAR_LEVELING _UxGT("Niveau bilinéaire")
|
|
|
|
#define MSG_UBL_LEVELING _UxGT("Niveau lit unifié")
|
|
|
|
#define MSG_MESH_LEVELING _UxGT("Niveau maillage")
|
|
|
|
#define MSG_INFO_STATS_MENU _UxGT("Stats. imprimante")
|
|
|
|
#define MSG_INFO_BOARD_MENU _UxGT("Infos carte")
|
|
|
|
#define MSG_INFO_THERMISTOR_MENU _UxGT("Thermistors")
|
|
|
|
#define MSG_INFO_EXTRUDERS _UxGT("Extrudeurs")
|
|
|
|
#define MSG_INFO_BAUDRATE _UxGT("Baud")
|
|
|
|
#define MSG_INFO_PROTOCOL _UxGT("Protocole")
|
|
|
|
#define MSG_CASE_LIGHT _UxGT("Lumière caisson")
|
|
|
|
#define MSG_CASE_LIGHT_BRIGHTNESS _UxGT("Luminosité")
|
|
|
|
|
|
|
|
#if LCD_WIDTH >= 20
|
|
|
|
#define MSG_INFO_PRINT_COUNT _UxGT("Nbre impressions")
|
|
|
|
#define MSG_INFO_COMPLETED_PRINTS _UxGT("Terminées")
|
|
|
|
#define MSG_INFO_PRINT_TIME _UxGT("Tps impr. total")
|
|
|
|
#define MSG_INFO_PRINT_LONGEST _UxGT("Impr. la + longue")
|
|
|
|
#define MSG_INFO_PRINT_FILAMENT _UxGT("Total filament")
|
|
|
|
#else
|
|
|
|
#define MSG_INFO_PRINT_COUNT _UxGT("Impressions")
|
|
|
|
#define MSG_INFO_COMPLETED_PRINTS _UxGT("Terminées")
|
|
|
|
#define MSG_INFO_PRINT_TIME _UxGT("Total")
|
|
|
|
#define MSG_INFO_PRINT_LONGEST _UxGT("+ long")
|
|
|
|
#define MSG_INFO_PRINT_FILAMENT _UxGT("Filament")
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define MSG_INFO_MIN_TEMP _UxGT("Temp Min")
|
|
|
|
#define MSG_INFO_MAX_TEMP _UxGT("Temp Max")
|
|
|
|
#define MSG_INFO_PSU _UxGT("Alimentation")
|
|
|
|
#define MSG_DRIVE_STRENGTH _UxGT("Puiss. moteur ")
|
|
|
|
#define MSG_DAC_PERCENT _UxGT("Driver %")
|
|
|
|
#define MSG_DAC_EEPROM_WRITE _UxGT("DAC EEPROM sauv.")
|
|
|
|
|
2018-02-10 21:06:02 +01:00
|
|
|
#define MSG_FILAMENT_CHANGE_HEADER_PAUSE _UxGT("IMPR. PAUSE")
|
|
|
|
#define MSG_FILAMENT_CHANGE_HEADER_LOAD _UxGT("CHARGER FIL")
|
|
|
|
#define MSG_FILAMENT_CHANGE_HEADER_UNLOAD _UxGT("DECHARGER FIL")
|
|
|
|
#define MSG_FILAMENT_CHANGE_OPTION_HEADER _UxGT("OPTIONS REPRISE:")
|
|
|
|
#define MSG_FILAMENT_CHANGE_OPTION_PURGE _UxGT("Purger encore")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_FILAMENT_CHANGE_OPTION_RESUME _UxGT("Reprendre impr.")
|
|
|
|
#define MSG_FILAMENT_CHANGE_NOZZLE _UxGT(" Buse: ")
|
2018-02-10 21:06:02 +01:00
|
|
|
#define MSG_ERR_HOMING_FAILED _UxGT("Echec origine")
|
|
|
|
#define MSG_ERR_PROBING_FAILED _UxGT("Echec sonde")
|
|
|
|
#define MSG_M600_TOO_COLD _UxGT("M600: Trop froid")
|
2017-10-15 02:35:51 +02:00
|
|
|
|
|
|
|
#if LCD_HEIGHT >= 4
|
|
|
|
// Up to 3 lines allowed
|
|
|
|
#define MSG_FILAMENT_CHANGE_INIT_1 _UxGT("Attente Démarrage")
|
|
|
|
#define MSG_FILAMENT_CHANGE_INIT_2 _UxGT("du filament")
|
|
|
|
#define MSG_FILAMENT_CHANGE_INIT_3 _UxGT("changer")
|
2018-02-10 21:06:02 +01:00
|
|
|
#define MSG_FILAMENT_CHANGE_UNLOAD_1 _UxGT("Attente de")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_FILAMENT_CHANGE_UNLOAD_2 _UxGT("décharger filament")
|
2018-02-10 21:06:02 +01:00
|
|
|
#define MSG_FILAMENT_CHANGE_INSERT_1 _UxGT("Insérer filament")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_FILAMENT_CHANGE_INSERT_2 _UxGT("et app. bouton")
|
|
|
|
#define MSG_FILAMENT_CHANGE_INSERT_3 _UxGT("pour continuer...")
|
|
|
|
#define MSG_FILAMENT_CHANGE_HEAT_1 _UxGT("Presser le bouton...")
|
|
|
|
#define MSG_FILAMENT_CHANGE_HEAT_2 _UxGT("Pr chauffer la buse")
|
|
|
|
#define MSG_FILAMENT_CHANGE_HEATING_1 _UxGT("Buse en chauffe")
|
|
|
|
#define MSG_FILAMENT_CHANGE_HEATING_2 _UxGT("Patientez SVP...")
|
2018-02-10 21:06:02 +01:00
|
|
|
#define MSG_FILAMENT_CHANGE_LOAD_1 _UxGT("Attente de")
|
2018-02-14 11:17:54 +01:00
|
|
|
#define MSG_FILAMENT_CHANGE_LOAD_2 _UxGT("Chargement filament")
|
2018-02-10 21:06:02 +01:00
|
|
|
#define MSG_FILAMENT_CHANGE_PURGE_1 _UxGT("Attente")
|
|
|
|
#define MSG_FILAMENT_CHANGE_PURGE_2 _UxGT("Purger filament")
|
|
|
|
#define MSG_FILAMENT_CHANGE_RESUME_1 _UxGT("Attente impression")
|
2017-10-15 02:35:51 +02:00
|
|
|
#define MSG_FILAMENT_CHANGE_RESUME_2 _UxGT("pour reprendre")
|
|
|
|
#else // LCD_HEIGHT < 4
|
|
|
|
// Up to 2 lines allowed
|
|
|
|
#define MSG_FILAMENT_CHANGE_INIT_1 _UxGT("Patientez...")
|
|
|
|
#define MSG_FILAMENT_CHANGE_UNLOAD_1 _UxGT("Ejection...")
|
|
|
|
#define MSG_FILAMENT_CHANGE_INSERT_1 _UxGT("Insérer et clic")
|
|
|
|
#define MSG_FILAMENT_CHANGE_LOAD_1 _UxGT("Chargement...")
|
|
|
|
#define MSG_FILAMENT_CHANGE_RESUME_1 _UxGT("Reprise...")
|
|
|
|
#endif // LCD_HEIGHT < 4
|
|
|
|
|
2017-10-26 22:48:00 +02:00
|
|
|
#endif // LANGUAGE_FR_UTF_H
|