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