-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtranslate.py
More file actions
24 lines (23 loc) · 1.46 KB
/
translate.py
File metadata and controls
24 lines (23 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Language translations
TRANSLATIONS = {
"en": {
"welcome": "✅ Welcome {name}, access granted.",
"not_authorized": "🔐 You are not on the access list.\nIf you're whitelisted by phone number, please share your contact.",
"phone_verified": "✅ Phone number verified. Access granted.",
"phone_denied": "❌ Access denied. You are not whitelisted.",
"secret": "🎉 Here's the secret feature!",
"not_verified": "❌ You are not authorized. Please use /start first.",
"share_contact": "Share Contact 📱",
"language_set": "🌐 Language set to English.",
},
"fa": {
"welcome": "✅ خوش آمدید {name}، دسترسی شما تأیید شد.",
"not_authorized": "🔐 شما در لیست دسترسی نیستید.\nاگر با کاربر مجاز هستید، لطفاً شماره تماس خود را ارسال کنید.",
"phone_verified": "✅ شماره تلفن شما تأیید شد. دسترسی فعال شد.",
"phone_denied": "❌ دسترسی رد شد. شما در لیست سفید نیستید.",
"secret": "🎉 این قابلیت مخفی برای شما فعال است!",
"not_verified": "❌ شما مجاز نیستید. لطفاً ابتدا از /start استفاده کنید.",
"share_contact": "📱 اشتراکگذاری شماره تماس",
"language_set": "🌐 زبان به فارسی تنظیم شد.",
}
}