Subversion Repositories Tronxy-X3A-Marlin

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 ron 1
/**
2
 * Marlin 3D Printer Firmware
3
 * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4
 *
5
 * Based on Sprinter and grbl.
6
 * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
7
 *
8
 * This program is free software: you can redistribute it and/or modify
9
 * it under the terms of the GNU General Public License as published by
10
 * the Free Software Foundation, either version 3 of the License, or
11
 * (at your option) any later version.
12
 *
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU General Public License
19
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
 *
21
 */
22
 
23
/**
24
 * Chinese
25
 *
26
 * LCD Menu Messages
27
 * See also http://marlinfw.org/docs/development/lcd_language.html
28
 *
29
 */
30
#ifndef LANGUAGE_CN_H
31
#define LANGUAGE_CN_H
32
 
33
#define DISPLAY_CHARSET_ISO10646_CN
34
#define CHARSIZE 2
35
 
36
#define WELCOME_MSG                         "\xa4\xa5\xa6\xa7"
37
#define MSG_SD_INSERTED                     "\xa8\xa9\xaa\xab"
38
#define MSG_SD_REMOVED                      "\xa8\xa9\xac\xad"
39
#define MSG_MAIN                            "\xae\xaf\xb0"
40
#define MSG_AUTOSTART                       "\xb1\xb2\xb3\xb4"
41
#define MSG_DISABLE_STEPPERS                "\xb5\xb6\xb7\xb8\xb9\xba"
42
#define MSG_AUTO_HOME                       "\xbb\xbc\xbd"
43
#define MSG_TMC_Z_CALIBRATION               "Calibrate Z"
44
#define MSG_LEVEL_BED_HOMING                "Homing XYZ"
45
#define MSG_LEVEL_BED_WAITING               "Click to Begin"
46
#define MSG_LEVEL_BED_DONE                  "Leveling Done!"
47
#define MSG_SET_HOME_OFFSETS                "\xbe\xbf\xbb\xbc\xbd\xc0\xc1"
48
#define MSG_HOME_OFFSETS_APPLIED            "Offsets applied"
49
#define MSG_SET_ORIGIN                      "\xbe\xbf\xbc\xbd"
50
#define MSG_PREHEAT_1                       "\xc3\xc4 PLA"
51
#define MSG_PREHEAT_1_N                     MSG_PREHEAT_1 " "
52
#define MSG_PREHEAT_1_ALL                   MSG_PREHEAT_1 " \xc5\xc6"
53
#define MSG_PREHEAT_1_BEDONLY               MSG_PREHEAT_1 " \xc4\xc7"
54
#define MSG_PREHEAT_1_SETTINGS              MSG_PREHEAT_1 " \xbe\xbf"
55
#define MSG_PREHEAT_2                       "\xc3\xc4 ABS"
56
#define MSG_PREHEAT_2_N                     MSG_PREHEAT_2 " "
57
#define MSG_PREHEAT_2_ALL                   MSG_PREHEAT_2 " \xc5\xc6"
58
#define MSG_PREHEAT_2_BEDONLY               MSG_PREHEAT_2 " \xbe\xc6"
59
#define MSG_PREHEAT_2_SETTINGS              MSG_PREHEAT_2 " \xbe\xbf"
60
#define MSG_COOLDOWN                        "\xc8\xc9"
61
#define MSG_SWITCH_PS_ON                    "\xb9\xcb\xca\xb3"
62
#define MSG_SWITCH_PS_OFF                   "\xb9\xcb\xb5\xb6"
63
#define MSG_EXTRUDE                         "\xcc\xad"
64
#define MSG_RETRACT                         "\xbb\xcd"
65
#define MSG_MOVE_AXIS                       "\xc1\xb2\xce"
66
#define MSG_BED_LEVELING                    "\xcf\xe0\xc4\xc7"
67
#define MSG_LEVEL_BED                       "\xcf\xe0\xc4\xc7"
68
#define MSG_MOVE_X                          "\xc1\xb2 X"
69
#define MSG_MOVE_Y                          "\xc1\xb2 Y"
70
#define MSG_MOVE_Z                          "\xc1\xb2 Z"
71
#define MSG_MOVE_E                          "\xcc\xad\xba"
72
#define MSG_MOVE_01MM                       "\xc1\xb2 0.1mm"
73
#define MSG_MOVE_1MM                        "\xc1\xb2 1mm"
74
#define MSG_MOVE_10MM                       "\xc1\xb2 10mm"
75
#define MSG_SPEED                           "\xd1\xd2"
76
#define MSG_NOZZLE                          "\xd3\xd4"
77
#define MSG_BED                             "\xc4\xc7"
78
#define MSG_FAN_SPEED                       "\xd5\xd6\xd1\xd2"
79
#define MSG_FLOW                            "\xcc\xad\xd1\xd2"
80
#define MSG_CONTROL                         "\xd8\xd9"
81
#define MSG_MIN                             LCD_STR_THERMOMETER " \xda\xdb"
82
#define MSG_MAX                             LCD_STR_THERMOMETER " \xda\xdc"
83
#define MSG_FACTOR                          LCD_STR_THERMOMETER " \xdd\xde"
84
#define MSG_AUTOTEMP                        "\xb1\xb2\xd8\xc9"
85
#define MSG_ON                              "\xb3 "  // intentional space to shift wide symbol to the left
86
#define MSG_OFF                             "\xb5 "  // intentional space to shift wide symbol to the left
87
#define MSG_PID_P                           "PID-P"
88
#define MSG_PID_I                           "PID-I"
89
#define MSG_PID_D                           "PID-D"
90
#define MSG_PID_C                           "PID-C"
91
#define MSG_ACC                             "Accel"
92
#define MSG_JERK                            "Jerk"
93
#if IS_KINEMATIC
94
  #define MSG_VA_JERK                       "Va-jerk"
95
  #define MSG_VB_JERK                       "Vb-jerk"
96
  #define MSG_VC_JERK                       "Vc-jerk"
97
#else
98
  #define MSG_VA_JERK                       "Vx-jerk"
99
  #define MSG_VB_JERK                       "Vy-jerk"
100
  #define MSG_VC_JERK                       "Vz-jerk"
101
#endif
102
#define MSG_VE_JERK                         "Ve-jerk"
103
#define MSG_VMAX                            "Vmax "
104
#define MSG_VMIN                            "Vmin"
105
#define MSG_VTRAV_MIN                       "VTrav min"
106
#define MSG_AMAX                            "Amax "
107
#define MSG_A_RETRACT                       "A-retract"
108
#define MSG_A_TRAVEL                        "A-travel"
109
#define MSG_STEPS_PER_MM                    "Steps/mm"
110
#define MSG_ESTEPS                          "Esteps/mm"
111
#define MSG_E1STEPS                         "E1steps/mm"
112
#define MSG_E2STEPS                         "E2steps/mm"
113
#define MSG_E3STEPS                         "E3steps/mm"
114
#define MSG_E4STEPS                         "E4steps/mm"
115
#define MSG_E5STEPS                         "E5steps/mm"
116
#define MSG_TEMPERATURE                     "\xc9\xd2"
117
#define MSG_MOTION                          "\xdf\xb2"
118
#define MSG_FILAMENT                        "Filament"
119
#define MSG_VOLUMETRIC_ENABLED              "E in mm3"
120
#define MSG_FILAMENT_DIAM                   "Fil. Dia."
121
#define MSG_CONTRAST                        "LCD contrast"
122
#define MSG_STORE_EEPROM                    "Store memory"
123
#define MSG_LOAD_EEPROM                     "Load memory"
124
#define MSG_RESTORE_FAILSAFE                "Restore failsafe"
125
#define MSG_REFRESH                         "Refresh"
126
#define MSG_WATCH                           "\xec\xed\xee\xef"
127
#define MSG_PREPARE                         "\xa4\xa5"
128
#define MSG_TUNE                            "\xcf\xf0"
129
#define MSG_PAUSE_PRINT                     "\xf1\xf2\xca\xf3"
130
#define MSG_RESUME_PRINT                    "\xf4\xf5\xca\xf3"
131
#define MSG_STOP_PRINT                      "\xf2\xf6\xca\xf3"
132
#define MSG_CARD_MENU                       "\xaf\xb0"
133
#define MSG_NO_CARD                         "\xf9\xa8"
134
#define MSG_DWELL                           "Sleep..."
135
#define MSG_USERWAIT                        "Wait for user..."
136
#define MSG_PRINT_ABORTED                   "Print aborted"
137
#define MSG_NO_MOVE                         "No move."
138
#define MSG_KILLED                          "KILLED. "
139
#define MSG_STOPPED                         "STOPPED. "
140
#define MSG_CONTROL_RETRACT                 "Retract mm"
141
#define MSG_CONTROL_RETRACT_SWAP            "Swap Re.mm"
142
#define MSG_CONTROL_RETRACTF                "Retract  V"
143
#define MSG_CONTROL_RETRACT_ZLIFT           "Hop mm"
144
#define MSG_CONTROL_RETRACT_RECOVER         "UnRet mm"
145
#define MSG_CONTROL_RETRACT_RECOVER_SWAP    "S UnRet mm"
146
#define MSG_CONTROL_RETRACT_RECOVERF        "UnRet  V"
147
#define MSG_AUTORETRACT                     "AutoRetr."
148
#define MSG_FILAMENTCHANGE                  "Change filament"
149
#define MSG_INIT_SDCARD                     "Init. SD card"
150
#define MSG_CNG_SDCARD                      "Change SD card"
151
#define MSG_ZPROBE_OUT                      "Z probe out. bed"
152
#define MSG_HOME                            "Home"  // Used as MSG_HOME " " MSG_X MSG_Y MSG_Z " " MSG_FIRST
153
#define MSG_FIRST                           "first"
154
#define MSG_ZPROBE_ZOFFSET                  "Z Offset"
155
#define MSG_BABYSTEP_X                      "Babystep X"
156
#define MSG_BABYSTEP_Y                      "Babystep Y"
157
#define MSG_BABYSTEP_Z                      "Babystep Z"
158
#define MSG_ENDSTOP_ABORT                   "Endstop abort"
159
#define MSG_HEATING_FAILED_LCD              "Heating failed"
160
#define MSG_ERR_REDUNDANT_TEMP              "Err: REDUNDANT TEMP"
161
#define MSG_THERMAL_RUNAWAY                 "THERMAL RUNAWAY"
162
#define MSG_ERR_MAXTEMP                     "Err: MAXTEMP"
163
#define MSG_ERR_MINTEMP                     "Err: MINTEMP"
164
#define MSG_ERR_MAXTEMP_BED                 "Err: MAXTEMP BED"
165
#define MSG_DELTA_CALIBRATE                 "Delta Calibration"
166
#define MSG_DELTA_CALIBRATE_X               "Calibrate X"
167
#define MSG_DELTA_CALIBRATE_Y               "Calibrate Y"
168
#define MSG_DELTA_CALIBRATE_Z               "Calibrate Z"
169
#define MSG_DELTA_CALIBRATE_CENTER          "Calibrate Center"
170
 
171
#endif // LANGUAGE_CN_H