-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathtranslation.py
60 lines (48 loc) · 1.86 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
from pyrogram.types import InlineKeyboardMarkup, InlineKeyboardButton
class Translation(object):
START_TEXT = """
Hey {}
I am Telegram Most Powerful Media Encoder Bot
I can Encode Any Video or File in Negligible Quality
Use Help Command to Know How to Use me
Made With 💕 By @Tellybots_4u
"""
HELP_TEXT = """
Recommended
➠ Just Send Me Media To Get Started
Delete Thumbnail
➠ Send /dthumb To Delete Thumbnail
Set Thumbnail
➠ Reply To Photo With /sthumb To Save Thumbnail
Made With 💕 By @Tellybots_4u
"""
ABOUT_TEXT = """
🤖 My Name : Media-Encoder-Bot\n
🚦 Version : <a href='https://telegram.me/tellybots_4u'>2.0</a>\n
💫 Source Code : <a href='https://t.me/tellybots_digital'>Click Here</a>\n
🗃️ Library : <a href='https://pyrogram.org'>Click Here</a>\n
👲 Developer : <a href='https://telegram.me/tellybots_4u'>TellyBots_4u</a>\n
📦 Last Updated : <a href='https://telegram.me/tellybots_4u'>[ 15-Dec-21 ] 15:00 PM</a>"""
START_BUTTONS = InlineKeyboardMarkup(
[[
InlineKeyboardButton('🤖 Update Channel', url='https://telegram.me/tellybots_4u'),
InlineKeyboardButton('💬 Support Group', url='https://telegram.me/tellybots_support')
],[
InlineKeyboardButton('❔ Help', callback_data='help'),
InlineKeyboardButton('⛔ Close', callback_data='close')
]]
)
HELP_BUTTONS = InlineKeyboardMarkup(
[[
InlineKeyboardButton('🏡 Home', callback_data='home'),
InlineKeyboardButton('👲 About', callback_data='about'),
InlineKeyboardButton('⛔ Close', callback_data='close')
]]
)
ABOUT_BUTTONS = InlineKeyboardMarkup(
[[
InlineKeyboardButton('🏡 Home', callback_data='home'),
InlineKeyboardButton('❔ Help', callback_data='help'),
InlineKeyboardButton('⛔ Close', callback_data='close')
]]
)