-
Notifications
You must be signed in to change notification settings - Fork 4
/
context.py
29 lines (25 loc) · 1.27 KB
/
context.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
welcome = """Hi, welcome
سلام خوش آمدی
مرحبا أهلا وسهلا
こんにちはようこそ
"""
class en:
cancel = "Cancel!"
ask_name = "Whats your name?"
ask_age = "How old are you?"
ask_phone_number = "Send me your phone number with code (example: +98xxxxxxxxxx):"
already_registered = "Dear {msg.from_user.first_name}, you are already registered."
register_canceled = "OK! if you want to register, send /start again"
user_registered = "You have registered successfully."
error_occurred = "An error occurred! please try again."
invalid_input = "Invalid input!"
class fa:
cancel = "لغو!"
ask_name = "اسم شما چیست?"
ask_age = "چند سال دارید?"
ask_phone_number = "شماره موبایل خود را با کد وارد کنید (مثال: +98xxxxxxxxxx):"
already_registered = "{msg.from_user.first_name} عزیز, شما درحال حاضر ثبت نام شده اید."
register_canceled = "اوکی! اگر هنوز مایل به ثبت نام هستی /start را دوباره بفرست"
user_registered = "شما با موفقیت ثبت نام شدید.."
error_occurred = "یک خطا رخ داده! مجدد تلاش کنید.."
invalid_input = "ورودی نا معتبر!"