-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstrings.py
77 lines (67 loc) · 2.27 KB
/
strings.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
SURETY = """**Surety Meter** : **{}%** """
START_MSG = """
Hello <b>{}</b> ! I'm <b>Akinator</b>🧞♂️.
We can play a guessing game.
<b>private</b> ➕ <b>group</b> supported
Do /play
"""
PERMISSION_ISSUE ="""
Make sure **bot** is an *Admin* with **necessary** permission.
If it still not working, contact *DEVELOPER*
"""
GROUP_LOADING_CAPTION_MSG = """⌛️Loading...
[{}](tg://user?id={}) is playing Akinator.
"""
MENTION_USER ="""
[{}](tg://user?id={}) {}.
"""
NONE_JPG = "https://telegra.ph/file/b9724d8baeb470a14ba64.jpg"
AKI_FIRST_IMG = "https://telegra.ph/file/11750df9d67a591d44fb3.png"
AKI_02 = "https://telegra.ph/file/52361c158e90caa52de02.png"
AKI_03 = "https://telegra.ph/file/1615371c48e02910c55f7.png"
AKI_04 = "https://telegra.ph/file/d02e6276812c022a5f409.png"
AKI_05 = "https://telegra.ph/file/89663a622b16ea1443c44.png"
AKI_DEFEATED_IMG = "https://telegra.ph/file/ae89bcd6898f34001d111.png"
AKI_WIN_IMG = "https://telegra.ph/file/2acba0f930d180005e460.png"
ERROR_IMG = "https://telegra.ph/file/dc055226f5deac1d988db.jpg"
ME_MSG = """
<b>Name :</b> <code>{}</code> 👤
<b>User Name :</b> <code>{}</code> 📜
<b>User ID :</b> <code>{}</code> 🔢
<b>Language :</b> <code>{}</code> 🌐
<b>Child Mode :</b> <code>{}</code> 🔒
<b>Total Guess :</b> <code>{}</code> 🤔
<b>Correct Guess :</b> <code>{}</code> ✅
<b>Wrong Guess :</b> <code>{}</code> ❌
<b>Unfinished Guess :</b> <code>{}</code> ⚠️
<b>Total Questions :</b> <code>{}</code> ❓
"""
DEV_URL = "https://t.me/blacknut1803"
AKI_LANG_CODE = {
'en': 'English',
'ar': 'Arabic',
'cn': 'Chinese',
'de': 'German',
'es': 'Spanish',
'fr': 'French',
'il': 'Hebrew',
'it': 'Italian',
'jp': 'Japanese',
'kr': 'Korean',
'nl': 'Dutch',
'pl': 'Polish',
'pt': 'Portuguese',
'ru': 'Russian',
'tr': 'Turkish',
'id': 'Indonesian',
}
AKI_LANG_MSG = """
Change Playing Language.🌐
<b>NOTE : This does not change the Bot language.</b>
<b>Current Language :</b> <pre>{}</pre>
"""
CHILDMODE_MSG = """
If Child mode is enabled, akinator won't show any NSFW content.
<b>Current Status :</b> <pre>Child mode is {} !</pre>
"""
AKI_FIRST_QUESTION = "This is the first question. You can't go back any further!"