This repository was archived by the owner on Apr 17, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathengvariables.py
More file actions
80 lines (59 loc) · 1.54 KB
/
engvariables.py
File metadata and controls
80 lines (59 loc) · 1.54 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# English variables
# ----------------------------
# ----- Menu and buttons -----
# ----------------------------
root = ""
languagemenu = ""
languagetext = "Language"
espanishtext = "Spanish"
englishtext = "English"
colormenu = ""
colortext = "Color"
filemenu = ""
filetext = "File"
helpmenu = ""
helptext = "Help"
changebackground = "Background"
windowcolor = ""
quicksaveroute = ""
quicksavetext = "Save"
savetext = "Save as"
loadtext = "Load"
abouttext = "About"
savefileas = "Save as..."
openfile = "Open file"
textfiles = "Text files"
allfiles = "All files"
windowmenu = ""
windowtitle = "Projectbot"
padx = 10
pady = 10
# ------------------------------
# ----- Function variables -----
# ------------------------------
todobutton = ""
doingbutton = ""
donebutton = ""
todolistbox = ""
doinglistbox = ""
donelistbox = ""
todotasklist = []
doingtasklist = []
donetasklist = []
entrybutton = ""
entrytext = ""
erasebutton = ""
erasetext = "Erase selected task"
movebutton = ""
movetext = "Move selected task"
# -----------------------
# ----- Large texts -----
# -----------------------
listsnames = ["Things to do", "Tasks doing", "Already done"]
aboutinfo = ["About Projectbot",
"Made by: t0m45DEV\nUsing: Python\nVersion: 3.2"]
error01 = ["Error 01", "You cant create an empty task"]
error02 = ["Error 02", "There was an error loading the language"]
error03 = ["Error 03", "You must select a task"]
error04 = ["Error 04", "There was an error moving the task"]
error05 = ["Error 05", "You cant use those characters"]