55"""
66
77
8- class MsgText :
8+ class UserMessageText :
99 @property
1010 def WELCOME (self ):
1111 return _ (
@@ -108,9 +108,7 @@ def DESCRIPTION(self):
108108
109109 @property
110110 def DISABLE_PROFILE (self ):
111- return _ (
112- "Твоя анкета временно отключена. Чтобы снова её активировать, просто нажми на кнопку. 😊"
113- )
111+ return _ ("Твоя анкета отключена.\n \n 🔙 Чтобы активировать анкету" )
114112
115113 @property
116114 def ACTIVATE_PROFILE_ALERT (self ):
@@ -141,47 +139,45 @@ def INVITE_FRIENDS(self):
141139 )
142140
143141 @property
144- def ADMIN_WELCOME (self ):
145- return _ ("Ты администратор! " )
142+ def CHANGE_LANG (self ):
143+ return _ ("Выбери язык бота, на который хочешь переключиться: 🌐 " )
146144
147- @property
148- def PROFILE_STATS (self ):
149- return """
150- 📂 Profile: {} | 🔕 Inactive: {}
151- 🙍♂ Guys: {} | 🙍♀ Girls: {}
145+ def DONE_CHANGE_LANG (self , language : str ):
146+ return _ ("Язык бота изменён! ✅" , locale = language )
152147
153- 💘 Matchs: {}
148+ @property
149+ def REPORT_TO_USER (self ):
150+ return _ (
151+ "Пользователь <code>{}</code> (@{}) отправил жалобу на анкету пользователя: <code>{}</code> (@{})"
152+ )
154153
155- 🕘 Age: {}
156- 🏙 City: {}
157- """
154+ @ property
155+ def REPORT_TO_PROFILE ( self ):
156+ return _ ( "✅ Жалоба отправлена на рассмотрение!" )
158157
159158 @property
160- def USER_STATS (self ):
161- return """
162- 👤 Users: {}\t | 🚫 Blocked: {}
163- ✉️ Referrals: {}
159+ def RESON_OF_REPORTING (self ):
160+ return _ ("""Укажи причину жалобы:
161+ 🔞 Неприличный материал
162+ 💰 Реклама
163+ 🔫 Другое
164164
165- 🌍 Most popular language: {}
166- """
165+ Если жалоба ошибочная, то можете вернутся назад.
166+ """ )
167167
168- @property
169- def CHANGE_LANG (self ):
170- return _ ("Выбери язык бота, на который хочешь переключиться: 🌐" )
171168
169+ class AdminMessageText :
172170 @property
173- def DONE_CHANGE_LANG (self ):
174- return _ ("Язык бот изменён! ✅ " )
171+ def ADMIN_WELCOME (self ):
172+ return _ ("Ты администратор! " )
175173
176174 @property
177175 def NEW_USER (self ):
178- return _ ( "Новый пользователь !\n <code>{}</code> (@{})")
176+ return "New user !\n <code>{}</code> (@{})"
179177
180178 @property
181- def REPORT_TO_USER (self ):
182- return _ (
183- "Пользователь <code>{}</code> (@{}) отправил жалобу на анкету пользователя: <code>{}</code> (@{})"
184- )
179+ def MAILING_PANEL (self ):
180+ return _ ("Укажи текст сообщения которое будет отправленно" )
185181
186182 @property
187183 def USER_PANEL (self ):
@@ -200,30 +196,34 @@ def BAN_USERS_PANEL(self):
200196 )
201197
202198 @property
203- def USER_BANNED (self ):
204- return _ ("Пользователь: <code>{}</code> заблокирован" )
199+ def PROFILE_STATS (self ):
200+ return """
201+ 📂 Profile: {} | 🔕 Inactive: {}
202+ 🙍♂ Guys: {} | 🙍♀ Girls: {}
205203
206- @property
207- def USER_BANNED_CANCEL (self ):
208- return _ ("Администратор отклонил жалобу" )
204+ 💘 Matchs: {}
209205
210- @ property
211- def MAILING_PANEL ( self ):
212- return _ ( "Укажи текст сообщения которое будет отправленно" )
206+ 🕘 Age: {}
207+ 🏙 City: {}
208+ """
213209
214210 @property
215- def REPORT_TO_PROFILE (self ):
216- return _ ("✅ Жалоба отправлена на рассмотрение!" )
211+ def USER_STATS (self ):
212+ return """
213+ 👤 Users: {}\t | 🚫 Blocked: {}
214+ ✉️ Referrals: {}
215+
216+ 🌍 Most popular language: {}
217+ """
217218
218219 @property
219- def RESON_OF_REPORTING (self ):
220- return _ ("""Укажи причину жалобы:
221- 🔞 Неприличный материал
222- 💰 Реклама
223- 🔫 Другое
220+ def USER_BANNED (self ):
221+ return _ ("Пользователь: <code>{}</code> заблокирован" )
224222
225- Если жалоба ошибочная, то можете вернутся назад.
226- """ )
223+ @property
224+ def USER_BANNED_CANCEL (self ):
225+ return _ ("Администратор отклонил жалобу" )
227226
228227
229- msg_text = MsgText ()
228+ user_message_text = UserMessageText ()
229+ admin_message_text = AdminMessageText ()
0 commit comments