-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrussian.py
More file actions
30 lines (30 loc) · 1.26 KB
/
russian.py
File metadata and controls
30 lines (30 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
open_text = 'открыть'
save = 'сохранить'
close = 'закрыть'
cut = 'вырезать'
copy = 'копировать'
paste = 'вставить'
delete = 'удалить'
find_text = 'поиск'
select_all = 'выбрать всё'
file = 'файл'
edit = 'править'
help_button = 'помощь'
about_button = 'о программе'
about_text = 'Разработано Романом Сонником с использованием Chat GPT и Google.'
help_text = 'В случае багов обратитесь к администратору.' \
'\nОсновные сочитания клавиш:' \
'\n\nКопировать Ctrl+C' \
'\nВырезать Ctrl+X' \
'\nВставить Ctrl+V' \
'\nНайти Ctrl+F' \
'\nВыбрать всё Ctrl+A' \
'\nОткрыть Ctrl+O' \
'\nСохранить Ctrl+S' \
'\nПомощь Ctrl+H'
exit_title = 'Выход'
exit_text = 'Вы точно хотите выйти?'
open_file_title = 'Выбор файла'
file_types = 'Текстовые документы (*.txt)'
all_files = 'Все файлы'
save_file_title = 'Cохранить'