Merge pull request #570 from PavelSindler/MK25_selftest
steppers mode translation
This commit is contained in:
commit
3b7ff89d47
|
|
@ -61,8 +61,10 @@ const char * const MSG_AUTO_HOME_LANG_TABLE[1] PROGMEM = {
|
|||
};
|
||||
|
||||
const char MSG_AUTO_MODE_ON_EN[] PROGMEM = "Mode [auto power]";
|
||||
const char * const MSG_AUTO_MODE_ON_LANG_TABLE[1] PROGMEM = {
|
||||
MSG_AUTO_MODE_ON_EN
|
||||
const char MSG_AUTO_MODE_ON_CZ[] PROGMEM = "Mod [automaticky]";
|
||||
const char * const MSG_AUTO_MODE_ON_LANG_TABLE[LANG_NUM] PROGMEM = {
|
||||
MSG_AUTO_MODE_ON_EN,
|
||||
MSG_AUTO_MODE_ON_CZ
|
||||
};
|
||||
|
||||
const char MSG_A_RETRACT_EN[] PROGMEM = "A-retract";
|
||||
|
|
@ -1986,14 +1988,14 @@ const char * const MSG_SHOW_END_STOPS_LANG_TABLE[LANG_NUM] PROGMEM = {
|
|||
};
|
||||
|
||||
const char MSG_SILENT_MODE_OFF_EN[] PROGMEM = "Mode [high power]";
|
||||
const char MSG_SILENT_MODE_OFF_CZ[] PROGMEM = "Mod [Normal]";
|
||||
const char MSG_SILENT_MODE_OFF_CZ[] PROGMEM = "Mod [vys. vykon]";
|
||||
const char * const MSG_SILENT_MODE_OFF_LANG_TABLE[LANG_NUM] PROGMEM = {
|
||||
MSG_SILENT_MODE_OFF_EN,
|
||||
MSG_SILENT_MODE_OFF_CZ
|
||||
};
|
||||
|
||||
const char MSG_SILENT_MODE_ON_EN[] PROGMEM = "Mode [silent]";
|
||||
const char MSG_SILENT_MODE_ON_CZ[] PROGMEM = "Mod [Stealth]";
|
||||
const char MSG_SILENT_MODE_ON_CZ[] PROGMEM = "Mod [tichy]";
|
||||
const char * const MSG_SILENT_MODE_ON_LANG_TABLE[LANG_NUM] PROGMEM = {
|
||||
MSG_SILENT_MODE_ON_EN,
|
||||
MSG_SILENT_MODE_ON_CZ
|
||||
|
|
|
|||
|
|
@ -40,8 +40,8 @@ extern const char* const MSG_AUTOLOAD_FILAMENT_LANG_TABLE[LANG_NUM];
|
|||
#define MSG_AUTOLOAD_FILAMENT LANG_TABLE_SELECT(MSG_AUTOLOAD_FILAMENT_LANG_TABLE)
|
||||
extern const char* const MSG_AUTO_HOME_LANG_TABLE[1];
|
||||
#define MSG_AUTO_HOME LANG_TABLE_SELECT_EXPLICIT(MSG_AUTO_HOME_LANG_TABLE, 0)
|
||||
extern const char* const MSG_AUTO_MODE_ON_LANG_TABLE[1];
|
||||
#define MSG_AUTO_MODE_ON LANG_TABLE_SELECT_EXPLICIT(MSG_AUTO_MODE_ON_LANG_TABLE, 0)
|
||||
extern const char* const MSG_AUTO_MODE_ON_LANG_TABLE[LANG_NUM];
|
||||
#define MSG_AUTO_MODE_ON LANG_TABLE_SELECT(MSG_AUTO_MODE_ON_LANG_TABLE)
|
||||
extern const char* const MSG_A_RETRACT_LANG_TABLE[1];
|
||||
#define MSG_A_RETRACT LANG_TABLE_SELECT_EXPLICIT(MSG_A_RETRACT_LANG_TABLE, 0)
|
||||
extern const char* const MSG_BABYSTEPPING_X_LANG_TABLE[1];
|
||||
|
|
|
|||
|
|
@ -103,8 +103,9 @@
|
|||
#define MSG_INSERT_FILAMENT "Vlozte filament"
|
||||
#define MSG_CHANGING_FILAMENT "Vymena filamentu!"
|
||||
|
||||
#define MSG_SILENT_MODE_ON "Mod [Stealth]"
|
||||
#define MSG_SILENT_MODE_OFF "Mod [Normal]"
|
||||
#define MSG_SILENT_MODE_ON "Mod [tichy]"
|
||||
#define MSG_SILENT_MODE_OFF "Mod [vys. vykon]"
|
||||
#define MSG_AUTO_MODE_ON "Mod [automaticky]"
|
||||
#define MSG_REBOOT "Restartujte tiskarnu"
|
||||
#define MSG_TAKE_EFFECT " pro projeveni zmen"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue