-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtranslation.py
More file actions
158 lines (113 loc) · 5.53 KB
/
translation.py
File metadata and controls
158 lines (113 loc) · 5.53 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
import json
translation = {
# Desktop and Explorer
'StartButton': "Start",
'WindowTitle-MyComputer': "My Computer",
'Label-MyComputer': "My Computer",
'WindowTitle-MyDocuments': "My Documents",
'Label-MyDocuments': "My Documents",
'WindowTitle-RecycleBin': "Recycle Bin",
'Label-RecycleBin': "Recycle Bin",
'Label-StartButton': "Start",
# My Computer
'WindowTitle-ADrive': "(A:)",
'Label-ADrive': "(A:)",
'WindowTitle-CDrive': "(C:)",
'Label-CDrive': "(N:)",
'WindowTitle-DDrive': "(D:)",
'Label-DDrive': "(R:)",
'Description-MyComputer-Line1': "From here you",
'Description-MyComputer-Line2': "can break your",
'Description-MyComputer-Line3': "computer.",
'Description-RemovableWait': "Please Wait...",
'Button-EmptyBin': "Empty Bin",
# My Documents
'Description-MyDocuments-Line1': "You boring arse.",
'Description-MyDocuments-Line2': "Get some",
'Description-MyDocuments-Line3': "documents before",
'Description-MyDocuments-Line4': "you come in here",
'Description-MyDocuments-Line5': "looking for them.",
'Description-MyDocumentsCrash-Line1': "Boring arse. Get",
'Description-MyDocumentsCrash-Line2': "some documents",
'Description-MyDocumentsCrash-Line3': "before you come",
'Description-MyDocumentsCrash-Line4': "in here lookin for",
'Description-MyDocumentsCrash-Line5': "them.",
'Subtitle-Help': "HELP",
'Subtitle-WindowsUpdate': "UPDATE",
'Warning-MyDocumentsCrash': "explorer.exe has performed an illegal operation, and will now be closed.",
# C: Drive
'Label-WindowsFolder': "Windows",
# Start Menu options
'StartMenu-Word': "Word",
'StartMenu-WindowsUpdate': "Windows Update",
'StartMenu-Crash': "Crash",
'StartMenu-Solitaire': "Solitaire",
'StartMenu-OrderFood': "Order Food",
'StartMenu-GoOnline': "Go Online",
'StartMenu-Paint': "Paint",
'StartMenu-Help': "Help",
'StartMenu-Reboot': "Reboot",
'StartMenu-Shutdown': "Shut Down",
# Recycle Bin
'Description-RecycleBin-Line1': "This is where",
'Description-RecycleBin-Line2': "stuff you don't",
'Description-RecycleBin-Line3': "want gets shoved.",
'Description-RecycleBin-Line4': "Also, this is",
'Description-RecycleBin-Line5': "where files that",
'Description-RecycleBin-Line6': "windows has",
'Description-RecycleBin-Line7': "deleted for no",
'Description-RecycleBin-Line8': "reason get sent.",
'Description-RecycleBin-Line9': "Click the button",
'Description-RecycleBin-Line10': "below to empty.",
'Description-RecycleBin-Line11': "the recycle bin.",
# Order Food
'Description-OrderFood1-Line1': "One of the many advancements in Windows RG",
'Description-OrderFood1-Line2': "is the ability to order food online.",
'Description-OrderFood1-Line3': "You can order from a huge selection of quality",
'Description-OrderFood1-Line4': "goods and they will be delivered to your door",
'Description-OrderFood1-Line5': "within 30 minutes. (45 minutes off-peak)",
'Description-OrderFood1-Line6': "Click OK to continue",
'Description-OrderFood2-Line1': "Please wait while we connect to our online",
'Description-OrderFood2-Line2': "database and retrieve all available meals.",
'Description-OrderFood2-Line3': "This may take a few minutes.",
'Description-OrderFood3-Line1': "Files downloaded, please wait a few seconds",
'Description-OrderFood3-Line2': "while we waste your time.",
'Description-OrderFood4-Line1': "Available Food:",
'Description-OrderFood4-Line2': "Click the button next to anything you want:",
'OrderFood-Food1': "Prune Juice",
'OrderFood-Food2': "Slice of Ham",
'OrderFood-Food3': "Chickpeas",
'Button-OrderFoodOrder': "Order",
'Button-OrderFoodQuitButton': "Quit",
'Button-OrderFoodTryAgainButton': "TryAgain",
'Button-OrderFoodOKButton': "OK",
'Description-OrderFood5-Line1': "Sorry - the food you selected has sold out",
'Description-OrderFood5-Line2': "We will have some more in very shortly!",
'Description-OrderFood5-Line3': "Would you like to try again?",
'Description-OrderFoodQuit-Line1': "Thanks for vising! Come back again soon!",
'Description-OrderFoodQuit-Line2': "There's enough food for everyone!™",
'Description-RemovableWait': "Please Wait...",
# Help
'Description-Help-Line1': "The updated Windows Help service is so simple to use.",
'Description-Help-Line2': "Enter one or more words regarding what you need help on and Windows RG",
'Description-Help-Line3': "will be happy to help.",
# Windows Update
'Description-WindowsUpdate-Line1': "Welcome to the Windows Update Wizard!",
'Description-WindowsUpdate-Line2': "Click next to begin",
# Windows
'WindowTitle-Word': "Microsoft Word RG",
'WindowTitle-WindowsUpdate': "Windows RG Update",
'WindowTitle-OrderFood': "Order Food",
'WindowTitle-Solitaire': "Solitaire",
'WindowTitle-Browser': "Internet Explorer",
'WindowTitle-Paint': "Paint",
'WindowTitle-Help': "Windows RG Help",
'WindowTitle-MediaPlayer': "Windows Media Player",
# Windows Media Player
'Button-WMPLoadCustomVideo': "Open",
'Warning-WMPCrash': "mediaplayer.exe has performed an illegal operation and will close... Isn't that a shame? Isn't it?",
'Warning-MyDocumentsCrash': "explorer.exe has performed an illegal operation, and will now be closed.",
}
Name=input("Name of the translation: ")
with open(f"{Name}.json", "w") as outfile:
json.dump(translation, outfile)