diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp index daf5987..3d988d6 100644 --- a/Marlin/Marlin_main.cpp +++ b/Marlin/Marlin_main.cpp @@ -846,7 +846,7 @@ void setup() if(languageID==0) strMessage="Power loss detected, Resume print " + sFileName + "?"; else - strMessage="⵽ϵ磬ָӡ" + sFileName + ""; + strMessage="检测到断电,恢复打印" + sFileName + "?"; strMessage = "msgbox.tMessage.txt=\"" + strMessage + "\""; const char* str0 = strMessage.c_str(); TenlogScreen_println(str0); @@ -1200,7 +1200,7 @@ void get_command() if(card.saving) break; #endif //SDSUPPORT - SERIAL_PROTOCOLLNPGM(MSG_OK); + // SERIAL_PROTOCOLLNPGM(MSG_OK); // Bug fix for USB Printing - levelfifty } else { SERIAL_ERRORLNPGM(MSG_ERR_STOPPED); @@ -1257,13 +1257,13 @@ void get_command() if(languageID==0) strMessage="Print finished, " + String(hours) + " hours and " + String(minutes) + " minutes. "; else - strMessage="ӡɣ" + String(hours) + "ʱ" + String(minutes) + "֡"; + strMessage="打印完成!共用了" + String(hours) + "时" + String(minutes) + "分。"; #ifdef POWER_LOSS_TRIGGER_BY_PIN if(zyf_AUTO_OFF == 1){ if(languageID==0) strMessage = strMessage + "Power off in 10 seconds."; else - strMessage = strMessage + "10ػ"; + strMessage = strMessage + "10秒后关机"; bAutoOff = true; } #endif @@ -1913,7 +1913,7 @@ void check_filament_fail(){ if(languageID==0) strMessage="Filament runout!"; else - strMessage="IJþ"; + strMessage="耗材用尽!"; strMessage = "msgbox.tMessage.txt=\"" + strMessage + "\""; const char* str0 = strMessage.c_str(); TenlogScreen_println(str0); @@ -3780,10 +3780,10 @@ void get_coordinates(float XValue=-99999.0,float YValue=-99999.0,float ZValue=-9 float fRate=1.0; int iMode=0; #ifdef TENLOG_CONTROLLER - if(code_seen('R')) { // + if(code_seen('R')) { //倍率 fRate=(float)code_value(); } - if(code_seen('M')) { //꣬ + if(code_seen('M')) { //绝对坐标,相对坐标 iMode=(int)code_value(); } #endif