Add missing shortcuts, new enums, reworked old stuff (#1070)

* Render shortcuts

* Render docs

* Added enumerations

* Added docs

* Use enums, removed Helper

* Bump butcher

* Added InputMediaType enum

* Added MaskPositionPoint, InlineQueryResultType enums

* Update texts

* Added StickerType enum

* Cover tests

* Update docs

* Fixed imports

* Re-enabled all pre-commit hooks
This commit is contained in:
Alex Root Junior 2022-12-04 03:05:49 +02:00 committed by GitHub
parent 3438d2446d
commit 3ea73fbbbd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
370 changed files with 19735 additions and 8380 deletions

View file

@ -15,3 +15,4 @@ For example :code:`sendMessage` named :code:`send_message` and has the same spec
:member-order: bysource
:special-members: __init__
:undoc-members: True
:noindex:

View file

@ -0,0 +1,9 @@
###################
BotCommandScopeType
###################
.. automodule:: aiogram.enums.bot_command_scope_type
:members:
:member-order: bysource
:undoc-members: True

View file

@ -0,0 +1,9 @@
##########
ChatAction
##########
.. automodule:: aiogram.enums.chat_action
:members:
:member-order: bysource
:undoc-members: True

View file

@ -0,0 +1,9 @@
################
ChatMemberStatus
################
.. automodule:: aiogram.enums.chat_member_status
:members:
:member-order: bysource
:undoc-members: True

View file

@ -1,5 +1,5 @@
#####
Types
Enums
#####
Here is list of all available enums:
@ -8,8 +8,19 @@ Here is list of all available enums:
.. toctree::
:maxdepth: 1
bot_command_scope_type
chat_action
chat_member_status
chat_type
content_type
dice_emoji
inline_query_result_type
input_media_type
mask_position_point
menu_button_type
message_entity_type
parse_mode
poll_type
sticker_type
topic_icon_color
update_type

View file

@ -0,0 +1,9 @@
#####################
InlineQueryResultType
#####################
.. automodule:: aiogram.enums.inline_query_result_type
:members:
:member-order: bysource
:undoc-members: True

View file

@ -0,0 +1,9 @@
##############
InputMediaType
##############
.. automodule:: aiogram.enums.input_media_type
:members:
:member-order: bysource
:undoc-members: True

View file

@ -0,0 +1,9 @@
#################
MaskPositionPoint
#################
.. automodule:: aiogram.enums.mask_position_point
:members:
:member-order: bysource
:undoc-members: True

View file

@ -0,0 +1,9 @@
##############
MenuButtonType
##############
.. automodule:: aiogram.enums.menu_button_type
:members:
:member-order: bysource
:undoc-members: True

View file

@ -0,0 +1,9 @@
#################
MessageEntityType
#################
.. automodule:: aiogram.enums.message_entity_type
:members:
:member-order: bysource
:undoc-members: True

View file

@ -0,0 +1,9 @@
#########
ParseMode
#########
.. automodule:: aiogram.enums.parse_mode
:members:
:member-order: bysource
:undoc-members: True

View file

@ -0,0 +1,9 @@
########
PollType
########
.. automodule:: aiogram.enums.poll_type
:members:
:member-order: bysource
:undoc-members: True

View file

@ -0,0 +1,9 @@
###########
StickerType
###########
.. automodule:: aiogram.enums.sticker_type
:members:
:member-order: bysource
:undoc-members: True

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return AnswerCallbackQuery(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.callback_query.CallbackQuery.answer`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return AnswerInlineQuery(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.inline_query.InlineQuery.answer`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return ApproveChatJoinRequest(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat_join_request.ChatJoinRequest.approve`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return BanChatMember(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.ban`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return BanChatSenderChat(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.ban_sender_chat`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return CopyMessage(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.copy_to`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return CreateChatInviteLink(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.create_invite_link`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return DeclineChatJoinRequest(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat_join_request.ChatJoinRequest.decline`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return DeleteChatPhoto(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.delete_photo`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return DeleteChatStickerSet(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.delete_sticker_set`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return DeleteMessage(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.delete`
- :meth:`aiogram.types.chat.Chat.delete_message`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return DeleteStickerFromSet(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.sticker.Sticker.delete_from_set`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return EditChatInviteLink(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.edit_invite_link`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return EditMessageCaption(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.edit_caption`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return EditMessageLiveLocation(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.edit_live_location`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return EditMessageMedia(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.edit_media`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return EditMessageReplyMarkup(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.edit_reply_markup`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return EditMessageText(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.edit_text`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return ExportChatInviteLink(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.export_invite_link`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return ForwardMessage(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.forward`

View file

@ -35,3 +35,11 @@ With specific bot
.. code-block:: python
result: List[Union[ChatMemberOwner, ChatMemberAdministrator, ChatMemberMember, ChatMemberRestricted, ChatMemberLeft, ChatMemberBanned]] = await bot(GetChatAdministrators(...))
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.get_administrators`

View file

@ -35,3 +35,11 @@ With specific bot
.. code-block:: python
result: Union[ChatMemberOwner, ChatMemberAdministrator, ChatMemberMember, ChatMemberRestricted, ChatMemberLeft, ChatMemberBanned] = await bot(GetChatMember(...))
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.get_member`

View file

@ -35,3 +35,11 @@ With specific bot
.. code-block:: python
result: int = await bot(GetChatMemberCount(...))
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.get_member_count`

View file

@ -1,37 +0,0 @@
###################
getChatMembersCount
###################
Returns: :obj:`int`
.. automodule:: aiogram.methods.get_chat_members_count
:members:
:member-order: bysource
:undoc-members: True
Usage
=====
As bot method
-------------
.. code-block::
result: int = await bot.get_chat_members_count(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.get_chat_members_count import GetChatMembersCount`
- alias: :code:`from aiogram.methods import GetChatMembersCount`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: int = await bot(GetChatMembersCount(...))

View file

@ -35,3 +35,11 @@ With specific bot
.. code-block:: python
result: UserProfilePhotos = await bot(GetUserProfilePhotos(...))
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.user.User.get_profile_photos`

View file

@ -1,44 +0,0 @@
##############
kickChatMember
##############
Returns: :obj:`bool`
.. automodule:: aiogram.methods.kick_chat_member
:members:
:member-order: bysource
:undoc-members: True
Usage
=====
As bot method
-------------
.. code-block::
result: bool = await bot.kick_chat_member(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.kick_chat_member import KickChatMember`
- alias: :code:`from aiogram.methods import KickChatMember`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: bool = await bot(KickChatMember(...))
As reply into Webhook in handler
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: python
return KickChatMember(...)

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return LeaveChat(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.leave`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return PinChatMessage(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.pin`
- :meth:`aiogram.types.chat.Chat.pin_message`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return PromoteChatMember(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.promote`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return RestrictChatMember(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.restrict`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return RevokeChatInviteLink(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.revoke_invite_link`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return SendAnimation(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.answer_animation`
- :meth:`aiogram.types.message.Message.reply_animation`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return SendAudio(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.answer_audio`
- :meth:`aiogram.types.message.Message.reply_audio`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return SendChatAction(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.do`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return SendContact(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.answer_contact`
- :meth:`aiogram.types.message.Message.reply_contact`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return SendDice(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.answer_dice`
- :meth:`aiogram.types.message.Message.reply_dice`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return SendDocument(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.answer_document`
- :meth:`aiogram.types.message.Message.reply_document`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return SendGame(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.answer_game`
- :meth:`aiogram.types.message.Message.reply_game`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return SendInvoice(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.answer_invoice`
- :meth:`aiogram.types.message.Message.reply_invoice`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return SendLocation(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.answer_location`
- :meth:`aiogram.types.message.Message.reply_location`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return SendMediaGroup(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.answer_media_group`
- :meth:`aiogram.types.message.Message.reply_media_group`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return SendMessage(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.answer`
- :meth:`aiogram.types.message.Message.reply`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return SendPhoto(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.answer_photo`
- :meth:`aiogram.types.message.Message.reply_photo`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return SendPoll(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.answer_poll`
- :meth:`aiogram.types.message.Message.reply_poll`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return SendSticker(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.answer_sticker`
- :meth:`aiogram.types.message.Message.reply_sticker`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return SendVenue(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.answer_venue`
- :meth:`aiogram.types.message.Message.reply_venue`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return SendVideo(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.answer_video`
- :meth:`aiogram.types.message.Message.reply_video`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return SendVideoNote(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.answer_video_note`
- :meth:`aiogram.types.message.Message.reply_video_note`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return SendVoice(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.answer_voice`
- :meth:`aiogram.types.message.Message.reply_voice`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return SetChatAdministratorCustomTitle(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.set_administrator_custom_title`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return SetChatDescription(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.set_description`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return SetChatPermissions(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.set_permissions`

View file

@ -35,3 +35,11 @@ With specific bot
.. code-block:: python
result: bool = await bot(SetChatPhoto(...))
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.set_photo`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return SetChatStickerSet(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.set_sticker_set`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return SetChatTitle(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.set_title`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return SetStickerPositionInSet(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.sticker.Sticker.set_position_in_set`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return StopMessageLiveLocation(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.stop_live_location`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return UnbanChatMember(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.unban`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return UnbanChatSenderChat(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.unban_sender_chat`

View file

@ -42,3 +42,9 @@ As reply into Webhook in handler
.. code-block:: python
return UnpinAllChatMessages(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.chat.Chat.unpin_all_messages`

View file

@ -42,3 +42,10 @@ As reply into Webhook in handler
.. code-block:: python
return UnpinChatMessage(...)
As shortcut from received object
--------------------------------
- :meth:`aiogram.types.message.Message.unpin`
- :meth:`aiogram.types.chat.Chat.unpin_message`

View file

@ -190,3 +190,11 @@ Games
callback_game
game
game_high_score
Internals
=========
.. toctree::
:maxdepth: 1
error_event

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,30 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/enums/bot_command_scope_type.rst:3
msgid "BotCommandScopeType"
msgstr ""
#: aiogram.enums.bot_command_scope_type.BotCommandScopeType:1 of
msgid "This object represents the scope to which bot commands are applied."
msgstr ""
#: aiogram.enums.bot_command_scope_type.BotCommandScopeType:3 of
msgid "Source: https://core.telegram.org/bots/api#botcommandscope"
msgstr ""

View file

@ -0,0 +1,66 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/enums/chat_action.rst:3
msgid "ChatAction"
msgstr ""
#: aiogram.enums.chat_action.ChatAction:1 of
msgid "This object represents bot actions."
msgstr ""
#: aiogram.enums.chat_action.ChatAction:3 of
msgid "Choose one, depending on what the user is about to receive:"
msgstr ""
#: aiogram.enums.chat_action.ChatAction:5 of
msgid "typing for text messages,"
msgstr ""
#: aiogram.enums.chat_action.ChatAction:6 of
msgid "upload_photo for photos,"
msgstr ""
#: aiogram.enums.chat_action.ChatAction:7 of
msgid "record_video or upload_video for videos,"
msgstr ""
#: aiogram.enums.chat_action.ChatAction:8 of
msgid "record_voice or upload_voice for voice notes,"
msgstr ""
#: aiogram.enums.chat_action.ChatAction:9 of
msgid "upload_document for general files,"
msgstr ""
#: aiogram.enums.chat_action.ChatAction:10 of
msgid "choose_sticker for stickers,"
msgstr ""
#: aiogram.enums.chat_action.ChatAction:11 of
msgid "find_location for location data,"
msgstr ""
#: aiogram.enums.chat_action.ChatAction:12 of
msgid "record_video_note or upload_video_note for video notes."
msgstr ""
#: aiogram.enums.chat_action.ChatAction:14 of
msgid "Source: https://core.telegram.org/bots/api#sendchataction"
msgstr ""

View file

@ -0,0 +1,30 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/enums/chat_member_status.rst:3
msgid "ChatMemberStatus"
msgstr ""
#: aiogram.enums.chat_member_status.ChatMemberStatus:1 of
msgid "This object represents chat member status."
msgstr ""
#: aiogram.enums.chat_member_status.ChatMemberStatus:3 of
msgid "Source: https://core.telegram.org/bots/api#chatmember"
msgstr ""

View file

@ -0,0 +1,30 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/enums/chat_type.rst:3
msgid "ChatType"
msgstr ""
#: aiogram.enums.chat_type.ChatType:1 of
msgid "This object represents a chat type"
msgstr ""
#: aiogram.enums.chat_type.ChatType:3 of
msgid "Source: https://core.telegram.org/bots/api#chat"
msgstr ""

View file

@ -0,0 +1,26 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/enums/content_type.rst:3
msgid "ContentType"
msgstr ""
#: aiogram.enums.content_type.ContentType:1 of
msgid "This object represents a type of content in message"
msgstr ""

View file

@ -0,0 +1,30 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/enums/dice_emoji.rst:3
msgid "DiceEmoji"
msgstr ""
#: aiogram.enums.dice_emoji.DiceEmoji:1 of
msgid "Emoji on which the dice throw animation is based"
msgstr ""
#: aiogram.enums.dice_emoji.DiceEmoji:3 of
msgid "Source: https://core.telegram.org/bots/api#dice"
msgstr ""

View file

@ -0,0 +1,26 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/enums/index.rst:3
msgid "Types"
msgstr ""
#: ../../api/enums/index.rst:5
msgid "Here is list of all available enums:"
msgstr ""

View file

@ -0,0 +1,30 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/enums/inline_query_result_type.rst:3
msgid "InlineQueryResultType"
msgstr ""
#: aiogram.enums.inline_query_result_type.InlineQueryResultType:1 of
msgid "The part of the face relative to which the mask should be placed."
msgstr ""
#: aiogram.enums.inline_query_result_type.InlineQueryResultType:3 of
msgid "Source: https://core.telegram.org/bots/api#maskposition"
msgstr ""

View file

@ -0,0 +1,30 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/enums/input_media_type.rst:3
msgid "InputMediaType"
msgstr ""
#: aiogram.enums.input_media_type.InputMediaType:1 of
msgid "This object represents input media type"
msgstr ""
#: aiogram.enums.input_media_type.InputMediaType:3 of
msgid "Source: https://core.telegram.org/bots/api#inputmedia"
msgstr ""

View file

@ -0,0 +1,30 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/enums/mask_position_point.rst:3
msgid "MaskPositionPoint"
msgstr ""
#: aiogram.enums.mask_position_point.MaskPositionPoint:1 of
msgid "The part of the face relative to which the mask should be placed."
msgstr ""
#: aiogram.enums.mask_position_point.MaskPositionPoint:3 of
msgid "Source: https://core.telegram.org/bots/api#maskposition"
msgstr ""

View file

@ -0,0 +1,30 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/enums/menu_button_type.rst:3
msgid "MenuButtonType"
msgstr ""
#: aiogram.enums.menu_button_type.MenuButtonType:1 of
msgid "This object represents an type of Menu button"
msgstr ""
#: aiogram.enums.menu_button_type.MenuButtonType:3 of
msgid "Source: https://core.telegram.org/bots/api#menubuttondefault"
msgstr ""

View file

@ -0,0 +1,30 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/enums/message_entity_type.rst:3
msgid "MessageEntityType"
msgstr ""
#: aiogram.enums.message_entity_type.MessageEntityType:1 of
msgid "This object represents type of message entity"
msgstr ""
#: aiogram.enums.message_entity_type.MessageEntityType:3 of
msgid "Source: https://core.telegram.org/bots/api#messageentity"
msgstr ""

View file

@ -0,0 +1,30 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/enums/parse_mode.rst:3
msgid "ParseMode"
msgstr ""
#: aiogram.enums.parse_mode.ParseMode:1 of
msgid "Formatting options"
msgstr ""
#: aiogram.enums.parse_mode.ParseMode:3 of
msgid "Source: https://core.telegram.org/bots/api#formatting-options"
msgstr ""

View file

@ -0,0 +1,30 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/enums/poll_type.rst:3
msgid "PollType"
msgstr ""
#: aiogram.enums.poll_type.PollType:1 of
msgid "This object represents poll type"
msgstr ""
#: aiogram.enums.poll_type.PollType:3 of
msgid "Source: https://core.telegram.org/bots/api#poll"
msgstr ""

View file

@ -0,0 +1,32 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/enums/topic_icon_color.rst:3
msgid "TopicIconColor"
msgstr ""
#: aiogram.enums.topic_icon_color.TopicIconColor:1 of
msgid "Color of the topic icon in RGB format."
msgstr ""
#: aiogram.enums.topic_icon_color.TopicIconColor:3 of
msgid ""
"Source: "
"https://github.com/telegramdesktop/tdesktop/blob/991fe491c5ae62705d77aa8fdd44a79caf639c45/Telegram/SourceFiles/data/data_forum_topic.cpp#L51-L56"
msgstr ""

View file

@ -0,0 +1,30 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/enums/update_type.rst:3
msgid "UpdateType"
msgstr ""
#: aiogram.enums.update_type.UpdateType:1 of
msgid "This object represents the complete list of allowed update types"
msgstr ""
#: aiogram.enums.update_type.UpdateType:3 of
msgid "Source: https://core.telegram.org/bots/api#update"
msgstr ""

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-06 14:18+0200\n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -120,6 +120,14 @@ msgstr ""
msgid "As reply into Webhook in handler"
msgstr ""
#: ../../api/methods/answer_callback_query.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/answer_callback_query.rst:50
msgid ":meth:`aiogram.types.callback_query.CallbackQuery.answer`"
msgstr ""
#~ msgid ""
#~ "Use this method to send answers to"
#~ " callback queries sent from `inline "

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-06 14:18+0200\n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -123,6 +123,14 @@ msgstr ""
msgid "As reply into Webhook in handler"
msgstr ""
#: ../../api/methods/answer_inline_query.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/answer_inline_query.rst:50
msgid ":meth:`aiogram.types.inline_query.InlineQuery.answer`"
msgstr ""
#~ msgid ""
#~ "`Deep-linking <https://core.telegram.org/bots#deep-"
#~ "linking>`_ parameter for the /start "

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-10-01 22:51+0300\n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -83,3 +83,11 @@ msgstr ""
#: ../../api/methods/approve_chat_join_request.rst:40
msgid "As reply into Webhook in handler"
msgstr ""
#: ../../api/methods/approve_chat_join_request.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/approve_chat_join_request.rst:50
msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.approve`"
msgstr ""

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-10-01 22:51+0300\n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -98,3 +98,11 @@ msgstr ""
#: ../../api/methods/ban_chat_member.rst:40
msgid "As reply into Webhook in handler"
msgstr ""
#: ../../api/methods/ban_chat_member.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/ban_chat_member.rst:50
msgid ":meth:`aiogram.types.chat.Chat.ban`"
msgstr ""

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-10-01 22:51+0300\n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -83,3 +83,11 @@ msgstr ""
#: ../../api/methods/ban_chat_sender_chat.rst:40
msgid "As reply into Webhook in handler"
msgstr ""
#: ../../api/methods/ban_chat_sender_chat.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/ban_chat_sender_chat.rst:50
msgid ":meth:`aiogram.types.chat.Chat.ban_sender_chat`"
msgstr ""

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-06 14:18+0200\n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -149,6 +149,14 @@ msgstr ""
msgid "As reply into Webhook in handler"
msgstr ""
#: ../../api/methods/copy_message.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/copy_message.rst:50
msgid ":meth:`aiogram.types.message.Message.copy_to`"
msgstr ""
#~ msgid ""
#~ "Additional interface options. A JSON-"
#~ "serialized object for an `inline "

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-10-01 22:51+0300\n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -108,3 +108,11 @@ msgstr ""
#: ../../api/methods/create_chat_invite_link.rst:40
msgid "As reply into Webhook in handler"
msgstr ""
#: ../../api/methods/create_chat_invite_link.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/create_chat_invite_link.rst:50
msgid ":meth:`aiogram.types.chat.Chat.create_invite_link`"
msgstr ""

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-06 14:18+0200\n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -52,8 +52,9 @@ msgstr ""
#: ../../docstring
#: aiogram.methods.create_forum_topic.CreateForumTopic.icon_color:1 of
msgid ""
"Color of the topic icon in RGB format. Currently, must be one of "
"0x6FB9F0, 0xFFD67E, 0xCB86DB, 0x8EEE98, 0xFF93B2, or 0xFB6F5F"
"Color of the topic icon in RGB format. Currently, must be one of 7322096 "
"(0x6FB9F0), 16766590 (0xFFD67E), 13338331 (0xCB86DB), 9367192 (0x8EEE98),"
" 16749490 (0xFF93B2), or 16478047 (0xFB6F5F)"
msgstr ""
#: ../../docstring
@ -96,3 +97,10 @@ msgstr ""
#: ../../api/methods/create_forum_topic.rst:40
msgid "As reply into Webhook in handler"
msgstr ""
#~ msgid ""
#~ "Color of the topic icon in RGB "
#~ "format. Currently, must be one of "
#~ "0x6FB9F0, 0xFFD67E, 0xCB86DB, 0x8EEE98, "
#~ "0xFF93B2, or 0xFB6F5F"
#~ msgstr ""

Some files were not shown because too many files have changed in this diff Show more