Spaces:
Runtime error
Runtime error
Create texts.py
Browse files- bot/ui/texts.py +18 -0
bot/ui/texts.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# PATH: bot/ui/texts.py
|
| 2 |
+
START_TEXT = (
|
| 3 |
+
"✅ Online.\n\n"
|
| 4 |
+
"Main:\n"
|
| 5 |
+
"• Send me a video (private chat)\n"
|
| 6 |
+
"• /auth to add Google profile\n"
|
| 7 |
+
"• /profiles to view profiles\n"
|
| 8 |
+
"• /stats (owner)\n"
|
| 9 |
+
"• /allow (owner)\n"
|
| 10 |
+
)
|
| 11 |
+
|
| 12 |
+
NEED_AUTH = "❌ No authorized YouTube profile. Use /auth first."
|
| 13 |
+
OWNER_ONLY = "❌ Owner only."
|
| 14 |
+
NOT_ALLOWED = "❌ You are not allowed to use this bot."
|
| 15 |
+
SENT_AUTH_LINK = "✅ Open this link and authorize:\n"
|
| 16 |
+
UPLOAD_START = "⬇️ Downloading…"
|
| 17 |
+
UPLOAD_TO_YT = "⬆️ Uploading to YouTube…"
|
| 18 |
+
DONE = "✅ Uploaded!"
|