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 |
* Czech
|
|
|
25 |
*
|
|
|
26 |
* LCD Menu Messages
|
|
|
27 |
* See also http://marlinfw.org/docs/development/lcd_language.html
|
|
|
28 |
*
|
|
|
29 |
* Translated by Petr Zahradnik, Computer Laboratory
|
|
|
30 |
* Blog and video blog Zahradnik se bavi
|
|
|
31 |
* http://www.zahradniksebavi.cz
|
|
|
32 |
*
|
|
|
33 |
*/
|
|
|
34 |
#ifndef LANGUAGE_CZ_H
|
|
|
35 |
#define LANGUAGE_CZ_H
|
|
|
36 |
|
|
|
37 |
#define DISPLAY_CHARSET_ISO10646_1
|
|
|
38 |
|
|
|
39 |
#define WELCOME_MSG MACHINE_NAME _UxGT(" pripraven.")
|
|
|
40 |
#define MSG_BACK _UxGT("Zpet")
|
|
|
41 |
#define MSG_SD_INSERTED _UxGT("Karta vlozena")
|
|
|
42 |
#define MSG_SD_REMOVED _UxGT("Karta vyjmuta")
|
|
|
43 |
#define MSG_LCD_ENDSTOPS _UxGT("Endstopy") // max 8 znaku
|
|
|
44 |
#define MSG_LCD_SOFT_ENDSTOPS _UxGT("Soft Endstopy")
|
|
|
45 |
#define MSG_MAIN _UxGT("Hlavni nabidka")
|
|
|
46 |
#define MSG_AUTOSTART _UxGT("Autostart")
|
|
|
47 |
#define MSG_DISABLE_STEPPERS _UxGT("Uvolnit motory")
|
|
|
48 |
#define MSG_DEBUG_MENU _UxGT("Nabidka ladeni")
|
|
|
49 |
#if LCD_WIDTH >= 20
|
|
|
50 |
#define MSG_PROGRESS_BAR_TEST _UxGT("Test ukaz. prubehu")
|
|
|
51 |
#else
|
|
|
52 |
#define MSG_PROGRESS_BAR_TEST _UxGT("Test uk. prubehu")
|
|
|
53 |
#endif
|
|
|
54 |
#define MSG_AUTO_HOME _UxGT("Domovska pozice")
|
|
|
55 |
#define MSG_AUTO_HOME_X _UxGT("Domu osa X")
|
|
|
56 |
#define MSG_AUTO_HOME_Y _UxGT("Domu osa Y")
|
|
|
57 |
#define MSG_AUTO_HOME_Z _UxGT("Domu osa Z")
|
|
|
58 |
#define MSG_TMC_Z_CALIBRATION _UxGT("Kalibrovat Z")
|
|
|
59 |
#define MSG_LEVEL_BED_HOMING _UxGT("Mereni podlozky")
|
|
|
60 |
#define MSG_LEVEL_BED_WAITING _UxGT("Kliknutim spustte")
|
|
|
61 |
#define MSG_LEVEL_BED_NEXT_POINT _UxGT("Dalsi bod")
|
|
|
62 |
#define MSG_LEVEL_BED_DONE _UxGT("Mereni hotovo!")
|
|
|
63 |
#define MSG_Z_FADE_HEIGHT _UxGT("Vyska srovnavani")
|
|
|
64 |
#define MSG_SET_HOME_OFFSETS _UxGT("Nastavit ofsety")
|
|
|
65 |
#define MSG_HOME_OFFSETS_APPLIED _UxGT("Ofsety nastaveny")
|
|
|
66 |
#define MSG_SET_ORIGIN _UxGT("Nastavit pocatek")
|
|
|
67 |
#define MSG_PREHEAT_1 _UxGT("Zahrat PLA")
|
|
|
68 |
#define MSG_PREHEAT_1_N MSG_PREHEAT_1 _UxGT(" ")
|
|
|
69 |
#define MSG_PREHEAT_1_ALL MSG_PREHEAT_1 _UxGT(" vse")
|
|
|
70 |
#define MSG_PREHEAT_1_END MSG_PREHEAT_1 _UxGT(" hotend")
|
|
|
71 |
#define MSG_PREHEAT_1_BEDONLY MSG_PREHEAT_1 _UxGT(" podloz")
|
|
|
72 |
#define MSG_PREHEAT_1_SETTINGS MSG_PREHEAT_1 _UxGT(" nast")
|
|
|
73 |
#define MSG_PREHEAT_2 _UxGT("Zahrat ABS")
|
|
|
74 |
#define MSG_PREHEAT_2_N MSG_PREHEAT_2 _UxGT(" ")
|
|
|
75 |
#define MSG_PREHEAT_2_ALL MSG_PREHEAT_2 _UxGT(" vse")
|
|
|
76 |
#define MSG_PREHEAT_2_END MSG_PREHEAT_2 _UxGT(" hotend")
|
|
|
77 |
#define MSG_PREHEAT_2_BEDONLY MSG_PREHEAT_2 _UxGT(" podloz")
|
|
|
78 |
#define MSG_PREHEAT_2_SETTINGS MSG_PREHEAT_2 _UxGT(" nast")
|
|
|
79 |
#define MSG_COOLDOWN _UxGT("Zchladit")
|
|
|
80 |
#define MSG_SWITCH_PS_ON _UxGT("Zapnout napajeni")
|
|
|
81 |
#define MSG_SWITCH_PS_OFF _UxGT("Vypnout napajeni")
|
|
|
82 |
#define MSG_EXTRUDE _UxGT("Vytlacit (extr.)")
|
|
|
83 |
#define MSG_RETRACT _UxGT("Zatlacit (retr.)")
|
|
|
84 |
#define MSG_MOVE_AXIS _UxGT("Posunout osy")
|
|
|
85 |
#define MSG_BED_LEVELING _UxGT("Vyrovnat podlozku")
|
|
|
86 |
#define MSG_LEVEL_BED _UxGT("Vyrovnat podlozku")
|
|
|
87 |
#define MSG_LEVEL_CORNERS _UxGT("Vyrovnat rohy")
|
|
|
88 |
#define MSG_NEXT_CORNER _UxGT("Dalsi roh")
|
|
|
89 |
#define MSG_EDITING_STOPPED _UxGT("Konec uprav site")
|
|
|
90 |
|
|
|
91 |
#define MSG_UBL_DOING_G29 _UxGT("Provadim G29")
|
|
|
92 |
#define MSG_UBL_UNHOMED _UxGT("Prejedte domu")
|
|
|
93 |
#define MSG_UBL_TOOLS _UxGT("UBL nastroje")
|
|
|
94 |
#define MSG_UBL_LEVEL_BED _UxGT("Unified Bed Leveling")
|
|
|
95 |
#define MSG_UBL_MANUAL_MESH _UxGT("Manualni sit bodu")
|
|
|
96 |
#define MSG_UBL_BC_INSERT _UxGT("Vlozte kartu, zmerte")
|
|
|
97 |
#define MSG_UBL_BC_INSERT2 _UxGT("Zmerte")
|
|
|
98 |
#define MSG_UBL_BC_REMOVE _UxGT("Odstrante a zmerte")
|
|
|
99 |
#define MSG_UBL_MOVING_TO_NEXT _UxGT("Presun na dalsi")
|
|
|
100 |
#define MSG_UBL_ACTIVATE_MESH _UxGT("Aktivovat UBL")
|
|
|
101 |
#define MSG_UBL_DEACTIVATE_MESH _UxGT("Deaktivovat UBL")
|
|
|
102 |
#define MSG_UBL_SET_BED_TEMP _UxGT("Teplota podlozky")
|
|
|
103 |
#define MSG_UBL_CUSTOM_BED_TEMP MSG_UBL_SET_BED_TEMP
|
|
|
104 |
#define MSG_UBL_SET_HOTEND_TEMP _UxGT("Teplota hotendu")
|
|
|
105 |
#define MSG_UBL_CUSTOM_HOTEND_TEMP MSG_UBL_SET_HOTEND_TEMP
|
|
|
106 |
#define MSG_UBL_MESH_EDIT _UxGT("Uprava site bodu")
|
|
|
107 |
#define MSG_UBL_EDIT_CUSTOM_MESH _UxGT("Upravit vlastni sit")
|
|
|
108 |
#define MSG_UBL_FINE_TUNE_MESH _UxGT("Doladit sit bodu")
|
|
|
109 |
#define MSG_UBL_DONE_EDITING_MESH _UxGT("Konec uprav site")
|
|
|
110 |
#define MSG_UBL_BUILD_CUSTOM_MESH _UxGT("Vlastni sit")
|
|
|
111 |
#define MSG_UBL_BUILD_MESH_MENU _UxGT("Vytvorit sit")
|
|
|
112 |
#define MSG_UBL_BUILD_PLA_MESH _UxGT("Sit bodu PLA")
|
|
|
113 |
#define MSG_UBL_BUILD_ABS_MESH _UxGT("Sit bodu ABS")
|
|
|
114 |
#define MSG_UBL_BUILD_COLD_MESH _UxGT("Studena sit bodu")
|
|
|
115 |
#define MSG_UBL_MESH_HEIGHT_ADJUST _UxGT("Upravit vysku site")
|
|
|
116 |
#define MSG_UBL_MESH_HEIGHT_AMOUNT _UxGT("Vyska")
|
|
|
117 |
#define MSG_UBL_VALIDATE_MESH_MENU _UxGT("Zkontrolovat sit")
|
|
|
118 |
#define MSG_UBL_VALIDATE_PLA_MESH _UxGT("Kontrola site PLA")
|
|
|
119 |
#define MSG_UBL_VALIDATE_ABS_MESH _UxGT("Kontrola site ABS")
|
|
|
120 |
#define MSG_UBL_VALIDATE_CUSTOM_MESH _UxGT("Kontrola vlast. site")
|
|
|
121 |
#define MSG_UBL_CONTINUE_MESH _UxGT("Pokracovat v siti")
|
|
|
122 |
#define MSG_UBL_MESH_LEVELING _UxGT("Sitove rovnani")
|
|
|
123 |
#define MSG_UBL_3POINT_MESH_LEVELING _UxGT("3-bodove rovnani")
|
|
|
124 |
#define MSG_UBL_GRID_MESH_LEVELING _UxGT("Mrizkove rovnani")
|
|
|
125 |
#define MSG_UBL_MESH_LEVEL _UxGT("Srovnat podlozku")
|
|
|
126 |
#define MSG_UBL_SIDE_POINTS _UxGT("Postranni body")
|
|
|
127 |
#define MSG_UBL_MAP_TYPE _UxGT("Typ site bodu")
|
|
|
128 |
#define MSG_UBL_OUTPUT_MAP _UxGT("Exportovat sit")
|
|
|
129 |
#define MSG_UBL_OUTPUT_MAP_HOST _UxGT("Exportovat do PC")
|
|
|
130 |
#define MSG_UBL_OUTPUT_MAP_CSV _UxGT("Exportovat do CSV")
|
|
|
131 |
#define MSG_UBL_OUTPUT_MAP_BACKUP _UxGT("Zaloha do PC")
|
|
|
132 |
#define MSG_UBL_INFO_UBL _UxGT("Info o UBL do PC")
|
|
|
133 |
#define MSG_UBL_EDIT_MESH_MENU _UxGT("Upravit sit bodu")
|
|
|
134 |
#define MSG_UBL_FILLIN_AMOUNT _UxGT("Hustota mrizky")
|
|
|
135 |
#define MSG_UBL_MANUAL_FILLIN _UxGT("Rucni hustota")
|
|
|
136 |
#define MSG_UBL_SMART_FILLIN _UxGT("Chytra hustota")
|
|
|
137 |
#define MSG_UBL_FILLIN_MESH _UxGT("Zaplnit mrizku")
|
|
|
138 |
#define MSG_UBL_INVALIDATE_ALL _UxGT("Zrusit vsechno")
|
|
|
139 |
#define MSG_UBL_INVALIDATE_CLOSEST _UxGT("Zrusit posledni")
|
|
|
140 |
#define MSG_UBL_FINE_TUNE_ALL _UxGT("Upravit vsechny")
|
|
|
141 |
#define MSG_UBL_FINE_TUNE_CLOSEST _UxGT("Upravit posledni")
|
|
|
142 |
#define MSG_UBL_STORAGE_MESH_MENU _UxGT("Uloziste siti")
|
|
|
143 |
#define MSG_UBL_STORAGE_SLOT _UxGT("Pametovy slot")
|
|
|
144 |
#define MSG_UBL_LOAD_MESH _UxGT("Nacist sit bodu")
|
|
|
145 |
#define MSG_UBL_SAVE_MESH _UxGT("Ulozit sit bodu")
|
|
|
146 |
#define MSG_MESH_LOADED _UxGT("Sit %i nactena")
|
|
|
147 |
#define MSG_MESH_SAVED _UxGT("Sit %i ulozena")
|
|
|
148 |
#define MSG_NO_STORAGE _UxGT("Nedostatek mista")
|
|
|
149 |
#define MSG_UBL_SAVE_ERROR _UxGT("Ch.: Ulozit UBL")
|
|
|
150 |
#define MSG_UBL_RESTORE_ERROR _UxGT("Ch.: Obnovit UBL")
|
|
|
151 |
#define MSG_UBL_Z_OFFSET_STOPPED _UxGT("Konec Z-Offsetu")
|
|
|
152 |
#define MSG_UBL_STEP_BY_STEP_MENU _UxGT("UBL Postupne")
|
|
|
153 |
|
|
|
154 |
#define MSG_LED_CONTROL _UxGT("Nastaveni LED")
|
|
|
155 |
#define MSG_LEDS _UxGT("Svetla")
|
|
|
156 |
#define MSG_LED_PRESETS _UxGT("Svetla Predvolby")
|
|
|
157 |
#define MSG_SET_LEDS_RED _UxGT("Cervena")
|
|
|
158 |
#define MSG_SET_LEDS_ORANGE _UxGT("Oranzova")
|
|
|
159 |
#define MSG_SET_LEDS_YELLOW _UxGT("Zluta")
|
|
|
160 |
#define MSG_SET_LEDS_GREEN _UxGT("Zelena")
|
|
|
161 |
#define MSG_SET_LEDS_BLUE _UxGT("Modra")
|
|
|
162 |
#define MSG_SET_LEDS_INDIGO _UxGT("Indigo")
|
|
|
163 |
#define MSG_SET_LEDS_VIOLET _UxGT("Fialova")
|
|
|
164 |
#define MSG_SET_LEDS_WHITE _UxGT("Bila")
|
|
|
165 |
#define MSG_SET_LEDS_DEFAULT _UxGT("Vychozi")
|
|
|
166 |
#define MSG_CUSTOM_LEDS _UxGT("Vlastni svetla")
|
|
|
167 |
#define MSG_INTENSITY_R _UxGT("Cervena intenzita")
|
|
|
168 |
#define MSG_INTENSITY_G _UxGT("Zelena intezita")
|
|
|
169 |
#define MSG_INTENSITY_B _UxGT("Modra intenzita")
|
|
|
170 |
#define MSG_INTENSITY_W _UxGT("Bila intenzita")
|
|
|
171 |
#define MSG_LED_BRIGHTNESS _UxGT("Jas")
|
|
|
172 |
|
|
|
173 |
#define MSG_USER_MENU _UxGT("Vlastni prikazy")
|
|
|
174 |
#define MSG_MOVING _UxGT("Posouvani...")
|
|
|
175 |
#define MSG_FREE_XY _UxGT("Uvolnit XY")
|
|
|
176 |
#define MSG_MOVE_X _UxGT("Posunout X")
|
|
|
177 |
#define MSG_MOVE_Y _UxGT("Posunout Y")
|
|
|
178 |
#define MSG_MOVE_Z _UxGT("Posunout Z")
|
|
|
179 |
#define MSG_MOVE_E _UxGT("Extruder")
|
|
|
180 |
#define MSG_MOVE_01MM _UxGT("Posunout o 0,1mm")
|
|
|
181 |
#define MSG_MOVE_1MM _UxGT("Posunout o 1mm")
|
|
|
182 |
#define MSG_MOVE_10MM _UxGT("Posunout o 10mm")
|
|
|
183 |
#define MSG_SPEED _UxGT("Rychlost")
|
|
|
184 |
#define MSG_BED_Z _UxGT("Vyska podl.")
|
|
|
185 |
#define MSG_NOZZLE _UxGT("Tryska")
|
|
|
186 |
#define MSG_BED _UxGT("Podlozka")
|
|
|
187 |
#define MSG_FAN_SPEED _UxGT("Rychlost vent.")
|
|
|
188 |
#define MSG_EXTRA_FAN_SPEED _UxGT("Rychlost ex. vent.")
|
|
|
189 |
#define MSG_FLOW _UxGT("Prutok")
|
|
|
190 |
#define MSG_CONTROL _UxGT("Ovladani")
|
|
|
191 |
#define MSG_MIN _UxGT(" ") LCD_STR_THERMOMETER _UxGT(" Min")
|
|
|
192 |
#define MSG_MAX _UxGT(" ") LCD_STR_THERMOMETER _UxGT(" Max")
|
|
|
193 |
#define MSG_FACTOR _UxGT(" ") LCD_STR_THERMOMETER _UxGT(" Fakt")
|
|
|
194 |
#define MSG_AUTOTEMP _UxGT("Autoteplota")
|
|
|
195 |
#define MSG_ON _UxGT("Zap")
|
|
|
196 |
#define MSG_OFF _UxGT("Vyp")
|
|
|
197 |
#define MSG_PID_P _UxGT("PID-P")
|
|
|
198 |
#define MSG_PID_I _UxGT("PID-I")
|
|
|
199 |
#define MSG_PID_D _UxGT("PID-D")
|
|
|
200 |
#define MSG_PID_C _UxGT("PID-C")
|
|
|
201 |
#define MSG_SELECT _UxGT("Vybrat")
|
|
|
202 |
#define MSG_ACC _UxGT("Zrychl")
|
|
|
203 |
#define MSG_JERK _UxGT("Jerk")
|
|
|
204 |
#if IS_KINEMATIC
|
|
|
205 |
#define MSG_VA_JERK _UxGT("Va-jerk")
|
|
|
206 |
#define MSG_VB_JERK _UxGT("Vb-jerk")
|
|
|
207 |
#define MSG_VC_JERK _UxGT("Vc-jerk")
|
|
|
208 |
#else
|
|
|
209 |
#define MSG_VA_JERK _UxGT("Vx-jerk")
|
|
|
210 |
#define MSG_VB_JERK _UxGT("Vy-jerk")
|
|
|
211 |
#define MSG_VC_JERK _UxGT("Vz-jerk")
|
|
|
212 |
#endif
|
|
|
213 |
#define MSG_VE_JERK _UxGT("Ve-jerk")
|
|
|
214 |
#define MSG_JUNCTION_DEVIATION _UxGT("Odchylka spoje")
|
|
|
215 |
#define MSG_VELOCITY _UxGT("Rychlost")
|
|
|
216 |
#define MSG_VMAX _UxGT("Vmax ")
|
|
|
217 |
#define MSG_VMIN _UxGT("Vmin")
|
|
|
218 |
#define MSG_VTRAV_MIN _UxGT("VTrav min")
|
|
|
219 |
#define MSG_ACCELERATION _UxGT("Akcelerace")
|
|
|
220 |
#define MSG_AMAX _UxGT("Amax ")
|
|
|
221 |
#define MSG_A_RETRACT _UxGT("A-retrakt")
|
|
|
222 |
#define MSG_A_TRAVEL _UxGT("A-prejezd")
|
|
|
223 |
#define MSG_STEPS_PER_MM _UxGT("Kroku/mm")
|
|
|
224 |
#if IS_KINEMATIC
|
|
|
225 |
#define MSG_ASTEPS _UxGT("Akroku/mm")
|
|
|
226 |
#define MSG_BSTEPS _UxGT("Bkroku/mm")
|
|
|
227 |
#define MSG_CSTEPS _UxGT("Ckroku/mm")
|
|
|
228 |
#else
|
|
|
229 |
#define MSG_ASTEPS _UxGT("Xkroku/mm")
|
|
|
230 |
#define MSG_BSTEPS _UxGT("Ykroku/mm")
|
|
|
231 |
#define MSG_CSTEPS _UxGT("Zkroku/mm")
|
|
|
232 |
#endif
|
|
|
233 |
#define MSG_ESTEPS _UxGT("Ekroku/mm")
|
|
|
234 |
#define MSG_E1STEPS _UxGT("E1kroku/mm")
|
|
|
235 |
#define MSG_E2STEPS _UxGT("E2kroku/mm")
|
|
|
236 |
#define MSG_E3STEPS _UxGT("E3kroku/mm")
|
|
|
237 |
#define MSG_E4STEPS _UxGT("E4kroku/mm")
|
|
|
238 |
#define MSG_E5STEPS _UxGT("E5kroku/mm")
|
|
|
239 |
#define MSG_TEMPERATURE _UxGT("Teplota")
|
|
|
240 |
#define MSG_MOTION _UxGT("Pohyb")
|
|
|
241 |
#define MSG_FILAMENT _UxGT("Filament")
|
|
|
242 |
#define MSG_VOLUMETRIC_ENABLED _UxGT("E na mm3")
|
|
|
243 |
#define MSG_FILAMENT_DIAM _UxGT("Fil. Prum.")
|
|
|
244 |
#define MSG_FILAMENT_UNLOAD _UxGT("Vysunout mm")
|
|
|
245 |
#define MSG_FILAMENT_LOAD _UxGT("Zavest mm")
|
|
|
246 |
#define MSG_ADVANCE_K _UxGT("K pro posun")
|
|
|
247 |
#define MSG_CONTRAST _UxGT("Kontrast LCD")
|
|
|
248 |
#define MSG_STORE_EEPROM _UxGT("Ulozit nastaveni")
|
|
|
249 |
#define MSG_LOAD_EEPROM _UxGT("Nacist nastaveni")
|
|
|
250 |
#define MSG_RESTORE_FAILSAFE _UxGT("Obnovit vychozi")
|
|
|
251 |
#define MSG_INIT_EEPROM _UxGT("Inic. EEPROM")
|
|
|
252 |
#define MSG_REFRESH _UxGT("Obnovit")
|
|
|
253 |
#define MSG_WATCH _UxGT("Info obrazovka")
|
|
|
254 |
#define MSG_PREPARE _UxGT("Priprava tisku")
|
|
|
255 |
#define MSG_TUNE _UxGT("Doladeni tisku")
|
|
|
256 |
#define MSG_PAUSE_PRINT _UxGT("Pozastavit tisk")
|
|
|
257 |
#define MSG_RESUME_PRINT _UxGT("Obnovit tisk")
|
|
|
258 |
#define MSG_STOP_PRINT _UxGT("Zastavit tisk")
|
|
|
259 |
#define MSG_POWER_LOSS_RECOVERY _UxGT("Obnova vypadku")
|
|
|
260 |
#define MSG_CARD_MENU _UxGT("Tisknout z SD")
|
|
|
261 |
#define MSG_NO_CARD _UxGT("Zadna SD karta")
|
|
|
262 |
#define MSG_DWELL _UxGT("Uspano...")
|
|
|
263 |
#define MSG_USERWAIT _UxGT("Cekani na uziv...")
|
|
|
264 |
#define MSG_PRINT_PAUSED _UxGT("Tisk pozastaven")
|
|
|
265 |
#define MSG_PRINTING _UxGT("Tisknu...")
|
|
|
266 |
#define MSG_PRINT_ABORTED _UxGT("Tisk zrusen")
|
|
|
267 |
#define MSG_NO_MOVE _UxGT("Zadny pohyb.")
|
|
|
268 |
#define MSG_KILLED _UxGT("PRERUSENO. ")
|
|
|
269 |
#define MSG_STOPPED _UxGT("ZASTAVENO. ")
|
|
|
270 |
#define MSG_CONTROL_RETRACT _UxGT("Retrakt mm")
|
|
|
271 |
#define MSG_CONTROL_RETRACT_SWAP _UxGT("Vymena Re.mm")
|
|
|
272 |
#define MSG_CONTROL_RETRACTF _UxGT("Retraktovat V")
|
|
|
273 |
#define MSG_CONTROL_RETRACT_ZLIFT _UxGT("Zvednuti Z mm")
|
|
|
274 |
#define MSG_CONTROL_RETRACT_RECOVER _UxGT("UnRet mm")
|
|
|
275 |
#define MSG_CONTROL_RETRACT_RECOVER_SWAP _UxGT("S UnRet mm")
|
|
|
276 |
#define MSG_CONTROL_RETRACT_RECOVERF _UxGT("UnRet V")
|
|
|
277 |
#define MSG_CONTROL_RETRACT_RECOVER_SWAPF _UxGT("S UnRet V")
|
|
|
278 |
#define MSG_AUTORETRACT _UxGT("AutoRetr.")
|
|
|
279 |
#define MSG_FILAMENTCHANGE _UxGT("Vymenit filament")
|
|
|
280 |
#define MSG_FILAMENTLOAD _UxGT("Zavest filament")
|
|
|
281 |
#define MSG_FILAMENTUNLOAD _UxGT("Vysunout filament")
|
|
|
282 |
#define MSG_FILAMENTUNLOAD_ALL _UxGT("Vysunout vse")
|
|
|
283 |
|
|
|
284 |
#define MSG_INIT_SDCARD _UxGT("Nacist SD kartu")
|
|
|
285 |
#define MSG_CNG_SDCARD _UxGT("Vymenit SD kartu")
|
|
|
286 |
#define MSG_ZPROBE_OUT _UxGT("Sonda Z mimo podl")
|
|
|
287 |
#define MSG_SKEW_FACTOR _UxGT("Faktor zkoseni")
|
|
|
288 |
#define MSG_BLTOUCH _UxGT("BLTouch")
|
|
|
289 |
#define MSG_BLTOUCH_SELFTEST _UxGT("BLTouch Self-Test")
|
|
|
290 |
#define MSG_BLTOUCH_RESET _UxGT("BLTouch Reset")
|
|
|
291 |
#define MSG_BLTOUCH_DEPLOY _UxGT("BLTouch Vysunout")
|
|
|
292 |
#define MSG_BLTOUCH_STOW _UxGT("BLTouch Zasunout")
|
|
|
293 |
#define MSG_HOME _UxGT("Domu") // Used as MSG_HOME " " MSG_X MSG_Y MSG_Z " " MSG_FIRST
|
|
|
294 |
#define MSG_FIRST _UxGT("prvni")
|
|
|
295 |
#define MSG_ZPROBE_ZOFFSET _UxGT("Z ofset")
|
|
|
296 |
#define MSG_BABYSTEP_X _UxGT("Babystep X")
|
|
|
297 |
#define MSG_BABYSTEP_Y _UxGT("Babystep Y")
|
|
|
298 |
#define MSG_BABYSTEP_Z _UxGT("Babystep Z")
|
|
|
299 |
#define MSG_ENDSTOP_ABORT _UxGT("Endstop abort")
|
|
|
300 |
#define MSG_HEATING_FAILED_LCD _UxGT("Chyba zahrivani")
|
|
|
301 |
#define MSG_HEATING_FAILED_LCD_BED _UxGT("Chyba zahr.podl.")
|
|
|
302 |
#define MSG_ERR_REDUNDANT_TEMP _UxGT("REDUND. TEPLOTA")
|
|
|
303 |
#define MSG_THERMAL_RUNAWAY _UxGT("TEPLOTNI UNIK")
|
|
|
304 |
#define MSG_THERMAL_RUNAWAY_BED _UxGT("TEPL. UNIK PODL.")
|
|
|
305 |
#define MSG_ERR_MAXTEMP _UxGT("VYSOKA TEPLOTA")
|
|
|
306 |
#define MSG_ERR_MINTEMP _UxGT("NIZKA TEPLOTA")
|
|
|
307 |
#define MSG_ERR_MAXTEMP_BED _UxGT("VYS. TEPL. PODL.")
|
|
|
308 |
#define MSG_ERR_MINTEMP_BED _UxGT("NIZ. TEPL. PODL.")
|
|
|
309 |
#define MSG_ERR_Z_HOMING MSG_HOME _UxGT(" ") MSG_X MSG_Y _UxGT(" ") MSG_FIRST
|
|
|
310 |
#define MSG_HALTED _UxGT("TISK. ZASTAVENA")
|
|
|
311 |
#define MSG_PLEASE_RESET _UxGT("Provedte reset")
|
|
|
312 |
#define MSG_SHORT_DAY _UxGT("d")
|
|
|
313 |
#define MSG_SHORT_HOUR _UxGT("h")
|
|
|
314 |
#define MSG_SHORT_MINUTE _UxGT("m")
|
|
|
315 |
#define MSG_HEATING _UxGT("Zahrivani...")
|
|
|
316 |
#define MSG_COOLING _UxGT("Chlazeni...")
|
|
|
317 |
#if LCD_WIDTH >= 20
|
|
|
318 |
#define MSG_BED_HEATING _UxGT("Zahrivani podlozky")
|
|
|
319 |
#else
|
|
|
320 |
#define MSG_BED_HEATING _UxGT("Zahrivani podl.")
|
|
|
321 |
#endif
|
|
|
322 |
#if LCD_WIDTH >= 20
|
|
|
323 |
#define MSG_BED_COOLING _UxGT("Chlazeni podlozky")
|
|
|
324 |
#else
|
|
|
325 |
#define MSG_BED_COOLING _UxGT("Chlazeni podl.")
|
|
|
326 |
#endif
|
|
|
327 |
#define MSG_DELTA_CALIBRATE _UxGT("Delta Kalibrace")
|
|
|
328 |
#define MSG_DELTA_CALIBRATE_X _UxGT("Kalibrovat X")
|
|
|
329 |
#define MSG_DELTA_CALIBRATE_Y _UxGT("Kalibrovat Y")
|
|
|
330 |
#define MSG_DELTA_CALIBRATE_Z _UxGT("Kalibrovat Z")
|
|
|
331 |
#define MSG_DELTA_CALIBRATE_CENTER _UxGT("Kalibrovat Stred")
|
|
|
332 |
#define MSG_DELTA_SETTINGS _UxGT("Delta nastaveni")
|
|
|
333 |
#define MSG_DELTA_AUTO_CALIBRATE _UxGT("Autokalibrace")
|
|
|
334 |
#define MSG_DELTA_HEIGHT_CALIBRATE _UxGT("Nast.vysku delty")
|
|
|
335 |
#define MSG_DELTA_Z_OFFSET_CALIBRATE _UxGT("Nast. Z-ofset")
|
|
|
336 |
#define MSG_DELTA_DIAG_ROD _UxGT("Diag rameno")
|
|
|
337 |
#define MSG_DELTA_HEIGHT _UxGT("Vyska")
|
|
|
338 |
#define MSG_DELTA_RADIUS _UxGT("Polomer")
|
|
|
339 |
#define MSG_INFO_MENU _UxGT("O tiskarne")
|
|
|
340 |
#define MSG_INFO_PRINTER_MENU _UxGT("Info o tiskarne")
|
|
|
341 |
#define MSG_3POINT_LEVELING _UxGT("3-bodove rovnani")
|
|
|
342 |
#define MSG_LINEAR_LEVELING _UxGT("Linearni rovnani")
|
|
|
343 |
#define MSG_BILINEAR_LEVELING _UxGT("Bilinearni rovnani")
|
|
|
344 |
#define MSG_UBL_LEVELING _UxGT("Unified Bed Leveling")
|
|
|
345 |
#define MSG_MESH_LEVELING _UxGT("Mrizkove rovnani")
|
|
|
346 |
#define MSG_INFO_STATS_MENU _UxGT("Statistika")
|
|
|
347 |
#define MSG_INFO_BOARD_MENU _UxGT("Info o desce")
|
|
|
348 |
#define MSG_INFO_THERMISTOR_MENU _UxGT("Termistory")
|
|
|
349 |
#define MSG_INFO_EXTRUDERS _UxGT("Extrudery")
|
|
|
350 |
#define MSG_INFO_BAUDRATE _UxGT("Rychlost")
|
|
|
351 |
#define MSG_INFO_PROTOCOL _UxGT("Protokol")
|
|
|
352 |
#define MSG_CASE_LIGHT _UxGT("Osvetleni")
|
|
|
353 |
#define MSG_CASE_LIGHT_BRIGHTNESS _UxGT("Jas svetla")
|
|
|
354 |
|
|
|
355 |
#if LCD_WIDTH >= 20
|
|
|
356 |
#define MSG_INFO_PRINT_COUNT _UxGT("Pocet tisku")
|
|
|
357 |
#define MSG_INFO_COMPLETED_PRINTS _UxGT("Dokonceno")
|
|
|
358 |
#define MSG_INFO_PRINT_TIME _UxGT("Celkovy cas")
|
|
|
359 |
#define MSG_INFO_PRINT_LONGEST _UxGT("Nejdelsi tisk")
|
|
|
360 |
#define MSG_INFO_PRINT_FILAMENT _UxGT("Celkem vytlaceno")
|
|
|
361 |
#else
|
|
|
362 |
#define MSG_INFO_PRINT_COUNT _UxGT("Tisky")
|
|
|
363 |
#define MSG_INFO_COMPLETED_PRINTS _UxGT("Hotovo")
|
|
|
364 |
#define MSG_INFO_PRINT_TIME _UxGT("Cas")
|
|
|
365 |
#define MSG_INFO_PRINT_LONGEST _UxGT("Nejdelsi")
|
|
|
366 |
#define MSG_INFO_PRINT_FILAMENT _UxGT("Vytlaceno")
|
|
|
367 |
#endif
|
|
|
368 |
|
|
|
369 |
#define MSG_INFO_MIN_TEMP _UxGT("Teplota min")
|
|
|
370 |
#define MSG_INFO_MAX_TEMP _UxGT("Teplota max")
|
|
|
371 |
#define MSG_INFO_PSU _UxGT("Nap. zdroj")
|
|
|
372 |
#define MSG_DRIVE_STRENGTH _UxGT("Buzeni motoru")
|
|
|
373 |
#define MSG_DAC_PERCENT _UxGT("Motor %")
|
|
|
374 |
#define MSG_DAC_EEPROM_WRITE _UxGT("Ulozit do EEPROM")
|
|
|
375 |
#define MSG_FILAMENT_CHANGE_HEADER_PAUSE _UxGT("TISK POZASTAVEN")
|
|
|
376 |
#define MSG_FILAMENT_CHANGE_HEADER_LOAD _UxGT("ZAVEDENI FILAMENTU")
|
|
|
377 |
#define MSG_FILAMENT_CHANGE_HEADER_UNLOAD _UxGT("VYSUNUTI FILAMENTU")
|
|
|
378 |
#define MSG_FILAMENT_CHANGE_OPTION_HEADER _UxGT("MOZNOSTI OBNOVENI:")
|
|
|
379 |
#define MSG_FILAMENT_CHANGE_OPTION_PURGE _UxGT("Vytlacit vic")
|
|
|
380 |
#define MSG_FILAMENT_CHANGE_OPTION_RESUME _UxGT("Obnovit tisk")
|
|
|
381 |
#define MSG_FILAMENT_CHANGE_NOZZLE _UxGT(" Tryska: ")
|
|
|
382 |
#define MSG_ERR_HOMING_FAILED _UxGT("Parkovani selhalo")
|
|
|
383 |
#define MSG_ERR_PROBING_FAILED _UxGT("Kalibrace selhala")
|
|
|
384 |
#define MSG_M600_TOO_COLD _UxGT("M600: Moc studeny")
|
|
|
385 |
|
|
|
386 |
#if LCD_HEIGHT >= 4
|
|
|
387 |
// Up to 3 lines allowed
|
|
|
388 |
#define MSG_FILAMENT_CHANGE_INIT_1 _UxGT("Cekejte prosim")
|
|
|
389 |
#define MSG_FILAMENT_CHANGE_INIT_2 _UxGT("na zahajeni")
|
|
|
390 |
#define MSG_FILAMENT_CHANGE_INIT_3 _UxGT("vymeny filamentu")
|
|
|
391 |
#define MSG_FILAMENT_CHANGE_UNLOAD_1 _UxGT("Cekejte prosim")
|
|
|
392 |
#define MSG_FILAMENT_CHANGE_UNLOAD_2 _UxGT("na vysunuti")
|
|
|
393 |
#define MSG_FILAMENT_CHANGE_UNLOAD_3 _UxGT("filamentu")
|
|
|
394 |
#define MSG_FILAMENT_CHANGE_INSERT_1 _UxGT("Vlozte filament")
|
|
|
395 |
#define MSG_FILAMENT_CHANGE_INSERT_2 _UxGT("a stisknete")
|
|
|
396 |
#define MSG_FILAMENT_CHANGE_INSERT_3 _UxGT("tlacitko...")
|
|
|
397 |
#define MSG_FILAMENT_CHANGE_HEAT_1 _UxGT("Kliknete pro")
|
|
|
398 |
#define MSG_FILAMENT_CHANGE_HEAT_2 _UxGT("nahrati trysky")
|
|
|
399 |
#define MSG_FILAMENT_CHANGE_HEATING_1 _UxGT("Cekejte prosim")
|
|
|
400 |
#define MSG_FILAMENT_CHANGE_HEATING_2 _UxGT("na nahrati tr.")
|
|
|
401 |
#define MSG_FILAMENT_CHANGE_LOAD_1 _UxGT("Cekejte prosim")
|
|
|
402 |
#define MSG_FILAMENT_CHANGE_LOAD_2 _UxGT("na zavedeni")
|
|
|
403 |
#define MSG_FILAMENT_CHANGE_LOAD_3 _UxGT("filamentu")
|
|
|
404 |
#define MSG_FILAMENT_CHANGE_PURGE_1 _UxGT("Vyckejte na")
|
|
|
405 |
#define MSG_FILAMENT_CHANGE_PURGE_2 _UxGT("vytlaceni")
|
|
|
406 |
#define MSG_FILAMENT_CHANGE_RESUME_1 _UxGT("Cekejte prosim")
|
|
|
407 |
#define MSG_FILAMENT_CHANGE_RESUME_2 _UxGT("na pokracovani")
|
|
|
408 |
#define MSG_FILAMENT_CHANGE_RESUME_3 _UxGT("tisku")
|
|
|
409 |
#else // LCD_HEIGHT < 4
|
|
|
410 |
// Up to 2 lines allowed
|
|
|
411 |
#define MSG_FILAMENT_CHANGE_INIT_1 _UxGT("Cekejte...")
|
|
|
412 |
#define MSG_FILAMENT_CHANGE_UNLOAD_1 _UxGT("Vysouvani...")
|
|
|
413 |
#define MSG_FILAMENT_CHANGE_INSERT_1 _UxGT("Vlozte, kliknete")
|
|
|
414 |
#define MSG_FILAMENT_CHANGE_HEATING_1 _UxGT("Nahrivani...")
|
|
|
415 |
#define MSG_FILAMENT_CHANGE_LOAD_1 _UxGT("Zavadeni...")
|
|
|
416 |
#define MSG_FILAMENT_CHANGE_PURGE_1 _UxGT("Vytlacovani...")
|
|
|
417 |
#define MSG_FILAMENT_CHANGE_RESUME_1 _UxGT("Pokracovani...")
|
|
|
418 |
#endif // LCD_HEIGHT < 4
|
|
|
419 |
|
|
|
420 |
#endif // LANGUAGE_CZ_H
|