-
Notifications
You must be signed in to change notification settings - Fork 7
/
langs.py
338 lines (330 loc) · 16.5 KB
/
langs.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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
langs = {
"en": {
"help": {
"success-register": "You have been successfully registered",
"part-1": "Hey there",
"part-2": "Here are my commands \\(english\\):",
"warning-msg": "*Please Note: * It is highly recommended that you do not directly mine to the address given by this bot\\. Download a full node here: [Full Node](https://github\\.com/sugarchain\\-project/sugarchain/releases/latest)"
},
"info": {
"block-height": "Current block height (en):",
"net-hash": "Current network hashrate:",
"difficulty": "Current difficulty:",
"supply": "Current circulating supply:"
},
"tip": {
"part-1": "You are about to send",
"part-2": "with an additional fee of",
"part-3": "SUGAR to",
"part-4": "Please click Yes to confirm"
},
"deposit": {
"part-1": "Your deposit address:"
},
"balance": {
"part-1": "Your current balance:"
},
"withdraw": {
"part-1": "You are about to withdraw",
"part-2": "with a fee of",
"part-3": "SUGAR to",
"part-4": "Please click Yes to confirm"
},
"export": {
"part-1": "Your exported secret key:",
"part-2": "<b>Important:</b> Do not share this key. If you do share this key, all your SUGAR will be lost."
},
"setlang": {
"same-lang": "Language is already set",
"set-lang": "Language changed to English",
"invalid-lang": "Invalid language english"
},
"about": {
"""
Hello there \\(english\\),
I am the Sugarchain Telegram Tipbot, created by [salmaan1234](tg://user?id=905257225)\\. Run /help to see my full list of commands\\.
This bot is fully [Open Source](https://github\\.com/Nugetzrul3/SugarchainTGBot)\\.
"""
},
"tip-yes-no": {
"text-yes": "Success, sent",
"text-no": "You declined sending",
"view-transaction": "View Transaction"
},
"withdraw-yes-no": {
"text-yes": "Success, withdrew",
"text-no": "You declined withdrawing",
"view-transaction": "View Transaction"
},
"error": {
"general": {
"dm-only": "This command only works in direct messages. See /help to see what commands work in group",
"not-registered": "It looks like you haven't registered yet. Please run /help first to register yourself",
},
"tip": {
"re-register": "Oops, looks like your sending to a user who hasn't registered or has changed their username. Ask them to do /help to register/re-register!\nPlease be mindful that usernames are case senstive. Make sure that the case of the target is correct.",
"tip-yourself": "😆 You can't tip yourself!",
"negative-amount": "You cannot send negative amounts or amounts less than 0.00001!",
"invalid-amount": "Invalid amount of SUGAR. Please try again",
"no-amount": "No amount specified!",
"no-user": "No user specified",
"insufficient-funds": "You do not have enough funds to tip that amount"
},
"withdraw": {
"negative-amount": "You cannot withdraw negative amounts or amounts less than 0.00001",
"invalid-amount": "The amount you have specified is not valid. Please try again.",
"no-amount": "You did not specify the amount you wish to withdraw. Please try again",
"same-address": "You can't withdraw to your own deposit address 😄",
"invalid-address": "You have specified an invalid withdraw address. Try again with a valid address.",
"no-address": "No withdraw address specified",
"insufficient-funds": "You do not have enough funds to tip that amount"
}
}
},
"zh": {
"help": {
"success-register": "You have been successfully registered zh",
"part-1": "Hey there",
"part-2": "Here are my commands \\(Chinese\\):",
"warning-msg": "*Please Note: * It is highly recommended that you do not directly mine to the address given by this bot\\. Download a full node here: [Full Node](https://github\\.com/sugarchain\\-project/sugarchain/releases/latest)"
},
"info": {
"block-height": "Current block height (zh):",
"net-hash": "Current network hashrate:",
"difficulty": "Current difficulty:",
"supply": "Current circulating supply:"
},
"tip": {
"part-1": "ZH You are about to send",
"part-2": "with an additional fee of",
"part-3": "SUGAR to",
"part-4": "Please click Yes to confirm"
},
"deposit": {
"part-1": "ZH Your deposit address:"
},
"balance": {
"part-1": "ZH Your current balance:"
},
"withdraw": {
"part-1": "ZH You are about to withdraw",
"part-2": "with a fee of",
"part-3": "SUGAR to",
"part-4": "Please click Yes to confirm"
},
"export": {
"part-1": "ZH Your exported secret key:",
"part-2": "ZH <b>Important:</b> Do not share this key. If you do share this key, all your SUGAR will be lost."
},
"setlang": {
"same-lang": "Language is already set ZH",
"set-lang": "Language changed to Chinese",
"invalid-lang": "Invalid language Chinese"
},
"about": {
"""
Hello there \\(Chinese\\),
I am the Sugarchain Telegram Tipbot, created by [salmaan1234](tg://user?id=905257225)\\. Run /help to see my full list of commands\\.
This bot is fully [Open Source](https://github\\.com/Nugetzrul3/SugarchainTGBot)\\.
"""
},
"tip-yes-no": {
"text-yes": "ZH Success, sent",
"text-no": "ZH You declined sending",
"view-transaction": "ZH View Transaction"
},
"withdraw-yes-no": {
"text-yes": "ZH Success, withdrew",
"text-no": "ZH You declined withdrawing",
"view-transaction": "ZH View Transaction"
},
"error": {
"general": {
"dm-only": "ZH This command only works in direct messages. See /help to see what commands work in group",
"not-registered": "ZH It looks like you haven't registered yet. Please run /help first to register yourself",
},
"tip": {
"re-register": "ZH Oops, looks like your sending to a user who hasn't registered or has changed their username. Ask them to do /help to register/re-register!\nPlease be mindful that usernames are case senstive. Make sure that the case of the target is correct.",
"tip-yourself": "ZH 😆 You can't tip yourself!",
"negative-amount": "ZH You cannot send negative amounts or amounts less than 0.00001!",
"invalid-amount": "ZH Invalid amount of SUGAR. Please try again",
"no-amount": "ZH No amount specified!",
"no-user": "ZH No user specified",
"insufficient-funds": "ZH You do not have enough funds to tip that amount"
},
"withdraw": {
"negative-amount": "ZH You cannot withdraw negative amounts or amounts less than 0.00001",
"invalid-amount": "ZH The amount you have specified is not valid. Please try again.",
"no-amount": "ZH You did not specify the amount you wish to withdraw. Please try again",
"same-address": "ZH You can't withdraw to your own deposit address 😄",
"invalid-address": "ZH You have specified an invalid withdraw address. Try again with a valid address.",
"no-address": "ZH No withdraw address specified",
"insufficient-funds": "ZH You do not have enough funds to tip that amount"
}
}
},
"id": {
"help": {
"success-register": "You have been successfully registered id",
"part-1": "Hey there",
"part-2": "Here are my commands \\(Indonesian\\):",
"warning-msg": "*Please Note: * It is highly recommended that you do not directly mine to the address given by this bot\\. Download a full node here: [Full Node](https://github\\.com/sugarchain\\-project/sugarchain/releases/latest)"
},
"info": {
"block-height": "Current block height (id):",
"net-hash": "Current network hashrate:",
"difficulty": "Current difficulty:",
"supply": "Current circulating supply:"
},
"tip": {
"part-1": "ID You are about to send",
"part-2": "with an additional fee of",
"part-3": "SUGAR to",
"part-4": "Please click Yes to confirm"
},
"deposit": {
"part-1": "ID Your deposit address:"
},
"balance": {
"part-1": "ID Your current balance:"
},
"withdraw": {
"part-1": "ID You are about to withdraw",
"part-2": "with a fee of",
"part-3": "SUGAR to",
"part-4": "Please click Yes to confirm"
},
"export": {
"part-1": "ID Your exported secret key:",
"part-2": "ID <b>Important:</b> Do not share this key. If you do share this key, all your SUGAR will be lost."
},
"setlang": {
"same-lang": "Language is already set ID",
"set-lang": "Language changed to Indonesian",
"invalid-lang": "Invalid language Indonesian"
},
"about": {
"""
Hello there \\(Indonesian\\),
I am the Sugarchain Telegram Tipbot, created by [salmaan1234](tg://user?id=905257225)\\. Run /help to see my full list of commands\\.
This bot is fully [Open Source](https://github\\.com/Nugetzrul3/SugarchainTGBot)\\.
"""
},
"tip-yes-no": {
"text-yes": "ID Success, sent",
"text-no": "ID You declined sending",
"view-transaction": "ID View Transaction"
},
"withdraw-yes-no": {
"text-yes": "ID Success, withdrew",
"text-no": "ID You declined withdrawing",
"view-transaction": "ID View Transaction"
},
"error": {
"general": {
"dm-only": "ID This command only works in direct messages. See /help to see what commands work in group",
"not-registered": "ID It looks like you haven't registered yet. Please run /help first to register yourself",
},
"tip": {
"re-register": "ID Oops, looks like your sending to a user who hasn't registered or has changed their username. Ask them to do /help to register/re-register!\nPlease be mindful that usernames are case senstive. Make sure that the case of the target is correct.",
"tip-yourself": "ID 😆 You can't tip yourself!",
"negative-amount": "ID You cannot send negative amounts or amounts less than 0.00001!",
"invalid-amount": "ID Invalid amount of SUGAR. Please try again",
"no-amount": "ID No amount specified!",
"no-user": "ID No user specified",
"insufficient-funds": "ID You do not have enough funds to tip that amount"
},
"withdraw": {
"negative-amount": "ID You cannot withdraw negative amounts or amounts less than 0.00001",
"invalid-amount": "ID The amount you have specified is not valid. Please try again.",
"no-amount": "ID You did not specify the amount you wish to withdraw. Please try again",
"same-address": "ID You can't withdraw to your own deposit address 😄",
"invalid-address": "ID You have specified an invalid withdraw address. Try again with a valid address.",
"no-address": "ID No withdraw address specified",
"insufficient-funds": "ID You do not have enough funds to tip that amount"
}
}
},
"ru": {
"help": {
"success-register": "You have been successfully registered ru",
"part-1": "Hey there",
"part-2": "Here are my commands \\(russian\\):",
"warning-msg": "*Please Note: * It is highly recommended that you do not directly mine to the address given by this bot\\. Download a full node here: [Full Node](https://github\\.com/sugarchain\\-project/sugarchain/releases/latest)"
},
"info": {
"block-height": "Current block height (ru):",
"net-hash": "Current network hashrate:",
"difficulty": "Current difficulty:",
"supply": "Current circulating supply:"
},
"tip": {
"part-1": "RU You are about to send",
"part-2": "with an additional fee of",
"part-3": "SUGAR to",
"part-4": "Please click Yes to confirm"
},
"deposit": {
"part-1": "RU Your deposit address:"
},
"balance": {
"part-1": "RU Your current balance:"
},
"withdraw": {
"part-1": "RU You are about to withdraw",
"part-2": "with a fee of",
"part-3": "SUGAR to",
"part-4": "Please click Yes to confirm"
},
"export": {
"part-1": "RU Your exported secret key:",
"part-2": "RU <b>Important:</b> Do not share this key. If you do share this key, all your SUGAR will be lost."
},
"setlang": {
"same-lang": "Language is already set RU",
"set-lang": "Language changed to Russian",
"invalid-lang": "Invalid language Russian/"
},
"about": {
"""
Hello there \\(Russian\\),
I am the Sugarchain Telegram Tipbot, created by [salmaan1234](tg://user?id=905257225)\\. Run /help to see my full list of commands\\.
This bot is fully [Open Source](https://github\\.com/Nugetzrul3/SugarchainTGBot)\\.
"""
},
"tip-yes-no": {
"text-yes": "RU Success, sent",
"text-no": "RU You declined sending",
"view-transaction": "RU View Transaction"
},
"withdraw-yes-no": {
"text-yes": "RU Success, withdrew",
"text-no": "RU You declined withdrawing",
"view-transaction": "RU View Transaction"
},
"error": {
"general": {
"dm-only": "RU This command only works in direct messages. See /help to see what commands work in group",
"not-registered": "RU It looks like you haven't registered yet. Please run /help first to register yourself",
},
"tip": {
"re-register": "RU Oops, looks like your sending to a user who hasn't registered or has changed their username. Ask them to do /help to register/re-register!\nPlease be mindful that usernames are case senstive. Make sure that the case of the target is correct.",
"tip-yourself": "RU 😆 You can't tip yourself!",
"negative-amount": "RU You cannot send negative amounts or amounts less than 0.00001!",
"invalid-amount": "RU Invalid amount of SUGAR. Please try again",
"no-amount": "RU No amount specified!",
"no-user": "RU No user specified",
"insufficient-funds": "RU You do not have enough funds to tip that amount"
},
"withdraw": {
"negative-amount": "RU You cannot withdraw negative amounts or amounts less than 0.00001",
"invalid-amount": "RU The amount you have specified is not valid. Please try again.",
"no-amount": "RU You did not specify the amount you wish to withdraw. Please try again",
"same-address": "RU You can't withdraw to your own deposit address 😄",
"invalid-address": "RU You have specified an invalid withdraw address. Try again with a valid address.",
"no-address": "RU No withdraw address specified",
"insufficient-funds": "RU You do not have enough funds to tip that amount"
}
}
}
}