2013-07-23 21:49:37 +02:00
|
|
|
#ifndef LANGUAGE_H
|
|
|
|
#define LANGUAGE_H
|
|
|
|
|
2015-01-30 10:31:58 +01:00
|
|
|
#include "Configuration.h"
|
|
|
|
|
2014-12-29 18:43:19 +01:00
|
|
|
#define LANGUAGE_CONCAT(M) #M
|
|
|
|
#define GENERATE_LANGUAGE_INCLUDE(M) LANGUAGE_CONCAT(language_##M.h)
|
|
|
|
|
|
|
|
|
2014-12-18 18:31:19 +01:00
|
|
|
// NOTE: IF YOU CHANGE LANGUAGE FILES OR MERGE A FILE WITH CHANGES
|
2013-07-23 21:49:37 +02:00
|
|
|
//
|
2014-12-29 18:43:19 +01:00
|
|
|
// ==> ALWAYS TRY TO COMPILE MARLIN WITH/WITHOUT "ULTIPANEL" / "ULTRALCD" / "SDSUPPORT" #define IN "Configuration.h"
|
|
|
|
// ==> ALSO TRY ALL AVAILABLE LANGUAGE OPTIONS
|
2015-03-17 11:23:44 +01:00
|
|
|
// See also documentation/LCDLanguageFont.md
|
2013-07-23 21:49:37 +02:00
|
|
|
|
|
|
|
// Languages
|
2015-03-10 17:46:25 +01:00
|
|
|
// en English
|
|
|
|
// pl Polish
|
|
|
|
// fr French
|
|
|
|
// de German
|
|
|
|
// es Spanish
|
|
|
|
// ru Russian
|
2015-04-09 13:09:18 +02:00
|
|
|
// bg Bulgarian
|
2015-03-10 17:46:25 +01:00
|
|
|
// it Italian
|
|
|
|
// pt Portuguese
|
|
|
|
// pt-br Portuguese (Brazil)
|
|
|
|
// fi Finnish
|
|
|
|
// an Aragonese
|
|
|
|
// nl Dutch
|
2015-09-30 16:22:42 +02:00
|
|
|
// gl Galician
|
2015-03-10 17:46:25 +01:00
|
|
|
// ca Catalan
|
|
|
|
// eu Basque-Euskera
|
|
|
|
// kana Japanese
|
|
|
|
// kana_utf Japanese
|
2015-04-27 12:15:36 +02:00
|
|
|
// cn Chinese
|
2015-09-11 04:43:54 +02:00
|
|
|
// cz Czech
|
2013-07-23 21:49:37 +02:00
|
|
|
|
2015-05-18 23:11:26 +02:00
|
|
|
// fallback if no language is set, don't change
|
2014-12-29 18:43:19 +01:00
|
|
|
#ifndef LANGUAGE_INCLUDE
|
|
|
|
#define LANGUAGE_INCLUDE GENERATE_LANGUAGE_INCLUDE(en)
|
2013-07-23 21:49:37 +02:00
|
|
|
#endif
|
|
|
|
|
2015-08-01 16:57:59 +02:00
|
|
|
#if ENABLED(USE_AUTOMATIC_VERSIONING)
|
2015-02-06 17:30:43 +01:00
|
|
|
#include "_Version.h"
|
2015-08-01 17:08:17 +02:00
|
|
|
#else
|
|
|
|
#include "Default_Version.h"
|
2015-02-06 17:30:43 +01:00
|
|
|
#endif
|
|
|
|
|
2013-07-23 21:49:37 +02:00
|
|
|
#define PROTOCOL_VERSION "1.0"
|
|
|
|
|
2014-12-18 21:02:36 +01:00
|
|
|
#if MB(ULTIMAKER)|| MB(ULTIMAKER_OLD)|| MB(ULTIMAIN_2)
|
2016-02-22 23:05:23 +01:00
|
|
|
#define DEFAULT_MACHINE_NAME "Ultimaker"
|
|
|
|
#define DEFAULT_SOURCE_URL "https://github.com/Ultimaker/Marlin"
|
2014-12-18 21:02:36 +01:00
|
|
|
#elif MB(RUMBA)
|
2016-02-22 23:05:23 +01:00
|
|
|
#define DEFAULT_MACHINE_NAME "Rumba"
|
2014-12-18 21:02:36 +01:00
|
|
|
#elif MB(3DRAG)
|
2016-02-22 23:05:23 +01:00
|
|
|
#define DEFAULT_MACHINE_NAME "3Drag"
|
|
|
|
#define DEFAULT_SOURCE_URL "http://3dprint.elettronicain.it/"
|
2015-01-20 20:46:20 +01:00
|
|
|
#elif MB(K8200)
|
2016-02-22 23:05:23 +01:00
|
|
|
#define DEFAULT_MACHINE_NAME "K8200"
|
|
|
|
#define DEFAULT_SOURCE_URL "https://github.com/CONSULitAS/Marlin-K8200"
|
2014-12-18 21:02:36 +01:00
|
|
|
#elif MB(5DPRINT)
|
2016-02-22 23:05:23 +01:00
|
|
|
#define DEFAULT_MACHINE_NAME "Makibox"
|
2014-12-28 19:54:06 +01:00
|
|
|
#elif MB(SAV_MKI)
|
2016-02-22 23:05:23 +01:00
|
|
|
#define DEFAULT_MACHINE_NAME "SAV MkI"
|
|
|
|
#define DEFAULT_SOURCE_URL "https://github.com/fmalpartida/Marlin/tree/SAV-MkI-config"
|
|
|
|
#else
|
|
|
|
#define DEFAULT_MACHINE_NAME "3D Printer"
|
|
|
|
#define DEFAULT_SOURCE_URL "https://github.com/MarlinFirmware/Marlin"
|
2013-07-23 21:49:37 +02:00
|
|
|
#endif
|
|
|
|
|
2015-02-06 17:17:17 +01:00
|
|
|
#ifdef CUSTOM_MACHINE_NAME
|
|
|
|
#define MACHINE_NAME CUSTOM_MACHINE_NAME
|
2016-02-22 23:05:23 +01:00
|
|
|
#else
|
|
|
|
#define MACHINE_NAME DEFAULT_MACHINE_NAME
|
2015-02-06 17:17:17 +01:00
|
|
|
#endif
|
|
|
|
|
2015-05-23 03:27:26 +02:00
|
|
|
#ifndef SOURCE_CODE_URL
|
2016-02-22 23:05:23 +01:00
|
|
|
#define SOURCE_CODE_URL DEFAULT_SOURCE_URL
|
2015-02-06 17:17:17 +01:00
|
|
|
#endif
|
|
|
|
|
2015-08-01 17:03:46 +02:00
|
|
|
#ifndef DETAILED_BUILD_VERSION
|
|
|
|
#error BUILD_VERSION Information must be specified
|
2015-02-01 06:42:53 +01:00
|
|
|
#endif
|
2014-02-11 23:38:01 +01:00
|
|
|
|
2016-03-11 14:34:48 +01:00
|
|
|
#ifndef MACHINE_UUID
|
|
|
|
#define MACHINE_UUID "00000000-0000-0000-0000-000000000000"
|
2013-11-10 16:36:37 +01:00
|
|
|
#endif
|
|
|
|
|
2014-02-11 23:38:01 +01:00
|
|
|
|
2013-07-23 21:49:37 +02:00
|
|
|
#define STRINGIFY_(n) #n
|
|
|
|
#define STRINGIFY(n) STRINGIFY_(n)
|
|
|
|
|
2014-02-11 23:38:01 +01:00
|
|
|
|
2014-02-12 14:21:26 +01:00
|
|
|
// Common LCD messages
|
2014-12-18 18:31:19 +01:00
|
|
|
|
|
|
|
/* nothing here yet */
|
2014-02-12 14:21:26 +01:00
|
|
|
|
|
|
|
// Common serial messages
|
|
|
|
#define MSG_MARLIN "Marlin"
|
|
|
|
|
2014-08-29 18:02:59 +02:00
|
|
|
// Serial Console Messages (do not translate those!)
|
|
|
|
|
2015-04-14 02:17:36 +02:00
|
|
|
#define MSG_Enqueueing "enqueueing \""
|
2014-12-18 19:33:00 +01: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 13:07:20 +02:00
|
|
|
#define MSG_WAIT "wait"
|
2014-12-18 19:33:00 +01: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: "
|
2014-08-29 18:02:59 +02:00
|
|
|
#define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No Line Number with checksum, Last Line: "
|
2014-12-18 19:33:00 +01:00
|
|
|
#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 06:38:32 +02:00
|
|
|
#define MSG_INVALID_EXTRUDER "Invalid extruder"
|
|
|
|
#define MSG_INVALID_SOLENOID "Invalid solenoid"
|
2014-12-18 19:33:00 +01:00
|
|
|
#define MSG_ERR_NO_THERMISTORS "No thermistors - no temperature"
|
2016-03-11 14:34:48 +01: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 "\n"
|
2014-12-18 19:33:00 +01:00
|
|
|
#define MSG_COUNT_X " Count X: "
|
2016-02-12 03:18:22 +01:00
|
|
|
#define MSG_COUNT_A " Count A: "
|
2014-12-18 19:33:00 +01: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)"
|
|
|
|
#define MSG_RESEND "Resend: "
|
|
|
|
#define MSG_UNKNOWN_COMMAND "Unknown command: \""
|
|
|
|
#define MSG_ACTIVE_EXTRUDER "Active Extruder: "
|
|
|
|
#define MSG_X_MIN "x_min: "
|
|
|
|
#define MSG_X_MAX "x_max: "
|
|
|
|
#define MSG_Y_MIN "y_min: "
|
|
|
|
#define MSG_Y_MAX "y_max: "
|
|
|
|
#define MSG_Z_MIN "z_min: "
|
|
|
|
#define MSG_Z_MAX "z_max: "
|
2015-03-24 18:06:44 +01:00
|
|
|
#define MSG_Z2_MAX "z2_max: "
|
2015-04-02 02:22:05 +02:00
|
|
|
#define MSG_Z_PROBE "z_probe: "
|
2015-04-27 03:44:01 +02:00
|
|
|
#define MSG_ERR_MATERIAL_INDEX "M145 S<index> out of range (0-1)"
|
2015-04-28 04:48:34 +02:00
|
|
|
#define MSG_ERR_M421_REQUIRES_XYZ "M421 requires XYZ parameters"
|
2015-04-27 03:44:01 +02:00
|
|
|
#define MSG_ERR_MESH_INDEX_OOB "Mesh XY index is out of bounds"
|
2015-04-30 04:05:48 +02:00
|
|
|
#define MSG_ERR_M428_TOO_FAR "Too far from reference point"
|
2014-12-18 19:33:00 +01:00
|
|
|
#define MSG_M119_REPORT "Reporting endstop status"
|
|
|
|
#define MSG_ENDSTOP_HIT "TRIGGERED"
|
|
|
|
#define MSG_ENDSTOP_OPEN "open"
|
|
|
|
#define MSG_HOTEND_OFFSET "Hotend offsets:"
|
|
|
|
|
|
|
|
#define MSG_SD_CANT_OPEN_SUBDIR "Cannot open subdir"
|
|
|
|
#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"
|
2014-12-22 03:57:41 +01:00
|
|
|
#define MSG_SD_CANT_ENTER_SUBDIR "Cannot enter subdir: "
|
2014-12-18 19:33:00 +01: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"
|
2015-06-16 02:50:26 +02:00
|
|
|
#define MSG_TOO_COLD_FOR_M600 "M600 Hotend too cold to change filament"
|
2014-12-18 19:33:00 +01:00
|
|
|
#define MSG_BABYSTEPPING_X "Babystepping X"
|
|
|
|
#define MSG_BABYSTEPPING_Y "Babystepping Y"
|
|
|
|
#define MSG_BABYSTEPPING_Z "Babystepping Z"
|
2014-12-22 03:57:41 +01:00
|
|
|
#define MSG_SERIAL_ERROR_MENU_STRUCTURE "Error in menu structure"
|
2014-12-18 19:33:00 +01:00
|
|
|
|
2015-01-29 06:19:51 +01:00
|
|
|
#define MSG_ERR_EEPROM_WRITE "Error writing to EEPROM!"
|
|
|
|
|
2015-02-25 08:03:08 +01: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-06 00:25:44 +01:00
|
|
|
#define MSG_T_MIN " min: "
|
|
|
|
#define MSG_T_MAX " max: "
|
2015-02-25 08:03:08 +01: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: "
|
2015-06-10 08:27:56 +02:00
|
|
|
#define MSG_B "B:"
|
|
|
|
#define MSG_T "T:"
|
2015-02-25 08:03:08 +01:00
|
|
|
#define MSG_AT " @:"
|
2015-04-17 11:15:09 +02: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 08:03:08 +01: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 04:04:30 +02:00
|
|
|
#define MSG_PID_DEBUG_CTERM " cTerm "
|
2015-02-25 08:03:08 +01:00
|
|
|
#define MSG_INVALID_EXTRUDER_NUM " - Invalid extruder number !"
|
2015-05-18 20:26:25 +02: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 08:18:27 +02:00
|
|
|
// Debug
|
|
|
|
#define MSG_DEBUG_ECHO "DEBUG ECHO ENABLED"
|
|
|
|
#define MSG_DEBUG_INFO "DEBUG INFO ENABLED"
|
|
|
|
#define MSG_DEBUG_ERRORS "DEBUG ERRORS ENABLED"
|
|
|
|
#define MSG_DEBUG_DRYRUN "DEBUG DRYRUN ENABLED"
|
2015-08-05 13:40:36 +02:00
|
|
|
#define MSG_DEBUG_LEVELING "DEBUG LEVELING ENABLED"
|
2015-02-25 08:03:08 +01:00
|
|
|
|
2014-12-18 19:33:00 +01:00
|
|
|
// LCD Menu Messages
|
2014-02-12 14:21:26 +01:00
|
|
|
|
2015-07-31 07:03:15 +02:00
|
|
|
#if DISABLED(DISPLAY_CHARSET_HD44780_JAPAN) && DISABLED(DISPLAY_CHARSET_HD44780_WESTERN) && DISABLED(DISPLAY_CHARSET_HD44780_CYRILLIC)
|
2015-03-13 14:26:58 +01:00
|
|
|
#define DISPLAY_CHARSET_HD44780_JAPAN
|
2015-01-30 10:31:58 +01:00
|
|
|
#endif
|
|
|
|
|
2014-12-29 18:43:19 +01:00
|
|
|
#include LANGUAGE_INCLUDE
|
2015-02-08 20:41:20 +01:00
|
|
|
#include "language_en.h"
|
2014-03-23 10:30:08 +01:00
|
|
|
|
2014-12-18 19:33:00 +01:00
|
|
|
#endif //__LANGUAGE_H
|