-
Notifications
You must be signed in to change notification settings - Fork 145
/
translation.py
102 lines (57 loc) · 3.51 KB
/
translation.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
class Translation(object):
#This will be appeared when anyone use start command
START = """Hello {0}
I am a converter clone of [Convert Ns Bot](https://telegram.dog/convert_Ns_bot) by {1}
I can convert file to video or video to file with custom thumbnail support.
"""
#This will be appeared when anyone use help command
HELP = """**Hey you need help 🤔 ?**
1. Send me the telegram file or video which you wanted to convert.
2. Send me the thumbnail(photo) optional.
3. Reply to video /converttofile for converting into file.
4. Reply to file /converttovideo for converting into video.
**SUPPORT GROUP:** [NS Bot Supporters](https://telegram.dog/Ns_Bot_supporters)
"""
#Please don't change this about command 🙏
ABOUT = """
**📝 Language:** Python 3
**🧰 Framework:** Pyrogram
**👨💻 Developer:** [Anonymous](https://t.me/Ns_AnoNymouS)
**📮 Channel:** [NS BOT UPDATES](https://t.me/Ns_bot_updates)
**👥 Group:** [NS BOT SUPPOTERS](https://t.me/Ns_Bot_supporters)
**💻 Source Code:**[Press Me](https://github.com/Ns-AnoNymouS/TG-CONVERT-BOT)
"""
####################################################################################################################################################
####################################################################################################################################################
#If you set the password for the bot if anyone use the bot without logging in this text will appear
NOT_LOGGED_TEXT = """ This bot was a private bot you need to login using the password.
For logging in use command <code>/login BotPassword</code>. And then use me 🥰"""
#This will be sent to the user when the user logged successfully
SUCESS_LOGIN = """You are successfully logged in. So you can use me for today.
You access will be revoke by tomorrow"""
# This will be show when an user send wrong password
WRONG_PWD = """This is a wrong password 🔐 please try with correct password"""
# This will appear if the user is already logged
EXISTING_USER = "You are already logged in you can use me"
####################################################################################################################################################
####################################################################################################################################################
#DON'T CHANGE THE NUMBERS IN THE FLOWER BRACKETS AND THE ORDER OF PERCENTAGE, DONE, TOTAL, SPEED, ETA ONLY CHANGE THE THEME
PROGRESS = """
Percentage : {0}%
Done ✅: {1}
Total 🌀: {2}
Speed 🚀: {3}/s
ETA 🕰: {4}
"""
DOWNLOAD_PROGRESS = "▪️"
UPLOAD_PROGRESS = "▫️"
####################################################################################################################################################
####################################################################################################################################################
DOWNLOAD_START = "Trying to Download 📥"
DOWNLOAD_COMPLETE = "✅ Media Downloaded successfully\nPreparing for upload"
UPLOAD_START = "Trying to Upload 📤"
UPLOAD_COMPLETE = "THANKS FOR USING ME"
SAVED_CUSTOM_THUMB_NAIL = "✅ Saved Thumbnail Successfully. This will be deleted in 24hrs"
BANNED_TEXT = "YOU ARE BANNED. SO YOUR ARE NOT ABLE TO USE ME 🐒"
REPLY_TEXT = "👩✈️ Reply to the media which you need to convert"
DEL_ETED_CUSTOM_THUMB_NAIL = "Thumbnail Deleted Successfully ✅"