2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2016-03-24 18:01:20 +00: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/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-10-31 01:40:36 +00:00
|
|
|
#pragma once
|
2013-07-23 19:49:37 +00:00
|
|
|
|
2017-09-06 11:28:32 +00:00
|
|
|
#include "../inc/MarlinConfig.h"
|
2015-01-30 09:31:58 +00:00
|
|
|
|
2016-12-12 15:18:53 +00:00
|
|
|
#define _UxGT(a) a
|
|
|
|
|
2016-04-27 06:32:15 +00:00
|
|
|
// Fallback if no language is set. DON'T CHANGE
|
|
|
|
#ifndef LCD_LANGUAGE
|
|
|
|
#define LCD_LANGUAGE en
|
|
|
|
#endif
|
2014-12-29 17:43:19 +00:00
|
|
|
|
2016-04-27 05:25:50 +00:00
|
|
|
// For character-based LCD controllers (DISPLAY_CHARSET_HD44780)
|
|
|
|
#define JAPANESE 1
|
|
|
|
#define WESTERN 2
|
|
|
|
#define CYRILLIC 3
|
2014-12-29 17:43:19 +00:00
|
|
|
|
2014-12-18 17:31:19 +00:00
|
|
|
// NOTE: IF YOU CHANGE LANGUAGE FILES OR MERGE A FILE WITH CHANGES
|
2013-07-23 19:49:37 +00:00
|
|
|
//
|
2014-12-29 17:43:19 +00:00
|
|
|
// ==> ALWAYS TRY TO COMPILE MARLIN WITH/WITHOUT "ULTIPANEL" / "ULTRALCD" / "SDSUPPORT" #define IN "Configuration.h"
|
|
|
|
// ==> ALSO TRY ALL AVAILABLE LANGUAGE OPTIONS
|
2017-09-06 11:28:32 +00:00
|
|
|
// See also http://marlinfw.org/docs/development/lcd_language.html
|
2013-07-23 19:49:37 +00:00
|
|
|
|
|
|
|
// Languages
|
2016-06-16 05:02:12 +00:00
|
|
|
// an Aragonese
|
|
|
|
// bg Bulgarian
|
|
|
|
// ca Catalan
|
|
|
|
// cz Czech
|
2016-03-20 23:14:24 +00:00
|
|
|
// de German
|
2016-07-11 01:59:04 +00:00
|
|
|
// el Greek
|
|
|
|
// el-gr Greek (Greece)
|
2016-06-16 05:02:12 +00:00
|
|
|
// en English
|
2016-03-20 23:14:24 +00:00
|
|
|
// es Spanish
|
2016-06-16 05:02:12 +00:00
|
|
|
// eu Basque-Euskera
|
2016-03-20 23:14:24 +00:00
|
|
|
// fi Finnish
|
2016-06-16 05:02:12 +00:00
|
|
|
// fr French
|
2016-03-20 23:14:24 +00:00
|
|
|
// gl Galician
|
2016-06-16 05:02:12 +00:00
|
|
|
// hr Croatian
|
|
|
|
// it Italian
|
2018-04-13 01:14:01 +00:00
|
|
|
// jp-kana Japanese
|
2018-10-03 06:53:34 +00:00
|
|
|
// ko_KR Korean (South Korea)
|
2016-06-16 05:02:12 +00:00
|
|
|
// nl Dutch
|
|
|
|
// pl Polish
|
|
|
|
// pt Portuguese
|
|
|
|
// pt-br Portuguese (Brazilian)
|
|
|
|
// ru Russian
|
2018-04-13 01:14:01 +00:00
|
|
|
// sk Slovak
|
2016-11-06 14:59:02 +00:00
|
|
|
// tr Turkish
|
2016-11-29 12:49:45 +00:00
|
|
|
// uk Ukrainian
|
2017-08-20 08:34:02 +00:00
|
|
|
// zh_CN Chinese (Simplified)
|
2018-04-13 01:14:01 +00:00
|
|
|
// zh_TW Chinese (Traditional)
|
2013-07-23 19:49:37 +00:00
|
|
|
|
2016-04-22 15:07:26 +00:00
|
|
|
#ifdef DEFAULT_SOURCE_CODE_URL
|
|
|
|
#undef SOURCE_CODE_URL
|
|
|
|
#define SOURCE_CODE_URL DEFAULT_SOURCE_CODE_URL
|
2016-04-03 01:41:01 +00:00
|
|
|
#endif
|
|
|
|
|
2015-02-06 16:17:17 +00:00
|
|
|
#ifdef CUSTOM_MACHINE_NAME
|
2016-04-22 15:07:26 +00:00
|
|
|
#undef MACHINE_NAME
|
2015-02-06 16:17:17 +00:00
|
|
|
#define MACHINE_NAME CUSTOM_MACHINE_NAME
|
2016-02-22 22:05:23 +00:00
|
|
|
#else
|
2016-04-22 15:07:26 +00:00
|
|
|
#ifdef DEFAULT_MACHINE_NAME
|
|
|
|
#undef MACHINE_NAME
|
|
|
|
#define MACHINE_NAME DEFAULT_MACHINE_NAME
|
|
|
|
#endif
|
2015-02-01 05:42:53 +00:00
|
|
|
#endif
|
2014-02-11 22:38:01 +00:00
|
|
|
|
2016-03-11 13:34:48 +00:00
|
|
|
#ifndef MACHINE_UUID
|
2016-04-22 15:07:26 +00:00
|
|
|
#define MACHINE_UUID DEFAULT_MACHINE_UUID
|
2013-11-10 15:36:37 +00:00
|
|
|
#endif
|
|
|
|
|
2016-04-22 15:07:26 +00:00
|
|
|
#ifdef DEFAULT_WEBSITE_URL
|
|
|
|
#undef WEBSITE_URL
|
|
|
|
#define WEBSITE_URL DEFAULT_WEBSITE_URL
|
|
|
|
#endif
|
2014-02-11 22:38:01 +00:00
|
|
|
|
2018-11-14 19:13:51 +00:00
|
|
|
#if HAS_GRAPHICAL_LCD
|
|
|
|
//
|
|
|
|
// Custom characters from Marlin_symbols.fon which was merged into ISO10646-0-3.bdf
|
|
|
|
// \x00 intentionally skipped to avoid problems in strings
|
|
|
|
//
|
|
|
|
#define LCD_STR_REFRESH "\x01"
|
|
|
|
#define LCD_STR_FOLDER "\x02"
|
|
|
|
#define LCD_STR_ARROW_RIGHT "\x03"
|
|
|
|
#define LCD_STR_UPLEVEL "\x04"
|
|
|
|
#define LCD_STR_CLOCK "\x05"
|
|
|
|
#define LCD_STR_FEEDRATE "\x06"
|
|
|
|
#define LCD_STR_BEDTEMP "\x07"
|
|
|
|
#define LCD_STR_THERMOMETER "\x08"
|
|
|
|
#define LCD_STR_DEGREE "\x09"
|
|
|
|
|
|
|
|
#define LCD_STR_SPECIAL_MAX '\x09'
|
|
|
|
// Maximum here is 0x1F because 0x20 is ' ' (space) and the normal charsets begin.
|
|
|
|
// Better stay below 0x10 because DISPLAY_CHARSET_HD44780_WESTERN begins here.
|
|
|
|
|
|
|
|
// Symbol characters
|
|
|
|
#define LCD_STR_FILAM_DIA "\xF8"
|
|
|
|
#define LCD_STR_FILAM_MUL "\xA4"
|
|
|
|
|
|
|
|
#elif HAS_CHARACTER_LCD
|
|
|
|
|
|
|
|
// Custom characters defined in the first 8 characters of the LCD
|
|
|
|
#define LCD_STR_BEDTEMP "\x00" // Print only as a char. This will have 'unexpected' results when used in a string!
|
|
|
|
#define LCD_STR_DEGREE "\x01"
|
|
|
|
#define LCD_STR_THERMOMETER "\x02" // Still used with string concatenation
|
|
|
|
#define LCD_STR_UPLEVEL "\x03"
|
|
|
|
#define LCD_STR_REFRESH "\x04"
|
|
|
|
#define LCD_STR_FOLDER "\x05"
|
|
|
|
#define LCD_STR_FEEDRATE "\x06"
|
|
|
|
#define LCD_STR_CLOCK "\x07"
|
|
|
|
#define LCD_STR_ARROW_RIGHT ">" /* from the default character set */
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2014-02-12 13:21:26 +00:00
|
|
|
// Common LCD messages
|
2014-12-18 17:31:19 +00:00
|
|
|
|
|
|
|
/* nothing here yet */
|
2014-02-12 13:21:26 +00:00
|
|
|
|
|
|
|
// Common serial messages
|
|
|
|
#define MSG_MARLIN "Marlin"
|
|
|
|
|
2014-08-29 16:02:59 +00:00
|
|
|
// Serial Console Messages (do not translate those!)
|
|
|
|
|
2017-03-20 02:31:06 +00:00
|
|
|
#define MSG_ENQUEUEING "enqueueing \""
|
2014-12-18 18:33:00 +00:00
|
|
|
#define MSG_POWERUP "PowerUp"
|
|
|
|
#define MSG_EXTERNAL_RESET " External Reset"
|
|
|
|
#define MSG_BROWNOUT_RESET " Brown out Reset"
|
|
|
|
#define MSG_WATCHDOG_RESET " Watchdog Reset"
|
|
|
|
#define MSG_SOFTWARE_RESET " Software Reset"
|
|
|
|
#define MSG_AUTHOR " | Author: "
|
|
|
|
#define MSG_CONFIGURATION_VER " Last Updated: "
|
|
|
|
#define MSG_FREE_MEMORY " Free Memory: "
|
|
|
|
#define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
|
|
|
|
#define MSG_OK "ok"
|
2015-04-16 11:07:20 +00:00
|
|
|
#define MSG_WAIT "wait"
|
2016-07-14 01:18:59 +00:00
|
|
|
#define MSG_STATS "Stats: "
|
2014-12-18 18:33:00 +00:00
|
|
|
#define MSG_FILE_SAVED "Done saving file."
|
|
|
|
#define MSG_ERR_LINE_NO "Line Number is not Last Line Number+1, Last Line: "
|
|
|
|
#define MSG_ERR_CHECKSUM_MISMATCH "checksum mismatch, Last Line: "
|
|
|
|
#define MSG_ERR_NO_CHECKSUM "No Checksum with line number, Last Line: "
|
|
|
|
#define MSG_FILE_PRINTED "Done printing file"
|
|
|
|
#define MSG_BEGIN_FILE_LIST "Begin file list"
|
|
|
|
#define MSG_END_FILE_LIST "End file list"
|
2015-05-02 04:38:32 +00:00
|
|
|
#define MSG_INVALID_EXTRUDER "Invalid extruder"
|
|
|
|
#define MSG_INVALID_SOLENOID "Invalid solenoid"
|
2014-12-18 18:33:00 +00:00
|
|
|
#define MSG_ERR_NO_THERMISTORS "No thermistors - no temperature"
|
2016-11-09 00:05:59 +00:00
|
|
|
#define MSG_M115_REPORT "FIRMWARE_NAME:Marlin " DETAILED_BUILD_VERSION " SOURCE_CODE_URL:" SOURCE_CODE_URL " PROTOCOL_VERSION:" PROTOCOL_VERSION " MACHINE_TYPE:" MACHINE_NAME " EXTRUDER_COUNT:" STRINGIFY(EXTRUDERS) " UUID:" MACHINE_UUID
|
2017-02-12 06:10:03 +00:00
|
|
|
#define MSG_COUNT_X " Count X:"
|
|
|
|
#define MSG_COUNT_A " Count A:"
|
2018-10-19 02:20:56 +00:00
|
|
|
#define MSG_WATCHDOG_FIRED "Watchdog timeout. Reset required."
|
2014-12-18 18:33:00 +00:00
|
|
|
#define MSG_ERR_KILLED "Printer halted. kill() called!"
|
|
|
|
#define MSG_ERR_STOPPED "Printer stopped due to errors. Fix the error and use M999 to restart. (Temperature is reset. Set it after restarting)"
|
2016-03-07 11:48:14 +00:00
|
|
|
#define MSG_BUSY_PROCESSING "busy: processing"
|
|
|
|
#define MSG_BUSY_PAUSED_FOR_USER "busy: paused for user"
|
|
|
|
#define MSG_BUSY_PAUSED_FOR_INPUT "busy: paused for input"
|
2017-11-24 06:28:06 +00:00
|
|
|
#define MSG_Z_MOVE_COMP "Z_move_comp"
|
2014-12-18 18:33:00 +00:00
|
|
|
#define MSG_RESEND "Resend: "
|
|
|
|
#define MSG_UNKNOWN_COMMAND "Unknown command: \""
|
|
|
|
#define MSG_ACTIVE_EXTRUDER "Active Extruder: "
|
2018-09-17 08:27:13 +00:00
|
|
|
#define MSG_X_MIN "x_min"
|
|
|
|
#define MSG_X_MAX "x_max"
|
|
|
|
#define MSG_X2_MIN "x2_min"
|
|
|
|
#define MSG_X2_MAX "x2_max"
|
|
|
|
#define MSG_Y_MIN "y_min"
|
|
|
|
#define MSG_Y_MAX "y_max"
|
|
|
|
#define MSG_Y2_MIN "y2_min"
|
|
|
|
#define MSG_Y2_MAX "y2_max"
|
|
|
|
#define MSG_Z_MIN "z_min"
|
|
|
|
#define MSG_Z_MAX "z_max"
|
|
|
|
#define MSG_Z2_MIN "z2_min"
|
|
|
|
#define MSG_Z2_MAX "z2_max"
|
|
|
|
#define MSG_Z3_MIN "z3_min"
|
|
|
|
#define MSG_Z3_MAX "z3_max"
|
|
|
|
#define MSG_Z_PROBE "z_probe"
|
|
|
|
#define MSG_FILAMENT_RUNOUT_SENSOR "filament"
|
2017-11-25 20:00:39 +00:00
|
|
|
#define MSG_PROBE_Z_OFFSET "Probe Z Offset"
|
2017-12-01 22:42:23 +00:00
|
|
|
#define MSG_SKEW_MIN "min_skew_factor: "
|
|
|
|
#define MSG_SKEW_MAX "max_skew_factor: "
|
2015-04-27 01:44:01 +00:00
|
|
|
#define MSG_ERR_MATERIAL_INDEX "M145 S<index> out of range (0-1)"
|
2017-05-10 23:54:10 +00:00
|
|
|
#define MSG_ERR_M421_PARAMETERS "M421 incorrect parameter usage"
|
2017-06-22 13:57:33 +00:00
|
|
|
#define MSG_ERR_BAD_PLANE_MODE "G5 requires XY plane mode"
|
2016-12-16 03:18:59 +00:00
|
|
|
#define MSG_ERR_MESH_XY "Mesh point cannot be resolved"
|
2016-09-19 01:23:01 +00:00
|
|
|
#define MSG_ERR_ARC_ARGS "G2/G3 bad parameters"
|
2016-09-22 09:32:31 +00:00
|
|
|
#define MSG_ERR_PROTECTED_PIN "Protected Pin"
|
2016-12-10 08:41:47 +00:00
|
|
|
#define MSG_ERR_M420_FAILED "Failed to enable Bed Leveling"
|
2015-04-30 02:05:48 +00:00
|
|
|
#define MSG_ERR_M428_TOO_FAR "Too far from reference point"
|
2016-04-19 02:01:49 +00:00
|
|
|
#define MSG_ERR_M303_DISABLED "PIDTEMP disabled"
|
2014-12-18 18:33:00 +00:00
|
|
|
#define MSG_M119_REPORT "Reporting endstop status"
|
2018-11-12 23:04:00 +00:00
|
|
|
#define MSG_ON "ON"
|
|
|
|
#define MSG_OFF "OFF"
|
2014-12-18 18:33:00 +00:00
|
|
|
#define MSG_ENDSTOP_HIT "TRIGGERED"
|
|
|
|
#define MSG_ENDSTOP_OPEN "open"
|
|
|
|
#define MSG_HOTEND_OFFSET "Hotend offsets:"
|
2016-07-20 17:30:10 +00:00
|
|
|
#define MSG_DUPLICATION_MODE "Duplication mode: "
|
2016-09-12 22:49:35 +00:00
|
|
|
#define MSG_SOFT_ENDSTOPS "Soft endstops: "
|
|
|
|
#define MSG_SOFT_MIN " Min: "
|
|
|
|
#define MSG_SOFT_MAX " Max: "
|
2014-12-18 18:33:00 +00:00
|
|
|
|
2016-06-27 23:29:35 +00:00
|
|
|
#define MSG_SD_CANT_OPEN_SUBDIR "Cannot open subdir "
|
2014-12-18 18:33:00 +00:00
|
|
|
#define MSG_SD_INIT_FAIL "SD init fail"
|
|
|
|
#define MSG_SD_VOL_INIT_FAIL "volume.init failed"
|
|
|
|
#define MSG_SD_OPENROOT_FAIL "openRoot failed"
|
|
|
|
#define MSG_SD_CARD_OK "SD card ok"
|
|
|
|
#define MSG_SD_WORKDIR_FAIL "workDir open failed"
|
|
|
|
#define MSG_SD_OPEN_FILE_FAIL "open failed, File: "
|
|
|
|
#define MSG_SD_FILE_OPENED "File opened: "
|
|
|
|
#define MSG_SD_SIZE " Size: "
|
|
|
|
#define MSG_SD_FILE_SELECTED "File selected"
|
|
|
|
#define MSG_SD_WRITE_TO_FILE "Writing to file: "
|
|
|
|
#define MSG_SD_PRINTING_BYTE "SD printing byte "
|
|
|
|
#define MSG_SD_NOT_PRINTING "Not SD printing"
|
|
|
|
#define MSG_SD_ERR_WRITE_TO_FILE "error writing to file"
|
2016-06-20 00:14:56 +00:00
|
|
|
#define MSG_SD_ERR_READ "SD read error"
|
2014-12-22 02:57:41 +00:00
|
|
|
#define MSG_SD_CANT_ENTER_SUBDIR "Cannot enter subdir: "
|
2014-12-18 18:33:00 +00:00
|
|
|
|
|
|
|
#define MSG_STEPPER_TOO_HIGH "Steprate too high: "
|
|
|
|
#define MSG_ENDSTOPS_HIT "endstops hit: "
|
|
|
|
#define MSG_ERR_COLD_EXTRUDE_STOP " cold extrusion prevented"
|
|
|
|
#define MSG_ERR_LONG_EXTRUDE_STOP " too long extrusion prevented"
|
2018-10-24 20:00:07 +00:00
|
|
|
#define MSG_ERR_HOTEND_TOO_COLD "Hotend too cold"
|
2018-01-04 11:06:34 +00:00
|
|
|
|
|
|
|
#define MSG_FILAMENT_CHANGE_HEAT "Press button (or M108) to heat nozzle"
|
|
|
|
#define MSG_FILAMENT_CHANGE_INSERT "Insert filament and press button (or M108)"
|
2018-11-06 10:13:48 +00:00
|
|
|
#define MSG_FILAMENT_CHANGE_WAIT "Press button (or M108) to resume"
|
2018-02-04 06:26:05 +00:00
|
|
|
#define MSG_FILAMENT_CHANGE_HEAT_LCD "Press button to heat nozzle"
|
2018-01-04 11:06:34 +00:00
|
|
|
#define MSG_FILAMENT_CHANGE_INSERT_LCD "Insert filament and press button"
|
2018-11-06 10:13:48 +00:00
|
|
|
#define MSG_FILAMENT_CHANGE_WAIT_LCD "Press button to resume"
|
2018-02-04 06:26:05 +00:00
|
|
|
#define MSG_FILAMENT_CHANGE_HEAT_M108 "Send M108 to heat nozzle"
|
2018-01-04 11:06:34 +00:00
|
|
|
#define MSG_FILAMENT_CHANGE_INSERT_M108 "Insert filament and send M108"
|
2018-11-06 10:13:48 +00:00
|
|
|
#define MSG_FILAMENT_CHANGE_WAIT_M108 "Send M108 to resume"
|
2018-01-04 11:06:34 +00:00
|
|
|
|
2015-01-29 05:19:51 +00:00
|
|
|
#define MSG_ERR_EEPROM_WRITE "Error writing to EEPROM!"
|
|
|
|
|
2017-03-14 17:24:46 +00:00
|
|
|
#define MSG_STOP_BLTOUCH "STOP called because of BLTouch error - restart with M999"
|
|
|
|
#define MSG_STOP_UNHOMED "STOP called because of unhomed error - restart with M999"
|
|
|
|
#define MSG_KILL_INACTIVE_TIME "KILL caused by too much inactive time - current command: "
|
|
|
|
#define MSG_KILL_BUTTON "KILL caused by KILL button/pin"
|
|
|
|
|
2015-02-25 07:03:08 +00:00
|
|
|
// temperature.cpp strings
|
|
|
|
#define MSG_PID_AUTOTUNE "PID Autotune"
|
|
|
|
#define MSG_PID_AUTOTUNE_START MSG_PID_AUTOTUNE " start"
|
|
|
|
#define MSG_PID_AUTOTUNE_FAILED MSG_PID_AUTOTUNE " failed!"
|
|
|
|
#define MSG_PID_BAD_EXTRUDER_NUM MSG_PID_AUTOTUNE_FAILED " Bad extruder number"
|
|
|
|
#define MSG_PID_TEMP_TOO_HIGH MSG_PID_AUTOTUNE_FAILED " Temperature too high"
|
|
|
|
#define MSG_PID_TIMEOUT MSG_PID_AUTOTUNE_FAILED " timeout"
|
|
|
|
#define MSG_BIAS " bias: "
|
|
|
|
#define MSG_D " d: "
|
2015-03-05 23:25:44 +00:00
|
|
|
#define MSG_T_MIN " min: "
|
|
|
|
#define MSG_T_MAX " max: "
|
2015-02-25 07:03:08 +00:00
|
|
|
#define MSG_KU " Ku: "
|
|
|
|
#define MSG_TU " Tu: "
|
|
|
|
#define MSG_CLASSIC_PID " Classic PID "
|
|
|
|
#define MSG_KP " Kp: "
|
|
|
|
#define MSG_KI " Ki: "
|
|
|
|
#define MSG_KD " Kd: "
|
|
|
|
#define MSG_AT " @:"
|
2015-04-17 09:15:09 +00:00
|
|
|
#define MSG_PID_AUTOTUNE_FINISHED MSG_PID_AUTOTUNE " finished! Put the last Kp, Ki and Kd constants from below into Configuration.h"
|
2015-02-25 07:03:08 +00:00
|
|
|
#define MSG_PID_DEBUG " PID_DEBUG "
|
|
|
|
#define MSG_PID_DEBUG_INPUT ": Input "
|
|
|
|
#define MSG_PID_DEBUG_OUTPUT " Output "
|
|
|
|
#define MSG_PID_DEBUG_PTERM " pTerm "
|
|
|
|
#define MSG_PID_DEBUG_ITERM " iTerm "
|
|
|
|
#define MSG_PID_DEBUG_DTERM " dTerm "
|
2015-08-31 02:04:30 +00:00
|
|
|
#define MSG_PID_DEBUG_CTERM " cTerm "
|
2015-02-25 07:03:08 +00:00
|
|
|
#define MSG_INVALID_EXTRUDER_NUM " - Invalid extruder number !"
|
2015-05-18 18:26:25 +00:00
|
|
|
|
|
|
|
#define MSG_HEATER_BED "bed"
|
|
|
|
#define MSG_STOPPED_HEATER ", system stopped! Heater_ID: "
|
|
|
|
#define MSG_REDUNDANCY "Heater switched off. Temperature difference between temp sensors is too high !"
|
|
|
|
#define MSG_T_HEATING_FAILED "Heating failed"
|
|
|
|
#define MSG_T_THERMAL_RUNAWAY "Thermal Runaway"
|
|
|
|
#define MSG_T_MAXTEMP "MAXTEMP triggered"
|
|
|
|
#define MSG_T_MINTEMP "MINTEMP triggered"
|
|
|
|
|
2015-06-03 06:18:27 +00:00
|
|
|
// Debug
|
2016-04-04 22:36:07 +00:00
|
|
|
#define MSG_DEBUG_PREFIX "DEBUG:"
|
2016-03-30 02:18:45 +00:00
|
|
|
#define MSG_DEBUG_OFF "off"
|
|
|
|
#define MSG_DEBUG_ECHO "ECHO"
|
|
|
|
#define MSG_DEBUG_INFO "INFO"
|
|
|
|
#define MSG_DEBUG_ERRORS "ERRORS"
|
|
|
|
#define MSG_DEBUG_DRYRUN "DRYRUN"
|
|
|
|
#define MSG_DEBUG_COMMUNICATION "COMMUNICATION"
|
|
|
|
#define MSG_DEBUG_LEVELING "LEVELING"
|
2015-02-25 07:03:08 +00:00
|
|
|
|
2014-12-18 18:33:00 +00:00
|
|
|
// LCD Menu Messages
|
2014-02-12 13:21:26 +00:00
|
|
|
|
2018-10-31 01:40:36 +00:00
|
|
|
#define LANGUAGE_DATA_INCL_(M) STRINGIFY_(fontdata/langdata_##M.h)
|
2018-04-13 01:14:01 +00:00
|
|
|
#define LANGUAGE_DATA_INCL(M) LANGUAGE_DATA_INCL_(M)
|
|
|
|
#define INCLUDE_LANGUAGE_DATA LANGUAGE_DATA_INCL(LCD_LANGUAGE)
|
|
|
|
|
2017-09-06 11:28:32 +00:00
|
|
|
#define LANGUAGE_INCL_(M) STRINGIFY_(../lcd/language/language_##M.h)
|
2016-04-27 06:32:15 +00:00
|
|
|
#define LANGUAGE_INCL(M) LANGUAGE_INCL_(M)
|
|
|
|
#define INCLUDE_LANGUAGE LANGUAGE_INCL(LCD_LANGUAGE)
|
|
|
|
|
2016-08-19 02:00:44 +00:00
|
|
|
// Never translate these strings
|
|
|
|
#define MSG_X "X"
|
|
|
|
#define MSG_Y "Y"
|
|
|
|
#define MSG_Z "Z"
|
|
|
|
#define MSG_E "E"
|
2018-02-04 06:26:05 +00:00
|
|
|
#if IS_KINEMATIC
|
|
|
|
#define MSG_A "A"
|
|
|
|
#define MSG_B "B"
|
|
|
|
#define MSG_C "C"
|
|
|
|
#else
|
|
|
|
#define MSG_A "X"
|
|
|
|
#define MSG_B "Y"
|
|
|
|
#define MSG_C "Z"
|
|
|
|
#endif
|
2018-10-03 07:48:49 +00:00
|
|
|
#define MSG_X2 "X2"
|
|
|
|
#define MSG_Y2 "Y2"
|
|
|
|
#define MSG_Z2 "Z2"
|
|
|
|
#define MSG_Z3 "Z3"
|
2016-08-19 02:00:44 +00:00
|
|
|
#define MSG_H1 "1"
|
|
|
|
#define MSG_H2 "2"
|
|
|
|
#define MSG_H3 "3"
|
|
|
|
#define MSG_H4 "4"
|
2017-04-06 21:46:30 +00:00
|
|
|
#define MSG_H5 "5"
|
2018-09-13 06:35:55 +00:00
|
|
|
#define MSG_H6 "6"
|
2018-11-03 06:15:02 +00:00
|
|
|
#define MSG_LCD_N0 " 1"
|
|
|
|
#define MSG_LCD_N1 " 2"
|
|
|
|
#define MSG_LCD_N2 " 3"
|
|
|
|
#define MSG_LCD_N3 " 4"
|
|
|
|
#define MSG_LCD_N4 " 5"
|
|
|
|
#define MSG_LCD_N5 " 6"
|
2018-10-03 07:48:49 +00:00
|
|
|
#define MSG_E0 "E0"
|
2016-12-08 10:57:41 +00:00
|
|
|
#define MSG_E1 "E1"
|
|
|
|
#define MSG_E2 "E2"
|
|
|
|
#define MSG_E3 "E3"
|
|
|
|
#define MSG_E4 "E4"
|
2017-04-06 21:46:30 +00:00
|
|
|
#define MSG_E5 "E5"
|
2018-09-13 06:35:55 +00:00
|
|
|
#define MSG_E6 "E6"
|
2016-08-19 02:00:44 +00:00
|
|
|
#define MSG_MOVE_E1 "1"
|
|
|
|
#define MSG_MOVE_E2 "2"
|
|
|
|
#define MSG_MOVE_E3 "3"
|
|
|
|
#define MSG_MOVE_E4 "4"
|
2017-04-06 21:46:30 +00:00
|
|
|
#define MSG_MOVE_E5 "5"
|
2018-09-13 06:35:55 +00:00
|
|
|
#define MSG_MOVE_E6 "6"
|
2016-08-19 02:00:44 +00:00
|
|
|
#define MSG_DIAM_E1 " 1"
|
|
|
|
#define MSG_DIAM_E2 " 2"
|
|
|
|
#define MSG_DIAM_E3 " 3"
|
|
|
|
#define MSG_DIAM_E4 " 4"
|
2017-04-06 21:46:30 +00:00
|
|
|
#define MSG_DIAM_E5 " 5"
|
2018-09-13 06:35:55 +00:00
|
|
|
#define MSG_DIAM_E6 " 6"
|
2016-08-19 02:00:44 +00:00
|
|
|
|
2016-04-27 06:32:15 +00:00
|
|
|
#include INCLUDE_LANGUAGE
|
2016-08-16 02:00:45 +00:00
|
|
|
|
2018-04-13 01:14:01 +00:00
|
|
|
#if DISABLED(DISPLAY_CHARSET_ISO10646_1) \
|
2016-11-26 11:54:46 +00:00
|
|
|
&& DISABLED(DISPLAY_CHARSET_ISO10646_5) \
|
|
|
|
&& DISABLED(DISPLAY_CHARSET_ISO10646_KANA) \
|
|
|
|
&& DISABLED(DISPLAY_CHARSET_ISO10646_GREEK) \
|
|
|
|
&& DISABLED(DISPLAY_CHARSET_ISO10646_CN) \
|
2017-04-21 14:05:29 +00:00
|
|
|
&& DISABLED(DISPLAY_CHARSET_ISO10646_TR) \
|
2017-07-01 12:50:26 +00:00
|
|
|
&& DISABLED(DISPLAY_CHARSET_ISO10646_PL) \
|
2017-08-20 08:34:02 +00:00
|
|
|
&& DISABLED(DISPLAY_CHARSET_ISO10646_CZ) \
|
|
|
|
&& DISABLED(DISPLAY_CHARSET_ISO10646_SK)
|
2016-08-16 02:00:45 +00:00
|
|
|
#define DISPLAY_CHARSET_ISO10646_1 // use the better font on full graphic displays.
|
|
|
|
#endif
|
|
|
|
|
2017-09-06 11:28:32 +00:00
|
|
|
#include "../lcd/language/language_en.h"
|
2014-03-23 09:30:08 +00:00
|
|
|
|
2018-09-19 20:04:34 +00:00
|
|
|
#ifdef CUSTOM_USER_MENU_TITLE
|
|
|
|
#undef MSG_USER_MENU
|
|
|
|
#define MSG_USER_MENU CUSTOM_USER_MENU_TITLE
|
2018-09-19 21:40:32 +00:00
|
|
|
#endif
|