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
 * Danish
25
 *
26
 * LCD Menu Messages
27
 * See also http://marlinfw.org/docs/development/lcd_language.html
28
 *
29
 */
30
#ifndef LANGUAGE_DA_H
31
#define LANGUAGE_DA_H
32
 
33
#define MAPPER_C2C3
34
#define DISPLAY_CHARSET_ISO10646_1
35
#define CHARSIZE 2
36
 
37
#define WELCOME_MSG                         MACHINE_NAME _UxGT(" er klar")
38
#define MSG_SD_INSERTED                     _UxGT("Kort isat")
39
#define MSG_SD_REMOVED                      _UxGT("Kort fjernet")
40
#define MSG_LCD_ENDSTOPS                    _UxGT("Endstops") // Max length 8 characters
41
#define MSG_MAIN                            _UxGT("Menu")
42
#define MSG_AUTOSTART                       _UxGT("Autostart")
43
#define MSG_DISABLE_STEPPERS                _UxGT("Slå alle steppere fra")
44
#define MSG_AUTO_HOME                       _UxGT("Auto Home") // G28
45
#define MSG_AUTO_HOME_X                     _UxGT("Home X")
46
#define MSG_AUTO_HOME_Y                     _UxGT("Home Y")
47
#define MSG_AUTO_HOME_Z                     _UxGT("Home Z")
48
#define MSG_TMC_Z_CALIBRATION               _UxGT("Kalibrer Z")
49
#define MSG_LEVEL_BED_HOMING                _UxGT("Homing XYZ")
50
#define MSG_LEVEL_BED_WAITING               _UxGT("Klik når du er klar")
51
#define MSG_LEVEL_BED_NEXT_POINT            _UxGT("Næste punkt")
52
#define MSG_LEVEL_BED_DONE                  _UxGT("Bed level er færdig!")
53
#define MSG_SET_HOME_OFFSETS                _UxGT("Sæt forsk. af home")
54
#define MSG_HOME_OFFSETS_APPLIED            _UxGT("Forsk. er nu aktiv")
55
#define MSG_SET_ORIGIN                      _UxGT("Sæt origin")
56
#define MSG_PREHEAT_1                       _UxGT("Forvarm PLA")
57
#define MSG_PREHEAT_1_N                     _UxGT("Forvarm PLA ")
58
#define MSG_PREHEAT_1_ALL                   _UxGT("Forvarm PLA Alle")
59
#define MSG_PREHEAT_1_BEDONLY               _UxGT("Forvarm PLA Bed")
60
#define MSG_PREHEAT_1_SETTINGS              _UxGT("Forvarm PLA conf")
61
#define MSG_PREHEAT_2                       _UxGT("Forvarm ABS")
62
#define MSG_PREHEAT_2_N                     _UxGT("Forvarm ABS ")
63
#define MSG_PREHEAT_2_ALL                   _UxGT("Forvarm ABS Alle")
64
#define MSG_PREHEAT_2_BEDONLY               _UxGT("Forvarm ABS Bed")
65
#define MSG_PREHEAT_2_SETTINGS              _UxGT("Forvarm ABS conf")
66
#define MSG_COOLDOWN                        _UxGT("Afkøl")
67
#define MSG_SWITCH_PS_ON                    _UxGT("Slå strøm til")
68
#define MSG_SWITCH_PS_OFF                   _UxGT("Slå strøm fra")
69
#define MSG_EXTRUDE                         _UxGT("Extruder")
70
#define MSG_RETRACT                         _UxGT("Retract")
71
#define MSG_MOVE_AXIS                       _UxGT("Flyt akser")
72
#define MSG_BED_LEVELING                    _UxGT("Juster bed")
73
#define MSG_LEVEL_BED                       _UxGT("Juster bed")
74
#define MSG_MOVE_X                          _UxGT("Flyt X")
75
#define MSG_MOVE_Y                          _UxGT("Flyt Y")
76
#define MSG_MOVE_Z                          _UxGT("Flyt Z")
77
#define MSG_MOVE_E                          _UxGT("Extruder")
78
#define MSG_MOVE_01MM                       _UxGT("Flyt 0.1mm")
79
#define MSG_MOVE_1MM                        _UxGT("Flyt 1mm")
80
#define MSG_MOVE_10MM                       _UxGT("Flyt 10mm")
81
#define MSG_SPEED                           _UxGT("Hastighed")
82
#define MSG_BED_Z                           _UxGT("Plade Z")
83
#define MSG_NOZZLE                          _UxGT("Dyse")
84
 
85
#define MSG_BED                             _UxGT("Plade")
86
#define MSG_FAN_SPEED                       _UxGT("Blæser hastighed")
87
#define MSG_FLOW                            _UxGT("Flow")
88
#define MSG_CONTROL                         _UxGT("Kontrol")
89
#define MSG_MIN                             _UxGT(" \002 Min")
90
#define MSG_MAX                             _UxGT(" \002 Max")
91
#define MSG_FACTOR                          _UxGT(" \002 Fact")
92
#define MSG_AUTOTEMP                        _UxGT("Autotemp")
93
#define MSG_ON                              _UxGT("Til ")
94
#define MSG_OFF                             _UxGT("Fra")
95
#define MSG_PID_P                           _UxGT("PID-P")
96
#define MSG_PID_I                           _UxGT("PID-I")
97
#define MSG_PID_D                           _UxGT("PID-D")
98
#define MSG_PID_C                           _UxGT("PID-C")
99
#define MSG_SELECT                          _UxGT("Vælg")
100
#define MSG_ACC                             _UxGT("Accel")
101
#define MSG_JERK                            _UxGT("Jerk")
102
#if IS_KINEMATIC
103
  #define MSG_VA_JERK                       _UxGT("Va-jerk")
104
  #define MSG_VB_JERK                       _UxGT("Vb-jerk")
105
  #define MSG_VC_JERK                       _UxGT("Vc-jerk")
106
#else
107
  #define MSG_VA_JERK                       _UxGT("Vx-jerk")
108
  #define MSG_VB_JERK                       _UxGT("Vy-jerk")
109
  #define MSG_VC_JERK                       _UxGT("Vz-jerk")
110
#endif
111
#define MSG_VE_JERK                         _UxGT("Ve-jerk")
112
#define MSG_VMAX                            _UxGT("Vmax ")
113
#define MSG_VMIN                            _UxGT("Vmin")
114
#define MSG_VTRAV_MIN                       _UxGT("VTrav min")
115
#define MSG_AMAX                            _UxGT("Amax ")
116
#define MSG_A_RETRACT                       _UxGT("A-retract")
117
#define MSG_A_TRAVEL                        _UxGT("A-rejse")
118
#define MSG_STEPS_PER_MM                    _UxGT("Steps/mm")
119
#if IS_KINEMATIC
120
  #define MSG_ASTEPS                        _UxGT("Asteps/mm")
121
  #define MSG_BSTEPS                        _UxGT("Bsteps/mm")
122
  #define MSG_CSTEPS                        _UxGT("Csteps/mm")
123
#else
124
  #define MSG_ASTEPS                        _UxGT("Xsteps/mm")
125
  #define MSG_BSTEPS                        _UxGT("Ysteps/mm")
126
  #define MSG_CSTEPS                        _UxGT("Zsteps/mm")
127
#endif
128
#define MSG_ESTEPS                          _UxGT("Esteps/mm")
129
#define MSG_E1STEPS                         _UxGT("E1steps/mm")
130
#define MSG_E2STEPS                         _UxGT("E2steps/mm")
131
#define MSG_E3STEPS                         _UxGT("E3steps/mm")
132
#define MSG_E4STEPS                         _UxGT("E4steps/mm")
133
#define MSG_E5STEPS                         _UxGT("E5steps/mm")
134
#define MSG_TEMPERATURE                     _UxGT("Temperatur")
135
#define MSG_MOTION                          _UxGT("Bevægelse")
136
#define MSG_FILAMENT                        _UxGT("Filament")
137
#define MSG_VOLUMETRIC_ENABLED              _UxGT("E i mm3")
138
#define MSG_FILAMENT_DIAM                   _UxGT("Fil. Dia.")
139
#define MSG_CONTRAST                        _UxGT("LCD kontrast")
140
#define MSG_STORE_EEPROM                    _UxGT("Gem i EEPROM")
141
#define MSG_LOAD_EEPROM                     _UxGT("Hent fra EEPROM")
142
#define MSG_RESTORE_FAILSAFE                _UxGT("Gendan failsafe")
143
#define MSG_REFRESH                         _UxGT("Genopfrisk")
144
#define MSG_WATCH                           _UxGT("Info skærm")
145
#define MSG_PREPARE                         _UxGT("Forbered")
146
#define MSG_TUNE                            _UxGT("Tune")
147
#define MSG_PAUSE_PRINT                     _UxGT("Pause printet")
148
#define MSG_RESUME_PRINT                    _UxGT("Forsæt printet")
149
#define MSG_STOP_PRINT                      _UxGT("Stop printet")
150
#define MSG_CARD_MENU                       _UxGT("Print fra SD")
151
#define MSG_NO_CARD                         _UxGT("Intet SD kort")
152
#define MSG_DWELL                           _UxGT("Dvale...")
153
#define MSG_USERWAIT                        _UxGT("Venter på bruger...")
154
#define MSG_PRINT_ABORTED                   _UxGT("Print annulleret")
155
#define MSG_NO_MOVE                         _UxGT("Ingen bevægelse.")
156
#define MSG_KILLED                          _UxGT("DRÆBT. ")
157
#define MSG_STOPPED                         _UxGT("STOPPET. ")
158
#define MSG_CONTROL_RETRACT                 _UxGT("Tilbagetræk mm")
159
#define MSG_CONTROL_RETRACT_SWAP            _UxGT("Skift Re.mm")
160
#define MSG_CONTROL_RETRACTF                _UxGT("Tilbagetræk V")
161
#define MSG_CONTROL_RETRACT_ZLIFT           _UxGT("Hop mm")
162
#define MSG_CONTROL_RETRACT_RECOVER         _UxGT("UnRet mm")
163
#define MSG_CONTROL_RETRACT_RECOVER_SWAP    _UxGT("Skift UnRet mm")
164
#define MSG_CONTROL_RETRACT_RECOVERF        _UxGT("UnRet  V")
165
#define MSG_AUTORETRACT                     _UxGT("AutoRetr.")
166
#define MSG_FILAMENTCHANGE                  _UxGT("Skift filament")
167
#define MSG_INIT_SDCARD                     _UxGT("Init. SD card")
168
#define MSG_CNG_SDCARD                      _UxGT("Skift SD kort")
169
#define MSG_ZPROBE_OUT                      _UxGT("Probe udenfor plade")
170
#define MSG_BLTOUCH_SELFTEST                _UxGT("BLTouch Selv-Test")
171
#define MSG_BLTOUCH_RESET                   _UxGT("Reset BLTouch")
172
#define MSG_HOME                            _UxGT("Home")  // Used as MSG_HOME " " MSG_X MSG_Y MSG_Z " " MSG_FIRST
173
#define MSG_FIRST                           _UxGT("først")
174
#define MSG_ZPROBE_ZOFFSET                  _UxGT("Z Offset")
175
#define MSG_BABYSTEP_X                      _UxGT("Babystep X")
176
#define MSG_BABYSTEP_Y                      _UxGT("Babystep Y")
177
#define MSG_BABYSTEP_Z                      _UxGT("Babystep Z")
178
#define MSG_ENDSTOP_ABORT                   _UxGT("Endstop abort")
179
#define MSG_HEATING_FAILED_LCD              _UxGT("Opvarmning fejlet")
180
#define MSG_ERR_REDUNDANT_TEMP              _UxGT("Fejl: reserve temp")
181
#define MSG_THERMAL_RUNAWAY                 _UxGT("Temp løber løbsk")
182
#define MSG_ERR_MAXTEMP                     _UxGT("Fejl: Maks temp")
183
#define MSG_ERR_MINTEMP                     _UxGT("Fejl: Min temp")
184
#define MSG_ERR_MAXTEMP_BED                 _UxGT("Fejl: Maks Plade temp")
185
#define MSG_ERR_MINTEMP_BED                 _UxGT("Fejl: Min Plade temp")
186
#define MSG_ERR_Z_HOMING                    MSG_HOME _UxGT(" ") MSG_X MSG_Y _UxGT(" ") MSG_FIRST
187
#define MSG_HALTED                          _UxGT("PRINTER STOPPET")
188
#define MSG_PLEASE_RESET                    _UxGT("Reset Venligst")
189
#define MSG_SHORT_DAY                       _UxGT("d") // Kun et bogstav
190
#define MSG_SHORT_HOUR                      _UxGT("h") // Kun et bogstav
191
#define MSG_SHORT_MINUTE                    _UxGT("m") // Kun et bogstav
192
#define MSG_HEATING                         _UxGT("Opvarmer...")
193
#define MSG_BED_HEATING                     _UxGT("Opvarmer plade...")
194
#define MSG_DELTA_CALIBRATE                 _UxGT("Delta Kalibrering")
195
#define MSG_DELTA_CALIBRATE_X               _UxGT("Kalibrer X")
196
#define MSG_DELTA_CALIBRATE_Y               _UxGT("Kalibrer Y")
197
#define MSG_DELTA_CALIBRATE_Z               _UxGT("Kalibrer Z")
198
#define MSG_DELTA_CALIBRATE_CENTER          _UxGT("Kalibrerings Center")
199
 
200
#define MSG_INFO_MENU                       _UxGT("Om Printer")
201
#define MSG_INFO_PRINTER_MENU               _UxGT("Printer Info")
202
#define MSG_INFO_STATS_MENU                 _UxGT("Printer Stats")
203
#define MSG_INFO_BOARD_MENU                 _UxGT("Kort Info")
204
#define MSG_INFO_THERMISTOR_MENU            _UxGT("Thermistors")
205
#define MSG_INFO_EXTRUDERS                  _UxGT("Extruders")
206
#define MSG_INFO_BAUDRATE                   _UxGT("Baud")
207
#define MSG_INFO_PROTOCOL                   _UxGT("Protocol")
208
 
209
#if LCD_WIDTH >= 20
210
  #define MSG_INFO_PRINT_COUNT              _UxGT("Ant. Prints")
211
  #define MSG_INFO_COMPLETED_PRINTS         _UxGT("Færdige")
212
  #define MSG_INFO_PRINT_TIME               _UxGT("Total print tid")
213
  #define MSG_INFO_PRINT_LONGEST            _UxGT("Længste print")
214
  #define MSG_INFO_PRINT_FILAMENT           _UxGT("Total Extruderet")
215
#else
216
  #define MSG_INFO_PRINT_COUNT              _UxGT("Prints")
217
  #define MSG_INFO_COMPLETED_PRINTS         _UxGT("Færdige")
218
  #define MSG_INFO_PRINT_TIME               _UxGT("Total")
219
  #define MSG_INFO_PRINT_LONGEST            _UxGT("Længste")
220
  #define MSG_INFO_PRINT_FILAMENT           _UxGT("Extruderet")
221
#endif
222
 
223
#define MSG_INFO_MIN_TEMP                   _UxGT("Min Temp")
224
#define MSG_INFO_MAX_TEMP                   _UxGT("Max Temp")
225
#define MSG_INFO_PSU                        _UxGT("Strømfors.")
226
 
227
#define MSG_DRIVE_STRENGTH                  _UxGT("Driv Styrke")
228
#define MSG_DAC_PERCENT                     _UxGT("Driv %")
229
#define MSG_DAC_EEPROM_WRITE                _UxGT("DAC EEPROM Skriv")
230
 
231
#define MSG_FILAMENT_CHANGE_OPTION_RESUME   _UxGT("Forsæt print")
232
 
233
#if LCD_HEIGHT >= 4
234
  #define MSG_FILAMENT_CHANGE_INIT_1          _UxGT("Vent på start")
235
  #define MSG_FILAMENT_CHANGE_INIT_2          _UxGT("af filament")
236
  #define MSG_FILAMENT_CHANGE_INIT_3          _UxGT("skift")
237
  #define MSG_FILAMENT_CHANGE_UNLOAD_1        _UxGT("Vent på")
238
  #define MSG_FILAMENT_CHANGE_UNLOAD_2        _UxGT("filament udskyd.")
239
  #define MSG_FILAMENT_CHANGE_INSERT_1        _UxGT("Indsæt filament")
240
  #define MSG_FILAMENT_CHANGE_INSERT_2        _UxGT("og tryk på knap")
241
  #define MSG_FILAMENT_CHANGE_INSERT_3        _UxGT("for at fortsætte...")
242
  #define MSG_FILAMENT_CHANGE_LOAD_1          _UxGT("Vent på")
243
  #define MSG_FILAMENT_CHANGE_LOAD_2          _UxGT("filament indtag")
244
  #define MSG_FILAMENT_CHANGE_RESUME_1        _UxGT("Vent på at print")
245
  #define MSG_FILAMENT_CHANGE_RESUME_2        _UxGT("fortsætter")
246
#else // LCD_HEIGHT < 4
247
  #define MSG_FILAMENT_CHANGE_INIT_1          _UxGT("Vent venligst...")
248
  #define MSG_FILAMENT_CHANGE_UNLOAD_1        _UxGT("Udskyder...")
249
  #define MSG_FILAMENT_CHANGE_INSERT_1        _UxGT("Indsæt og klik")
250
  #define MSG_FILAMENT_CHANGE_LOAD_1          _UxGT("Indtager...")
251
  #define MSG_FILAMENT_CHANGE_RESUME_1        _UxGT("Fortsætter...")
252
#endif // LCD_HEIGHT < 4
253
 
254
#endif // LANGUAGE_DA_H