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 |
* Bulgarian
|
|
|
25 |
*
|
|
|
26 |
* LCD Menu Messages
|
|
|
27 |
* See also http://marlinfw.org/docs/development/lcd_language.html
|
|
|
28 |
*
|
|
|
29 |
*/
|
|
|
30 |
#ifndef LANGUAGE_BG_H
|
|
|
31 |
#define LANGUAGE_BG_H
|
|
|
32 |
|
|
|
33 |
#define MAPPER_D0D1 // For Cyrillic
|
|
|
34 |
#define DISPLAY_CHARSET_ISO10646_5
|
|
|
35 |
#define CHARSIZE 2
|
|
|
36 |
|
|
|
37 |
#define WELCOME_MSG MACHINE_NAME _UxGT(" Готов.")
|
|
|
38 |
#define MSG_SD_INSERTED _UxGT("Картата е поставена")
|
|
|
39 |
#define MSG_SD_REMOVED _UxGT("Картата е извадена")
|
|
|
40 |
#define MSG_MAIN _UxGT("Меню")
|
|
|
41 |
#define MSG_AUTOSTART _UxGT("Автостарт")
|
|
|
42 |
#define MSG_DISABLE_STEPPERS _UxGT("Изкл. двигатели")
|
|
|
43 |
#define MSG_AUTO_HOME _UxGT("Паркиране")
|
|
|
44 |
#define MSG_TMC_Z_CALIBRATION _UxGT("Калибровка Z")
|
|
|
45 |
#define MSG_SET_HOME_OFFSETS _UxGT("Задай Начало")
|
|
|
46 |
#define MSG_SET_ORIGIN _UxGT("Изходна точка")
|
|
|
47 |
#define MSG_PREHEAT_1 _UxGT("Подгряване PLA")
|
|
|
48 |
#define MSG_PREHEAT_1_N _UxGT("Подгряване PLA")
|
|
|
49 |
#define MSG_PREHEAT_1_ALL _UxGT("Подгр. PLA Всички")
|
|
|
50 |
#define MSG_PREHEAT_1_BEDONLY _UxGT("Подгр. PLA Легло")
|
|
|
51 |
#define MSG_PREHEAT_1_SETTINGS _UxGT("Настройки PLA")
|
|
|
52 |
#define MSG_PREHEAT_2 _UxGT("Подгряване ABS")
|
|
|
53 |
#define MSG_PREHEAT_2_N _UxGT("Подгряване ABS")
|
|
|
54 |
#define MSG_PREHEAT_2_ALL _UxGT("Подгр. ABS Всички")
|
|
|
55 |
#define MSG_PREHEAT_2_BEDONLY _UxGT("Подгр. ABS Легло")
|
|
|
56 |
#define MSG_PREHEAT_2_SETTINGS _UxGT("Настройки ABS")
|
|
|
57 |
#define MSG_COOLDOWN _UxGT("Охлаждане")
|
|
|
58 |
#define MSG_SWITCH_PS_ON _UxGT("Вкл. захранване")
|
|
|
59 |
#define MSG_SWITCH_PS_OFF _UxGT("Изкл. захранване")
|
|
|
60 |
#define MSG_EXTRUDE _UxGT("Екструзия")
|
|
|
61 |
#define MSG_RETRACT _UxGT("Откат")
|
|
|
62 |
#define MSG_MOVE_AXIS _UxGT("Движение по ос")
|
|
|
63 |
#define MSG_BED_LEVELING _UxGT("Нивелиране")
|
|
|
64 |
#define MSG_LEVEL_BED _UxGT("Нивелиране")
|
|
|
65 |
#define MSG_MOVE_X _UxGT("Движение по X")
|
|
|
66 |
#define MSG_MOVE_Y _UxGT("Движение по Y")
|
|
|
67 |
#define MSG_MOVE_Z _UxGT("Движение по Z")
|
|
|
68 |
#define MSG_MOVE_E _UxGT("Екструдер")
|
|
|
69 |
#define MSG_MOVE_01MM _UxGT("Премести с 0.1mm")
|
|
|
70 |
#define MSG_MOVE_1MM _UxGT("Премести с 1mm")
|
|
|
71 |
#define MSG_MOVE_10MM _UxGT("Премести с 10mm")
|
|
|
72 |
#define MSG_SPEED _UxGT("Скорост")
|
|
|
73 |
#define MSG_BED_Z _UxGT("Bed Z")
|
|
|
74 |
#define MSG_NOZZLE LCD_STR_THERMOMETER _UxGT(" Дюза")
|
|
|
75 |
#define MSG_BED LCD_STR_THERMOMETER _UxGT(" Легло")
|
|
|
76 |
#define MSG_FAN_SPEED _UxGT("Вентилатор")
|
|
|
77 |
#define MSG_FLOW _UxGT("Поток")
|
|
|
78 |
#define MSG_CONTROL _UxGT("Управление")
|
|
|
79 |
#define MSG_MIN LCD_STR_THERMOMETER _UxGT(" Минимум")
|
|
|
80 |
#define MSG_MAX LCD_STR_THERMOMETER _UxGT(" Максимум")
|
|
|
81 |
#define MSG_FACTOR LCD_STR_THERMOMETER _UxGT(" Фактор")
|
|
|
82 |
#define MSG_AUTOTEMP _UxGT("Авто-темп.")
|
|
|
83 |
#define MSG_ON _UxGT("Вкл. ")
|
|
|
84 |
#define MSG_OFF _UxGT("Изкл. ")
|
|
|
85 |
#define MSG_A_RETRACT _UxGT("A-откат")
|
|
|
86 |
#define MSG_A_TRAVEL _UxGT("A-travel")
|
|
|
87 |
#define MSG_STEPS_PER_MM _UxGT("Стъпки/mm")
|
|
|
88 |
#if IS_KINEMATIC
|
|
|
89 |
#define MSG_ASTEPS _UxGT("Aстъпки/mm")
|
|
|
90 |
#define MSG_BSTEPS _UxGT("Bстъпки/mm")
|
|
|
91 |
#define MSG_CSTEPS _UxGT("Cстъпки/mm")
|
|
|
92 |
#else
|
|
|
93 |
#define MSG_ASTEPS _UxGT("Xстъпки/mm")
|
|
|
94 |
#define MSG_BSTEPS _UxGT("Yстъпки/mm")
|
|
|
95 |
#define MSG_CSTEPS _UxGT("Zстъпки/mm")
|
|
|
96 |
#endif
|
|
|
97 |
#define MSG_ESTEPS _UxGT("E стъпки/mm")
|
|
|
98 |
#define MSG_E1STEPS _UxGT("E1 стъпки/mm")
|
|
|
99 |
#define MSG_E2STEPS _UxGT("E2 стъпки/mm")
|
|
|
100 |
#define MSG_E3STEPS _UxGT("E3 стъпки/mm")
|
|
|
101 |
#define MSG_E4STEPS _UxGT("E4 стъпки/mm")
|
|
|
102 |
#define MSG_E5STEPS _UxGT("E5 стъпки/mm")
|
|
|
103 |
#define MSG_TEMPERATURE _UxGT("Температура")
|
|
|
104 |
#define MSG_MOTION _UxGT("Движение")
|
|
|
105 |
#define MSG_FILAMENT _UxGT("Нишка")
|
|
|
106 |
#define MSG_VOLUMETRIC_ENABLED _UxGT("E in mm3")
|
|
|
107 |
#define MSG_FILAMENT_DIAM _UxGT("Диам. нишка")
|
|
|
108 |
#define MSG_CONTRAST _UxGT("LCD контраст")
|
|
|
109 |
#define MSG_STORE_EEPROM _UxGT("Запази в EPROM")
|
|
|
110 |
#define MSG_LOAD_EEPROM _UxGT("Зареди от EPROM")
|
|
|
111 |
#define MSG_RESTORE_FAILSAFE _UxGT("Фабрични настройки")
|
|
|
112 |
#define MSG_REFRESH LCD_STR_REFRESH _UxGT("Обнови")
|
|
|
113 |
#define MSG_WATCH _UxGT("Преглед")
|
|
|
114 |
#define MSG_PREPARE _UxGT("Действия")
|
|
|
115 |
#define MSG_TUNE _UxGT("Настройка")
|
|
|
116 |
#define MSG_PAUSE_PRINT _UxGT("Пауза")
|
|
|
117 |
#define MSG_RESUME_PRINT _UxGT("Възобнови печата")
|
|
|
118 |
#define MSG_STOP_PRINT _UxGT("Спри печата")
|
|
|
119 |
#define MSG_CARD_MENU _UxGT("Меню карта")
|
|
|
120 |
#define MSG_NO_CARD _UxGT("Няма карта")
|
|
|
121 |
#define MSG_DWELL _UxGT("Почивка...")
|
|
|
122 |
#define MSG_USERWAIT _UxGT("Изчакване")
|
|
|
123 |
#define MSG_PRINT_ABORTED _UxGT("Печатът е прекъснат")
|
|
|
124 |
#define MSG_NO_MOVE _UxGT("Няма движение")
|
|
|
125 |
#define MSG_KILLED _UxGT("УБИТО.")
|
|
|
126 |
#define MSG_STOPPED _UxGT("СПРЯНО.")
|
|
|
127 |
#define MSG_CONTROL_RETRACT _UxGT("Откат mm")
|
|
|
128 |
#define MSG_CONTROL_RETRACT_SWAP _UxGT("Смяна Откат mm")
|
|
|
129 |
#define MSG_CONTROL_RETRACTF _UxGT("Откат V")
|
|
|
130 |
#define MSG_CONTROL_RETRACT_ZLIFT _UxGT("Скок mm")
|
|
|
131 |
#define MSG_CONTROL_RETRACT_RECOVER _UxGT("Възврат mm")
|
|
|
132 |
#define MSG_CONTROL_RETRACT_RECOVER_SWAP _UxGT("Смяна Възврат mm")
|
|
|
133 |
#define MSG_CONTROL_RETRACT_RECOVERF _UxGT("Възврат V")
|
|
|
134 |
#define MSG_AUTORETRACT _UxGT("Автоoткат")
|
|
|
135 |
#define MSG_FILAMENTCHANGE _UxGT("Смяна нишка")
|
|
|
136 |
#define MSG_INIT_SDCARD _UxGT("Иниц. SD-Карта")
|
|
|
137 |
#define MSG_CNG_SDCARD _UxGT("Смяна SD-Карта")
|
|
|
138 |
#define MSG_ZPROBE_OUT _UxGT("Z-сондата е извадена")
|
|
|
139 |
#define MSG_ZPROBE_ZOFFSET _UxGT("Z Отстояние")
|
|
|
140 |
#define MSG_BABYSTEP_X _UxGT("Министъпка X")
|
|
|
141 |
#define MSG_BABYSTEP_Y _UxGT("Министъпка Y")
|
|
|
142 |
#define MSG_BABYSTEP_Z _UxGT("Министъпка Z")
|
|
|
143 |
#define MSG_ENDSTOP_ABORT _UxGT("Стоп Кр.Изключватели")
|
|
|
144 |
#define MSG_DELTA_CALIBRATE _UxGT("Делта Калибровка")
|
|
|
145 |
#define MSG_DELTA_CALIBRATE_X _UxGT("Калибровка X")
|
|
|
146 |
#define MSG_DELTA_CALIBRATE_Y _UxGT("Калибровка Y")
|
|
|
147 |
#define MSG_DELTA_CALIBRATE_Z _UxGT("Калибровка Z")
|
|
|
148 |
#define MSG_DELTA_CALIBRATE_CENTER _UxGT("Калибровка Център")
|
|
|
149 |
|
|
|
150 |
#endif // LANGUAGE_BG_H
|