mirror of
https://github.com/TheCaduceus/FileStreamBot.git
synced 2026-01-15 16:33:25 -03:00
48 lines
1014 B
Python
48 lines
1014 B
Python
WelcomeText = \
|
|
"""
|
|
Hi **%(first_name)s**, send me a file or add me as an admin to any channel to instantly generate file links.
|
|
|
|
Add me to your channel to instantly generate links for any downloadable media. Once received, I will automatically attach appropriate buttons to the post containing the URL. If you want me to ignore a given post, you can insert `#pass` in the post.
|
|
|
|
- /start to get this message.
|
|
- /info to get user info.
|
|
- /log to get bot logs. (admin only!)
|
|
"""
|
|
|
|
FileLinksText = \
|
|
"""
|
|
**Download Link:**
|
|
`%(dl_link)s`
|
|
**Telegram File:**
|
|
`%(tg_link)s`
|
|
"""
|
|
|
|
MediaLinksText = \
|
|
"""
|
|
**Download Link:**
|
|
`%(dl_link)s`
|
|
**Stream Link:**
|
|
`%(stream_link)s`
|
|
**Telegram File:**
|
|
`%(tg_link)s`
|
|
"""
|
|
|
|
InvalidQueryText = \
|
|
"""
|
|
Query data mismatched.
|
|
"""
|
|
|
|
MessageNotExist = \
|
|
"""
|
|
File revoked or not exist.
|
|
"""
|
|
|
|
LinkRevokedText = \
|
|
"""
|
|
The link has been revoked. It may take some time for the changes to take effect.
|
|
"""
|
|
|
|
InvalidPayloadText = \
|
|
"""
|
|
Invalid payload.
|
|
""" |