Beispiel #1
0
 def get_commands(self):
     # type: () -> [BotCommand]
     commands = [
         BotCommand('menu', 'показать меню | display menu'),
         BotCommand('today_plan', 'план на сегодня | plan for today')
     ]
     return commands
Beispiel #2
0
 def get_commands(self):
     # type: () -> [BotCommand]
     commands = [
         BotCommand('send_mail', 'отправить адрес для авторизации'),
         BotCommand('auth_code', 'предоставить код авторизации'),
     ]
     return commands
Beispiel #3
0
 def get_commands(self):
     # type: () -> [BotCommand]
     commands = [
         BotCommand('start', 'начать (о боте) | start (about bot)'),
         BotCommand('menu', 'показать меню | display menu'),
         BotCommand('set_language', 'изменить язык | set language'),
     ]
     return commands
Beispiel #4
0
 def get_commands(self):
     # type: () -> [BotCommand]
     commands = [
         BotCommand('start', 'start (about bot)'),
         BotCommand('menu', 'display menu'),
         BotCommand('vmp', 'viewing message properties'),
     ]
     return commands
Beispiel #5
0
 def get_commands(self):
     # type: () -> [BotCommand]
     commands = [
         BotCommand('start', 'о боте'),
         BotCommand('menu', 'показать меню'),
         BotCommand('vmp', 'показать свойства сообщения'),
     ]
     return commands
Beispiel #6
0
 def get_commands(self):
     # type: () -> [BotCommand]
     self.lgz.warning('The default command list is used. Maybe is error?')
     commands = [
         BotCommand('start', 'начать (о боте) | start (about bot)'),
         BotCommand('menu', 'показать меню | display menu'),
         BotCommand('list_all_chats', 'список всех чатов | list all chats'),
         BotCommand('view_chats_available',
                    'доступные чаты | available chats'),
         BotCommand('subscriptions_mng',
                    'управление подписками | managing subscriptions'),
         BotCommand('view_chats_attached',
                    'подключенные чаты | attached chats'),
         BotCommand('view_buttons_test', 'тест кнопок | buttons test'),
     ]
     if len(self.languages_dict) > 1:
         commands.append(
             BotCommand('set_language', 'изменить язык | set language'))
     return commands