Welcome to mirror list, hosted at ThFree Co, Russian Federation.

insc.py « bot_sends « expansions - github.com/alkorgun/blacksmith-2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e5ede13dbd5d2abbc8d7c5cb06a4ddd83d125391 (plain)
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
# coding: utf-8

if DefLANG in ("RU", "UA"):
	AnsBase_temp = tuple([line.decode("utf-8") for line in (
		"чистка конференции...", # 0
		"Всё круто, я в отличной форме! (0 ошибок)", # 1
		"Бoeц %s тяжело ранен, но я ещё повоюю! (%d ошибок)", # 2
		"Со мной всё кончено, брат, спасайся, я задержу их... (%d ошибок)", # 3
		"На такие адреса я не могу посылать сообщения.", # 4
		"Сообщение от %s:\n%s", # 5
		"«%s» сейчас здесь.", # 6
		"Адресат неопределён.", # 7
		"Не более 1го приглащения за 12 минут! (Осталось: %s)", # 8
		"Чистка итак в процессе!" # 9
					)])
else:
	AnsBase_temp = (
		"cleaning conference...", # 0
		"I am okay! (0 errors)", # 1
		"Private %s is seriously injured, but I have the rotation! (%d errors)", # 2
		"I am dead man, brother, escape, I will delay them... (%d errors)", # 3
		"At these addresses, I can not send messages.", # 4
		"Message from %s:\n%s", # 5
		"'%s' is here now.", # 6
		"Unknown target.", # 7
		"Users can send only one invite in 12 minutes! (Remain: %s)", # 8
		"Cleaning already in the process!" # 9
					)