mirror of
https://github.com/TheCaduceus/FileStreamBot.git
synced 2026-01-15 08:23:28 -03:00
44 lines
648 B
Python
44 lines
648 B
Python
WelcomeText = \
|
|
"""
|
|
Hi **%(first_name)s**, send me a file to instantly generate file links.
|
|
"""
|
|
|
|
PrivacyText = \
|
|
"""
|
|
This bot securely stores your files to deliver its service.
|
|
"""
|
|
|
|
FileLinksText = \
|
|
"""
|
|
**Download Link:**
|
|
`%(dl_link)s`
|
|
"""
|
|
|
|
MediaLinksText = \
|
|
"""
|
|
**Download Link:**
|
|
`%(dl_link)s`
|
|
**Stream Link:**
|
|
`%(stream_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.
|
|
"""
|