-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenglish.py
30 lines (30 loc) · 921 Bytes
/
english.py
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 = 'open'
save = 'save'
close = 'close'
cut = 'cut'
copy = 'copy'
paste = 'paste'
delete = 'delete'
find_text = 'find'
select_all = 'select all'
file = 'file'
edit = 'edit'
help_button = 'help'
about_button = 'about'
about_text = 'Developed by Roman Sonnik using Chat GPT and google.'
help_text = 'In case of bugs, please contact the administrator.' \
'\nBasic keyboard shortcuts:' \
'\n\nCopy Ctrl+C' \
'\nCut Ctrl+X' \
'\nPaste Ctrl+V' \
'\nFind Ctrl+F' \
'\nSelect all Ctrl+A' \
'\nCreate Ctrl+N' \
'\nOpen Ctrl+O' \
'\nSave Ctrl+S'
exit_title = 'Exit'
exit_text = 'Are you sure you want to exit?'
open_file_title = 'File Selection'
file_types = 'Text documents (*.txt)'
all_files = 'All files'
save_file_title = 'Save'