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 |
* Croatian (Hrvatski)
|
|
|
25 |
*
|
|
|
26 |
* LCD Menu Messages
|
|
|
27 |
* See also http://marlinfw.org/docs/development/lcd_language.html
|
|
|
28 |
*
|
|
|
29 |
*/
|
|
|
30 |
#ifndef LANGUAGE_HR_H
|
|
|
31 |
#define LANGUAGE_HR_H
|
|
|
32 |
|
|
|
33 |
#define DISPLAY_CHARSET_ISO10646_1 // use the better font on full graphic displays.
|
|
|
34 |
#define CHARSIZE 2
|
|
|
35 |
|
|
|
36 |
#define WELCOME_MSG MACHINE_NAME _UxGT(" spreman.")
|
|
|
37 |
#define MSG_SD_INSERTED _UxGT("SD kartica umetnuta")
|
|
|
38 |
#define MSG_SD_REMOVED _UxGT("SD kartica uklonjena")
|
|
|
39 |
#define MSG_LCD_ENDSTOPS _UxGT("Endstops") // Max length 8 characters
|
|
|
40 |
#define MSG_MAIN _UxGT("Main")
|
|
|
41 |
#define MSG_AUTOSTART _UxGT("Auto pokretanje")
|
|
|
42 |
#define MSG_DISABLE_STEPPERS _UxGT("Ugasi steppere")
|
|
|
43 |
#define MSG_AUTO_HOME _UxGT("Automatski homing")
|
|
|
44 |
#define MSG_AUTO_HOME_X _UxGT("Home-aj X")
|
|
|
45 |
#define MSG_AUTO_HOME_Y _UxGT("Home-aj Y")
|
|
|
46 |
#define MSG_AUTO_HOME_Z _UxGT("Home-aj Z")
|
|
|
47 |
#define MSG_TMC_Z_CALIBRATION _UxGT("Kalibriraj Z")
|
|
|
48 |
#define MSG_LEVEL_BED_HOMING _UxGT("Home-aj XYZ")
|
|
|
49 |
#define MSG_LEVEL_BED_WAITING _UxGT("Klikni za početak")
|
|
|
50 |
#define MSG_LEVEL_BED_NEXT_POINT _UxGT("Sljedeća točka")
|
|
|
51 |
#define MSG_LEVEL_BED_DONE _UxGT("Niveliranje gotovo!")
|
|
|
52 |
#define MSG_SET_HOME_OFFSETS _UxGT("Postavi home offsete")
|
|
|
53 |
#define MSG_HOME_OFFSETS_APPLIED _UxGT("Offsets postavljeni")
|
|
|
54 |
#define MSG_SET_ORIGIN _UxGT("Postavi ishodište")
|
|
|
55 |
#define MSG_PREHEAT_1 _UxGT("Predgrij PLA")
|
|
|
56 |
#define MSG_PREHEAT_1_N MSG_PREHEAT_1 _UxGT(" ")
|
|
|
57 |
#define MSG_PREHEAT_1_ALL MSG_PREHEAT_1 _UxGT(" Sve")
|
|
|
58 |
#define MSG_PREHEAT_1_BEDONLY MSG_PREHEAT_1 _UxGT(" Bed")
|
|
|
59 |
#define MSG_PREHEAT_1_SETTINGS MSG_PREHEAT_1 _UxGT(" conf")
|
|
|
60 |
#define MSG_PREHEAT_2 _UxGT("Predgrij ABS")
|
|
|
61 |
#define MSG_PREHEAT_2_N MSG_PREHEAT_2 _UxGT(" ")
|
|
|
62 |
#define MSG_PREHEAT_2_ALL MSG_PREHEAT_2 _UxGT(" Sve")
|
|
|
63 |
#define MSG_PREHEAT_2_BEDONLY MSG_PREHEAT_2 _UxGT(" Bed")
|
|
|
64 |
#define MSG_PREHEAT_2_SETTINGS MSG_PREHEAT_2 _UxGT(" conf")
|
|
|
65 |
#define MSG_COOLDOWN _UxGT("Hlađenje")
|
|
|
66 |
#define MSG_SWITCH_PS_ON _UxGT("Uključi napajanje")
|
|
|
67 |
#define MSG_SWITCH_PS_OFF _UxGT("Isključi napajanje")
|
|
|
68 |
#define MSG_EXTRUDE _UxGT("Extrude")
|
|
|
69 |
#define MSG_RETRACT _UxGT("Retract")
|
|
|
70 |
#define MSG_MOVE_AXIS _UxGT("Miči os")
|
|
|
71 |
#define MSG_BED_LEVELING _UxGT("Niveliraj bed")
|
|
|
72 |
#define MSG_LEVEL_BED _UxGT("Niveliraj bed")
|
|
|
73 |
#define MSG_MOVE_X _UxGT("Miči X")
|
|
|
74 |
#define MSG_MOVE_Y _UxGT("Miči Y")
|
|
|
75 |
#define MSG_MOVE_Z _UxGT("Miči Z")
|
|
|
76 |
#define MSG_MOVE_E _UxGT("Extruder")
|
|
|
77 |
#define MSG_MOVE_01MM _UxGT("Miči 0.1mm")
|
|
|
78 |
#define MSG_MOVE_1MM _UxGT("Miči 1mm")
|
|
|
79 |
#define MSG_MOVE_10MM _UxGT("Miči 10mm")
|
|
|
80 |
#define MSG_SPEED _UxGT("Brzina")
|
|
|
81 |
#define MSG_BED_Z _UxGT("Bed Z")
|
|
|
82 |
#define MSG_NOZZLE _UxGT("Dizna")
|
|
|
83 |
#define MSG_BED _UxGT("Bed")
|
|
|
84 |
#define MSG_FAN_SPEED _UxGT("Brzina ventilatora")
|
|
|
85 |
#define MSG_FLOW _UxGT("Flow")
|
|
|
86 |
#define MSG_CONTROL _UxGT("Control")
|
|
|
87 |
#define MSG_MIN _UxGT(" ") LCD_STR_THERMOMETER _UxGT(" Min")
|
|
|
88 |
#define MSG_MAX _UxGT(" ") LCD_STR_THERMOMETER _UxGT(" Max")
|
|
|
89 |
#define MSG_FACTOR _UxGT(" ") LCD_STR_THERMOMETER _UxGT(" Fact")
|
|
|
90 |
#define MSG_AUTOTEMP _UxGT("Autotemp")
|
|
|
91 |
#define MSG_ON _UxGT("On ")
|
|
|
92 |
#define MSG_OFF _UxGT("Off")
|
|
|
93 |
#define MSG_PID_P _UxGT("PID-P")
|
|
|
94 |
#define MSG_PID_I _UxGT("PID-I")
|
|
|
95 |
#define MSG_PID_D _UxGT("PID-D")
|
|
|
96 |
#define MSG_PID_C _UxGT("PID-C")
|
|
|
97 |
#define MSG_SELECT _UxGT("Odaberi")
|
|
|
98 |
#define MSG_ACC _UxGT("Accel")
|
|
|
99 |
#define MSG_JERK _UxGT("Jerk")
|
|
|
100 |
#if IS_KINEMATIC
|
|
|
101 |
#define MSG_VA_JERK _UxGT("Va-jerk")
|
|
|
102 |
#define MSG_VB_JERK _UxGT("Vb-jerk")
|
|
|
103 |
#define MSG_VC_JERK _UxGT("Vc-jerk")
|
|
|
104 |
#else
|
|
|
105 |
#define MSG_VA_JERK _UxGT("Vx-jerk")
|
|
|
106 |
#define MSG_VB_JERK _UxGT("Vy-jerk")
|
|
|
107 |
#define MSG_VC_JERK _UxGT("Vz-jerk")
|
|
|
108 |
#endif
|
|
|
109 |
#define MSG_VE_JERK _UxGT("Ve-jerk")
|
|
|
110 |
#define MSG_VMAX _UxGT("Vmax ")
|
|
|
111 |
#define MSG_VMIN _UxGT("Vmin")
|
|
|
112 |
#define MSG_VTRAV_MIN _UxGT("VTrav min")
|
|
|
113 |
#define MSG_AMAX _UxGT("Amax ")
|
|
|
114 |
#define MSG_A_RETRACT _UxGT("A-retract")
|
|
|
115 |
#define MSG_A_TRAVEL _UxGT("A-travel")
|
|
|
116 |
#define MSG_STEPS_PER_MM _UxGT("Steps/mm")
|
|
|
117 |
#if IS_KINEMATIC
|
|
|
118 |
#define MSG_ASTEPS _UxGT("Asteps/mm")
|
|
|
119 |
#define MSG_BSTEPS _UxGT("Bsteps/mm")
|
|
|
120 |
#define MSG_CSTEPS _UxGT("Csteps/mm")
|
|
|
121 |
#else
|
|
|
122 |
#define MSG_ASTEPS _UxGT("Xsteps/mm")
|
|
|
123 |
#define MSG_BSTEPS _UxGT("Ysteps/mm")
|
|
|
124 |
#define MSG_CSTEPS _UxGT("Zsteps/mm")
|
|
|
125 |
#endif
|
|
|
126 |
#define MSG_ESTEPS _UxGT("Esteps/mm")
|
|
|
127 |
#define MSG_E1STEPS _UxGT("E1steps/mm")
|
|
|
128 |
#define MSG_E2STEPS _UxGT("E2steps/mm")
|
|
|
129 |
#define MSG_E3STEPS _UxGT("E3steps/mm")
|
|
|
130 |
#define MSG_E4STEPS _UxGT("E4steps/mm")
|
|
|
131 |
#define MSG_E5STEPS _UxGT("E5steps/mm")
|
|
|
132 |
#define MSG_TEMPERATURE _UxGT("Temperature")
|
|
|
133 |
#define MSG_MOTION _UxGT("Gibanje")
|
|
|
134 |
#define MSG_FILAMENT _UxGT("Filament")
|
|
|
135 |
#define MSG_VOLUMETRIC_ENABLED _UxGT("E in mm3")
|
|
|
136 |
#define MSG_FILAMENT_DIAM _UxGT("Fil. Dia.")
|
|
|
137 |
#define MSG_CONTRAST _UxGT("Kontrast LCD-a")
|
|
|
138 |
#define MSG_STORE_EEPROM _UxGT("Pohrani u memoriju")
|
|
|
139 |
#define MSG_LOAD_EEPROM _UxGT("Učitaj memoriju")
|
|
|
140 |
#define MSG_RESTORE_FAILSAFE _UxGT("Učitaj failsafe")
|
|
|
141 |
#define MSG_REFRESH _UxGT("Osvježi")
|
|
|
142 |
#define MSG_WATCH _UxGT("Info screen")
|
|
|
143 |
#define MSG_PREPARE _UxGT("Pripremi")
|
|
|
144 |
#define MSG_TUNE _UxGT("Tune")
|
|
|
145 |
#define MSG_PAUSE_PRINT _UxGT("Pauziraj print")
|
|
|
146 |
#define MSG_RESUME_PRINT _UxGT("Nastavi print")
|
|
|
147 |
#define MSG_STOP_PRINT _UxGT("Zaustavi print")
|
|
|
148 |
#define MSG_CARD_MENU _UxGT("Printaj s SD kartice")
|
|
|
149 |
#define MSG_NO_CARD _UxGT("Nema SD kartice")
|
|
|
150 |
#define MSG_DWELL _UxGT("Sleep...")
|
|
|
151 |
#define MSG_USERWAIT _UxGT("Čekaj korisnika...")
|
|
|
152 |
#define MSG_PRINT_ABORTED _UxGT("Print otkazan")
|
|
|
153 |
#define MSG_NO_MOVE _UxGT("No move.")
|
|
|
154 |
#define MSG_KILLED _UxGT("KILLED. ")
|
|
|
155 |
#define MSG_STOPPED _UxGT("ZAUSTAVLJEN. ")
|
|
|
156 |
#define MSG_CONTROL_RETRACT _UxGT("Retract mm")
|
|
|
157 |
#define MSG_CONTROL_RETRACT_SWAP _UxGT("Swap Re.mm")
|
|
|
158 |
#define MSG_CONTROL_RETRACTF _UxGT("Retract V")
|
|
|
159 |
#define MSG_CONTROL_RETRACT_ZLIFT _UxGT("Hop mm")
|
|
|
160 |
#define MSG_CONTROL_RETRACT_RECOVER _UxGT("UnRet mm")
|
|
|
161 |
#define MSG_CONTROL_RETRACT_RECOVER_SWAP _UxGT("S UnRet mm")
|
|
|
162 |
#define MSG_CONTROL_RETRACT_RECOVERF _UxGT("UnRet V")
|
|
|
163 |
#define MSG_AUTORETRACT _UxGT("AutoRetr.")
|
|
|
164 |
#define MSG_FILAMENTCHANGE _UxGT("Promijeni filament")
|
|
|
165 |
#define MSG_INIT_SDCARD _UxGT("Init. SD karticu")
|
|
|
166 |
#define MSG_CNG_SDCARD _UxGT("Promijeni SD karticu")
|
|
|
167 |
#define MSG_ZPROBE_OUT _UxGT("Z probe out. bed")
|
|
|
168 |
#define MSG_BLTOUCH_SELFTEST _UxGT("BLTouch Self-Test")
|
|
|
169 |
#define MSG_BLTOUCH_RESET _UxGT("Reset BLTouch")
|
|
|
170 |
#define MSG_HOME _UxGT("Home") // Used as MSG_HOME " " MSG_X MSG_Y MSG_Z " " MSG_FIRST
|
|
|
171 |
#define MSG_FIRST _UxGT("first")
|
|
|
172 |
#define MSG_ZPROBE_ZOFFSET _UxGT("Z Offset")
|
|
|
173 |
#define MSG_BABYSTEP_X _UxGT("Babystep X")
|
|
|
174 |
#define MSG_BABYSTEP_Y _UxGT("Babystep Y")
|
|
|
175 |
#define MSG_BABYSTEP_Z _UxGT("Babystep Z")
|
|
|
176 |
#define MSG_ENDSTOP_ABORT _UxGT("Endstop abort")
|
|
|
177 |
#define MSG_HEATING_FAILED_LCD _UxGT("Grijanje neuspješno")
|
|
|
178 |
#define MSG_ERR_REDUNDANT_TEMP _UxGT("Err: REDUNDANT TEMP")
|
|
|
179 |
#define MSG_THERMAL_RUNAWAY _UxGT("THERMAL RUNAWAY")
|
|
|
180 |
#define MSG_ERR_MAXTEMP _UxGT("Err: MAXTEMP")
|
|
|
181 |
#define MSG_ERR_MINTEMP _UxGT("Err: MINTEMP")
|
|
|
182 |
#define MSG_ERR_MAXTEMP_BED _UxGT("Err: MAXTEMP BED")
|
|
|
183 |
#define MSG_ERR_MINTEMP_BED _UxGT("Err: MINTEMP BED")
|
|
|
184 |
#define MSG_ERR_Z_HOMING MSG_HOME _UxGT(" ") MSG_X MSG_Y _UxGT(" ") MSG_FIRST
|
|
|
185 |
#define MSG_HALTED _UxGT("PRINTER HALTED")
|
|
|
186 |
#define MSG_PLEASE_RESET _UxGT("Please reset")
|
|
|
187 |
#define MSG_SHORT_DAY _UxGT("d") // One character only
|
|
|
188 |
#define MSG_SHORT_HOUR _UxGT("h") // One character only
|
|
|
189 |
#define MSG_SHORT_MINUTE _UxGT("m") // One character only
|
|
|
190 |
#define MSG_HEATING _UxGT("Grijanje...")
|
|
|
191 |
#define MSG_BED_HEATING _UxGT("Grijanje Bed-a...")
|
|
|
192 |
#define MSG_DELTA_CALIBRATE _UxGT("Delta Kalibracija")
|
|
|
193 |
#define MSG_DELTA_CALIBRATE_X _UxGT("Kalibriraj X")
|
|
|
194 |
#define MSG_DELTA_CALIBRATE_Y _UxGT("Kalibriraj Y")
|
|
|
195 |
#define MSG_DELTA_CALIBRATE_Z _UxGT("Kalibriraj Z")
|
|
|
196 |
#define MSG_DELTA_CALIBRATE_CENTER _UxGT("Kalibriraj Središte")
|
|
|
197 |
#define MSG_INFO_MENU _UxGT("O printeru")
|
|
|
198 |
#define MSG_INFO_PRINTER_MENU _UxGT("Podaci o printeru")
|
|
|
199 |
#define MSG_INFO_STATS_MENU _UxGT("Statistika printera")
|
|
|
200 |
#define MSG_INFO_BOARD_MENU _UxGT("Podaci o elektronici")
|
|
|
201 |
#define MSG_INFO_THERMISTOR_MENU _UxGT("Termistori")
|
|
|
202 |
#define MSG_INFO_EXTRUDERS _UxGT("Extruderi")
|
|
|
203 |
#define MSG_INFO_BAUDRATE _UxGT("Baud")
|
|
|
204 |
#define MSG_INFO_PROTOCOL _UxGT("Protokol")
|
|
|
205 |
#define MSG_CASE_LIGHT _UxGT("Osvjetljenje")
|
|
|
206 |
|
|
|
207 |
#if LCD_WIDTH >= 20
|
|
|
208 |
#define MSG_INFO_PRINT_COUNT _UxGT("Broj printova")
|
|
|
209 |
#define MSG_INFO_COMPLETED_PRINTS _UxGT("Završeni")
|
|
|
210 |
#define MSG_INFO_PRINT_TIME _UxGT("Ukupno printanja")
|
|
|
211 |
#define MSG_INFO_PRINT_LONGEST _UxGT("Najduži print")
|
|
|
212 |
#define MSG_INFO_PRINT_FILAMENT _UxGT("Extrudirano ukupno")
|
|
|
213 |
#else
|
|
|
214 |
#define MSG_INFO_PRINT_COUNT _UxGT("Printovi")
|
|
|
215 |
#define MSG_INFO_COMPLETED_PRINTS _UxGT("Završeni")
|
|
|
216 |
#define MSG_INFO_PRINT_TIME _UxGT("Ukupno")
|
|
|
217 |
#define MSG_INFO_PRINT_LONGEST _UxGT("Najduži")
|
|
|
218 |
#define MSG_INFO_PRINT_FILAMENT _UxGT("Extrudirano")
|
|
|
219 |
#endif
|
|
|
220 |
|
|
|
221 |
#define MSG_INFO_MIN_TEMP _UxGT("Min Temp")
|
|
|
222 |
#define MSG_INFO_MAX_TEMP _UxGT("Max Temp")
|
|
|
223 |
#define MSG_INFO_PSU _UxGT("Napajanje")
|
|
|
224 |
#define MSG_DRIVE_STRENGTH _UxGT("Drive Strength")
|
|
|
225 |
#define MSG_DAC_PERCENT _UxGT("Driver %")
|
|
|
226 |
#define MSG_DAC_EEPROM_WRITE _UxGT("DAC EEPROM Write")
|
|
|
227 |
|
|
|
228 |
#define MSG_FILAMENT_CHANGE_OPTION_RESUME _UxGT("Nastavi print")
|
|
|
229 |
|
|
|
230 |
#if LCD_HEIGHT >= 4
|
|
|
231 |
// Up to 3 lines allowed
|
|
|
232 |
#define MSG_FILAMENT_CHANGE_INIT_1 _UxGT("Čekaj početak")
|
|
|
233 |
#define MSG_FILAMENT_CHANGE_INIT_2 _UxGT("filamenta")
|
|
|
234 |
#define MSG_FILAMENT_CHANGE_INIT_3 _UxGT("promijeni")
|
|
|
235 |
#define MSG_FILAMENT_CHANGE_UNLOAD_1 _UxGT("Čekaj")
|
|
|
236 |
#define MSG_FILAMENT_CHANGE_UNLOAD_2 _UxGT("filament unload")
|
|
|
237 |
#define MSG_FILAMENT_CHANGE_INSERT_1 _UxGT("Umetni filament")
|
|
|
238 |
#define MSG_FILAMENT_CHANGE_INSERT_2 _UxGT("i pritisni tipku")
|
|
|
239 |
#define MSG_FILAMENT_CHANGE_INSERT_3 _UxGT("za nastavak...")
|
|
|
240 |
#define MSG_FILAMENT_CHANGE_LOAD_1 _UxGT("Pričekaj")
|
|
|
241 |
#define MSG_FILAMENT_CHANGE_LOAD_2 _UxGT("filament load")
|
|
|
242 |
#define MSG_FILAMENT_CHANGE_RESUME_1 _UxGT("Wait for print")
|
|
|
243 |
#define MSG_FILAMENT_CHANGE_RESUME_2 _UxGT("to resume")
|
|
|
244 |
#else // LCD_HEIGHT < 4
|
|
|
245 |
// Up to 2 lines allowed
|
|
|
246 |
#define MSG_FILAMENT_CHANGE_INIT_1 _UxGT("Pričekaj...")
|
|
|
247 |
#define MSG_FILAMENT_CHANGE_UNLOAD_1 _UxGT("Ejecting...")
|
|
|
248 |
#define MSG_FILAMENT_CHANGE_INSERT_1 _UxGT("Insert and Click")
|
|
|
249 |
#define MSG_FILAMENT_CHANGE_LOAD_1 _UxGT("Loading...")
|
|
|
250 |
#define MSG_FILAMENT_CHANGE_RESUME_1 _UxGT("Nastavljam...")
|
|
|
251 |
#endif // LCD_HEIGHT < 4
|
|
|
252 |
|
|
|
253 |
#endif // LANGUAGE_HR_H
|