Skip to content
Snippets Groups Projects
language_en.h 13.3 KiB
Newer Older
  • Learn to ignore specific revisions
  • /**
     * English
     *
     * LCD Menu Messages
    
     * Se also documentation/LCDLanguageFont.md
    
     *
     */
    #ifndef LANGUAGE_EN_H
    #define LANGUAGE_EN_H
    
    #if DISABLED(MAPPER_NON) && DISABLED(MAPPER_C2C3) && DISABLED(MAPPER_D0D1) && DISABLED(MAPPER_D0D1_MOD) && DISABLED(MAPPER_E382E383)
    
      #define MAPPER_NON         // For direct asci codes
    #endif
    
    
    //#define SIMULATE_ROMFONT //Comment in to see what is seen on the character based displays
    
    #if DISABLED(SIMULATE_ROMFONT) && DISABLED(DISPLAY_CHARSET_ISO10646_1) && DISABLED(DISPLAY_CHARSET_ISO10646_5) && DISABLED(DISPLAY_CHARSET_ISO10646_KANA) && DISABLED(DISPLAY_CHARSET_ISO10646_CN)
    
      #define DISPLAY_CHARSET_ISO10646_1 // use the better font on full graphic displays.
    #endif
    
    
    
    AnHardt's avatar
    AnHardt committed
    #ifndef WELCOME_MSG
    
    #define WELCOME_MSG                         MACHINE_NAME " ready."
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_SD_INSERTED
    
    #define MSG_SD_INSERTED                     "Card inserted"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_SD_REMOVED
    
    #define MSG_SD_REMOVED                      "Card removed"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_MAIN
    
    #define MSG_MAIN                            "Main"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_AUTOSTART
    
    #define MSG_AUTOSTART                       "Autostart"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_DISABLE_STEPPERS
    
    #define MSG_DISABLE_STEPPERS                "Disable steppers"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_AUTO_HOME
    
    #define MSG_AUTO_HOME                       "Auto home"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_SET_HOME_OFFSETS
    
    #define MSG_SET_HOME_OFFSETS                "Set home offsets"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_SET_ORIGIN
    
    #define MSG_SET_ORIGIN                      "Set origin"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_PREHEAT_PLA
    
    #define MSG_PREHEAT_PLA                     "Preheat PLA"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_PREHEAT_PLA_N
    
    #define MSG_PREHEAT_PLA_N                   MSG_PREHEAT_PLA " "
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_PREHEAT_PLA_ALL
    
    #define MSG_PREHEAT_PLA_ALL                 MSG_PREHEAT_PLA " All"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_PREHEAT_PLA_BEDONLY
    
    #define MSG_PREHEAT_PLA_BEDONLY             MSG_PREHEAT_PLA " Bed"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_PREHEAT_PLA_SETTINGS
    
    #define MSG_PREHEAT_PLA_SETTINGS            MSG_PREHEAT_PLA " conf"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_PREHEAT_ABS
    
    #define MSG_PREHEAT_ABS                     "Preheat ABS"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_PREHEAT_ABS_N
    
    #define MSG_PREHEAT_ABS_N                   MSG_PREHEAT_ABS " "
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_PREHEAT_ABS_ALL
    
    #define MSG_PREHEAT_ABS_ALL                 MSG_PREHEAT_ABS " All"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_PREHEAT_ABS_BEDONLY
    
    #define MSG_PREHEAT_ABS_BEDONLY             MSG_PREHEAT_ABS " Bed"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_PREHEAT_ABS_SETTINGS
    
    #define MSG_PREHEAT_ABS_SETTINGS            MSG_PREHEAT_ABS " conf"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    
    #ifndef MSG_H1
    #define MSG_H1                              "1"
    #endif
    #ifndef MSG_H2
    #define MSG_H2                              "2"
    #endif
    #ifndef MSG_H3
    #define MSG_H3                              "3"
    #endif
    #ifndef MSG_H4
    #define MSG_H4                              "4"
    #endif
    
    AnHardt's avatar
    AnHardt committed
    #ifndef MSG_COOLDOWN
    
    #define MSG_COOLDOWN                        "Cooldown"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_SWITCH_PS_ON
    
    #define MSG_SWITCH_PS_ON                    "Switch power on"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_SWITCH_PS_OFF
    
    #define MSG_SWITCH_PS_OFF                   "Switch power off"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_EXTRUDE
    
    #define MSG_EXTRUDE                         "Extrude"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_RETRACT
    
    #define MSG_RETRACT                         "Retract"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_MOVE_AXIS
    
    #define MSG_MOVE_AXIS                       "Move axis"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    
    #ifndef MSG_LEVEL_BED
    #define MSG_LEVEL_BED                       "Level bed"
    #endif
    
    AnHardt's avatar
    AnHardt committed
    #ifndef MSG_MOVE_X
    
    #define MSG_MOVE_X                          "Move X"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_MOVE_Y
    
    #define MSG_MOVE_Y                          "Move Y"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_MOVE_Z
    
    #define MSG_MOVE_Z                          "Move Z"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_MOVE_E
    
    #define MSG_MOVE_E                          "Extruder"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    
    #if EXTRUDERS > 1
      #ifndef MSG_MOVE_E1
      #define MSG_MOVE_E1                       "Extruder1"
      #endif
      #if EXTRUDERS > 2
        #ifndef MSG_MOVE_E2
        #define MSG_MOVE_E2                     "Extruder2"
        #endif
        #if EXTRUDERS > 3
          #ifndef MSG_MOVE_E3
          #define MSG_MOVE_E3                   "Extruder3"
          #endif
        #endif
      #endif // EXTRUDERS > 2
    #endif // EXTRUDERS > 1
    
    AnHardt's avatar
    AnHardt committed
    #ifndef MSG_MOVE_01MM
    
    #define MSG_MOVE_01MM                       "Move 0.1mm"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_MOVE_1MM
    
    #define MSG_MOVE_1MM                        "Move 1mm"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_MOVE_10MM
    
    #define MSG_MOVE_10MM                       "Move 10mm"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_SPEED
    
    #define MSG_SPEED                           "Speed"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_NOZZLE
    
    #define MSG_NOZZLE                          "Nozzle"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    
    AnHardt's avatar
    AnHardt committed
    #ifndef MSG_N0
    #define MSG_N0                              " 0"
    #endif
    #ifndef MSG_N1
    #define MSG_N1                              " 1"
    #endif
    
    #ifndef MSG_N2
    #define MSG_N2                              " 2"
    #endif
    #ifndef MSG_N3
    #define MSG_N3                              " 3"
    #endif
    #ifndef MSG_N4
    #define MSG_N4                              " 4"
    #endif
    
    AnHardt's avatar
    AnHardt committed
    #ifndef MSG_BED
    
    #define MSG_BED                             "Bed"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_FAN_SPEED
    
    #define MSG_FAN_SPEED                       "Fan speed"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_FLOW
    
    #define MSG_FLOW                            "Flow"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_CONTROL
    
    #define MSG_CONTROL                         "Control"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_MIN
    
    #define MSG_MIN                             " " LCD_STR_THERMOMETER " Min"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_MAX
    
    #define MSG_MAX                             " " LCD_STR_THERMOMETER " Max"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_FACTOR
    
    #define MSG_FACTOR                          " " LCD_STR_THERMOMETER " Fact"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_AUTOTEMP
    
    #define MSG_AUTOTEMP                        "Autotemp"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_ON
    
    #define MSG_ON                              "On "
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_OFF
    
    #define MSG_OFF                             "Off"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_PID_P
    
    #define MSG_PID_P                           "PID-P"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_PID_I
    
    #define MSG_PID_I                           "PID-I"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_PID_D
    
    #define MSG_PID_D                           "PID-D"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_PID_C
    
    #define MSG_PID_C                           "PID-C"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    
    #ifndef MSG_E2
    #define MSG_E2                              " E2"
    #endif
    #ifndef MSG_E3
    #define MSG_E3                              " E3"
    #endif
    #ifndef MSG_E4
    #define MSG_E4                              " E4"
    #endif
    
    AnHardt's avatar
    AnHardt committed
    #ifndef MSG_ACC
    
    #define MSG_ACC                             "Accel"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_VXY_JERK
    
    #define MSG_VXY_JERK                        "Vxy-jerk"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_VZ_JERK
    
    #define MSG_VZ_JERK                         "Vz-jerk"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_VE_JERK
    
    #define MSG_VE_JERK                         "Ve-jerk"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_VMAX
    
    #define MSG_VMAX                            "Vmax "
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_X
    
    #define MSG_X                               "x"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_Y
    
    #define MSG_Y                               "y"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_Z
    
    #define MSG_Z                               "z"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_E
    
    #define MSG_E                               "e"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_VMIN
    
    #define MSG_VMIN                            "Vmin"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_VTRAV_MIN
    
    #define MSG_VTRAV_MIN                       "VTrav min"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_AMAX
    
    #define MSG_AMAX                            "Amax "
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_A_RETRACT
    
    #define MSG_A_RETRACT                       "A-retract"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    
    #ifndef MSG_A_TRAVEL
    #define MSG_A_TRAVEL                        "A-travel"
    #endif
    
    AnHardt's avatar
    AnHardt committed
    #ifndef MSG_XSTEPS
    
    #define MSG_XSTEPS                          "Xsteps/mm"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_YSTEPS
    
    #define MSG_YSTEPS                          "Ysteps/mm"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_ZSTEPS
    
    #define MSG_ZSTEPS                          "Zsteps/mm"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_ESTEPS
    
    #define MSG_ESTEPS                          "Esteps/mm"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_TEMPERATURE
    
    #define MSG_TEMPERATURE                     "Temperature"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_MOTION
    
    #define MSG_MOTION                          "Motion"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_VOLUMETRIC
    
    #define MSG_VOLUMETRIC                      "Filament"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_VOLUMETRIC_ENABLED
    
    #define MSG_VOLUMETRIC_ENABLED              "E in mm3"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_FILAMENT_SIZE_EXTRUDER_0
    
    #define MSG_FILAMENT_SIZE_EXTRUDER_0        "Fil. Dia. 1"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_FILAMENT_SIZE_EXTRUDER_1
    
    #define MSG_FILAMENT_SIZE_EXTRUDER_1        "Fil. Dia. 2"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_FILAMENT_SIZE_EXTRUDER_2
    
    #define MSG_FILAMENT_SIZE_EXTRUDER_2        "Fil. Dia. 3"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_FILAMENT_SIZE_EXTRUDER_3
    
    MagoKimbra's avatar
    MagoKimbra committed
    #define MSG_FILAMENT_SIZE_EXTRUDER_3        "Fil. Dia. 4"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_CONTRAST
    
    #define MSG_CONTRAST                        "LCD contrast"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_STORE_EPROM
    
    #define MSG_STORE_EPROM                     "Store memory"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_LOAD_EPROM
    
    #define MSG_LOAD_EPROM                      "Load memory"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_RESTORE_FAILSAFE
    
    #define MSG_RESTORE_FAILSAFE                "Restore failsafe"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_REFRESH
    
    #define MSG_REFRESH                         "Refresh"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_WATCH
    
    #define MSG_WATCH                           "Info screen"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_PREPARE
    
    #define MSG_PREPARE                         "Prepare"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_TUNE
    
    #define MSG_TUNE                            "Tune"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_PAUSE_PRINT
    
    #define MSG_PAUSE_PRINT                     "Pause print"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_RESUME_PRINT
    
    #define MSG_RESUME_PRINT                    "Resume print"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_STOP_PRINT
    
    #define MSG_STOP_PRINT                      "Stop print"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_CARD_MENU
    
    #define MSG_CARD_MENU                       "Print from SD"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_NO_CARD
    
    #define MSG_NO_CARD                         "No SD card"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_DWELL
    
    #define MSG_DWELL                           "Sleep..."
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_USERWAIT
    
    #define MSG_USERWAIT                        "Wait for user..."
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_RESUMING
    
    #define MSG_RESUMING                        "Resuming print"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_PRINT_ABORTED
    
    #define MSG_PRINT_ABORTED                   "Print aborted"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_NO_MOVE
    
    #define MSG_NO_MOVE                         "No move."
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_KILLED
    
    #define MSG_KILLED                          "KILLED. "
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_STOPPED
    
    #define MSG_STOPPED                         "STOPPED. "
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_CONTROL_RETRACT
    
    #define MSG_CONTROL_RETRACT                 "Retract mm"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_CONTROL_RETRACT_SWAP
    
    #define MSG_CONTROL_RETRACT_SWAP            "Swap Re.mm"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_CONTROL_RETRACTF
    
    #define MSG_CONTROL_RETRACTF                "Retract  V"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_CONTROL_RETRACT_ZLIFT
    
    #define MSG_CONTROL_RETRACT_ZLIFT           "Hop mm"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_CONTROL_RETRACT_RECOVER
    
    #define MSG_CONTROL_RETRACT_RECOVER         "UnRet +mm"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_CONTROL_RETRACT_RECOVER_SWAP
    
    #define MSG_CONTROL_RETRACT_RECOVER_SWAP    "S UnRet+mm"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_CONTROL_RETRACT_RECOVERF
    
    #define MSG_CONTROL_RETRACT_RECOVERF        "UnRet  V"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_AUTORETRACT
    
    #define MSG_AUTORETRACT                     "AutoRetr."
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_FILAMENTCHANGE
    
    #define MSG_FILAMENTCHANGE                  "Change filament"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_INIT_SDCARD
    
    #define MSG_INIT_SDCARD                     "Init. SD card"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_CNG_SDCARD
    
    #define MSG_CNG_SDCARD                      "Change SD card"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_ZPROBE_OUT
    
    #define MSG_ZPROBE_OUT                      "Z probe out. bed"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_POSITION_UNKNOWN
    
    #define MSG_POSITION_UNKNOWN                "Home X/Y before Z"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_ZPROBE_ZOFFSET
    
    #define MSG_ZPROBE_ZOFFSET                  "Z Offset"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_BABYSTEP_X
    
    #define MSG_BABYSTEP_X                      "Babystep X"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_BABYSTEP_Y
    
    #define MSG_BABYSTEP_Y                      "Babystep Y"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_BABYSTEP_Z
    
    #define MSG_BABYSTEP_Z                      "Babystep Z"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    #ifndef MSG_ENDSTOP_ABORT
    
    #define MSG_ENDSTOP_ABORT                   "Endstop abort"
    
    AnHardt's avatar
    AnHardt committed
    #endif
    
    #ifndef MSG_HEATING_FAILED_LCD
    #define MSG_HEATING_FAILED_LCD              "Heating failed"
    #endif
    #ifndef MSG_ERR_REDUNDANT_TEMP
    #define MSG_ERR_REDUNDANT_TEMP              "Err: REDUNDANT TEMP ERROR"
    #endif
    #ifndef MSG_THERMAL_RUNAWAY
    #define MSG_THERMAL_RUNAWAY                 "THERMAL RUNAWAY"
    #endif
    #ifndef MSG_ERR_MAXTEMP
    #define MSG_ERR_MAXTEMP                     "Err: MAXTEMP"
    #endif
    #ifndef MSG_ERR_MINTEMP
    #define MSG_ERR_MINTEMP                     "Err: MINTEMP"
    #endif
    #ifndef MSG_ERR_MAXTEMP_BED
    #define MSG_ERR_MAXTEMP_BED                 "Err: MAXTEMP BED"
    #endif
    
    AnHardt's avatar
    AnHardt committed
    #ifndef MSG_ERR_MINTEMP_BED
    #define MSG_ERR_MINTEMP_BED                 "Err: MINTEMP BED"
    #endif
    
    #ifndef MSG_END_HOUR
    #define MSG_END_HOUR                        "hours"
    #endif
    #ifndef MSG_END_MINUTE
    #define MSG_END_MINUTE                      "minutes"
    #endif
    
    #ifndef MSG_HEATING
    #define MSG_HEATING                         "Heating..."
    #endif
    
    #ifndef MSG_HEATING_COMPLETE
    
    #define MSG_HEATING_COMPLETE                "Heating done."
    #endif
    
    #ifndef MSG_BED_HEATING
    
    #define MSG_BED_HEATING                     "Bed Heating."
    #endif
    
    #ifndef MSG_BED_DONE
    
    #define MSG_BED_DONE                        "Bed done."
    #endif
    
    #if ENABLED(DELTA_CALIBRATION_MENU)
    
      #ifndef MSG_DELTA_CALIBRATE
      #define MSG_DELTA_CALIBRATE             "Delta Calibration"
      #endif
      #ifndef MSG_DELTA_CALIBRATE_X
      #define MSG_DELTA_CALIBRATE_X           "Calibrate X"
      #endif
      #ifndef MSG_DELTA_CALIBRATE_Y
      #define MSG_DELTA_CALIBRATE_Y           "Calibrate Y"
      #endif
      #ifndef MSG_DELTA_CALIBRATE_Z
      #define MSG_DELTA_CALIBRATE_Z           "Calibrate Z"
      #endif
      #ifndef MSG_DELTA_CALIBRATE_CENTER
      #define MSG_DELTA_CALIBRATE_CENTER      "Calibrate Center"
      #endif
    
    #endif // LANGUAGE_EN_H