Remove filters factory, introduce docs translation (#978)

* Rewrite filters

* Update README.rst

* Fixed tests

* Small optimization of the Text filter (TY to @bomzheg)

* Remove dataclass slots argument in due to the only Python 3.10 has an slots argument

* Fixed mypy

* Update tests

* Disable Python 3.11

* Fixed #1013: Empty mention should be None instead of empty string.

* Added #990 to the changelog

* Added #942 to the changelog

* Fixed coverage

* Update poetry and dependencies

* Fixed mypy

* Remove deprecated code

* Added more tests, update pyproject.toml

* Partial update docs

* Added initial Docs translation files

* Added more changes

* Added log message when connection is established in polling process

* Fixed action

* Disable lint for PyPy

* Added changelog for docs translation
This commit is contained in:
Alex Root Junior 2022-10-02 00:04:31 +03:00 committed by GitHub
parent 94030903ec
commit f4251382e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
610 changed files with 61738 additions and 1687 deletions

View file

@ -0,0 +1,9 @@
##########
ErrorEvent
##########
.. automodule:: aiogram.types.error_event
:members:
:member-order: bysource
:undoc-members: True

View file

@ -189,3 +189,12 @@ Games
game
callback_game
game_high_score
Internal events
===============
.. toctree::
:maxdepth: 1
error_event

View file

@ -62,3 +62,5 @@ texinfo_documents = [
"Miscellaneous",
),
]
add_module_names = False

View file

@ -3,7 +3,7 @@ CallbackQueryHandler
####################
.. automodule:: aiogram.handler.callback_query
.. automodule:: aiogram.handlers.callback_query
:members:
:member-order: bysource
:undoc-members: True

View file

@ -86,10 +86,10 @@ Handle user leave or join events
from aiogram.filters import IS_MEMBER, IS_NOT_MEMBER
@router.chat_member(ChatMemberUpdatedFilter(member_status_changed=IS_MEMBER >> IS_NOT_MEMBER))
@router.chat_member(ChatMemberUpdatedFilter(IS_MEMBER >> IS_NOT_MEMBER))
async def on_user_leave(event: ChatMemberUpdated): ...
@router.chat_member(ChatMemberUpdatedFilter(member_status_changed=IS_NOT_MEMBER >> IS_MEMBER))
@router.chat_member(ChatMemberUpdatedFilter(IS_NOT_MEMBER >> IS_MEMBER))
async def on_user_join(event: ChatMemberUpdated): ...
Or construct your own terms via using pre-defined set of statuses and transitions.

View file

@ -3,7 +3,7 @@ Command
=======
.. autoclass:: aiogram.filters.command.Command
:members:
:members: __init__
:member-order: bysource
:undoc-members: False
@ -18,10 +18,11 @@ When filter is passed the :class:`aiogram.filters.command.CommandObject` will be
Usage
=====
1. Filter single variant of commands: :code:`Command(commands=["start"])` or :code:`Command(commands="start")`
2. Handle command by regexp pattern: :code:`Command(commands=[re.compile(r"item_(\d+)")])`
3. Match command by multiple variants: :code:`Command(commands=["item", re.compile(r"item_(\d+)")])`
4. Handle commands in public chats intended for other bots: :code:`Command(commands=["command"], commands_ignore_mention=True)`
1. Filter single variant of commands: :code:`Command("start")`
2. Handle command by regexp pattern: :code:`Command(re.compile(r"item_(\d+)"))`
3. Match command by multiple variants: :code:`Command("item", re.compile(r"item_(\d+)"))`
4. Handle commands in public chats intended for other bots: :code:`Command("command", ignore_mention=True)`
5. Use :class:`aiogram.types.bot_command.BotCommand` object as command reference :code:`Command(BotCommand(command="command", description="My awesome command")`
.. warning::

View file

@ -1,33 +0,0 @@
==================
ContentTypesFilter
==================
.. autoclass:: aiogram.filters.content_types.ContentTypesFilter
:members:
:member-order: bysource
:undoc-members: False
Can be imported:
- :code:`from aiogram.filters.content_types import ContentTypesFilter`
- :code:`from aiogram.filters import ContentTypesFilter`
Or used from filters factory by passing corresponding arguments to handler registration line
Usage
=====
1. Single content type: :code:`ContentTypesFilter(content_types=["sticker"])` or :code:`ContentTypesFilter(content_types="sticker")`
2. Multiple content types: :code:`ContentTypesFilter(content_types=["sticker", "photo"])`
3. Recommended: With usage of `ContentType` helper: :code:`ContentTypesFilter(content_types=[ContentType.PHOTO])`
4. Any content type: :code:`ContentTypesFilter(content_types=[ContentType.ANY])`
Allowed handlers
================
Allowed update types for this filter:
- :code:`message`
- :code:`edited_message`
- :code:`channel_post`
- :code:`edited_channel_post`

View file

@ -2,13 +2,6 @@
Filtering events
================
.. danger::
Note that the design of filters will be changed in 3.0b5
`Read more >> <https://github.com/aiogram/aiogram/issues/942>`_
Filters is needed for routing updates to the specific handler.
Searching of handler is always stops on first match set of filters are pass.
@ -23,91 +16,40 @@ Here is list of builtin filters:
:maxdepth: 1
command
content_types
text
chat_member_updated
exception
magic_filters
magic_data
callback_data
exception
Own filters specification
Writing own filters
=========================
Filters can be:
- Asynchronous function (:code:`async def my_filter(*args, **kwargs): pass`)
- Synchronous function (:code:`def my_filter(*args, **kwargs): pass`)
- Anonymous function (:code:`lambda event: True`)
- Any awaitable object
- Subclass of :class:`aiogram.filters.base.BaseFilter`
- Subclass of :class:`aiogram.filters.base.Filter`
- Instances of :ref:`MagicFilter <magic-filters>`
Filters should return bool or dict.
and should return bool or dict.
If the dictionary is passed as result of filter - resulted data will be propagated to the next
filters and handler as keywords arguments.
Writing bound filters
=====================
Base class for own filters
--------------------------
.. autoclass:: aiogram.filters.base.BaseFilter
:members: __call__
.. autoclass:: aiogram.filters.base.Filter
:members: __call__,update_handler_flags
:member-order: bysource
:undoc-members: False
Own filter example
------------------
For example if you need to make simple text filter:
.. code-block:: python
from aiogram.filters import BaseFilter
class MyText(BaseFilter):
my_text: str
async def __call__(self, message: Message) -> bool:
return message.text == self.my_text
router.message.bind_filter(MyText)
@router.message(my_text="hello")
async def my_handler(message: Message): ...
.. note::
Bound filters is always recursive propagates to the nested routers but will be available
in nested routers only after attaching routers so that's mean you will need to
include routers before registering handlers.
Resolving filters with default value
====================================
Bound Filters with only default arguments will be automatically applied with default values
to each handler in the router and nested routers to which this filter is bound.
For example, although we do not specify :code:`chat_type` in the handler filters,
but since the filter has a default value, the filter will be applied to the handler
with a default value :code:`private`:
.. code-block:: python
class ChatType(BaseFilter):
chat_type: str = "private"
async def __call__(self, message: Message , event_chat: Chat) -> bool:
if event_chat:
return event_chat.type == self.chat_type
else:
return False
router.message.bind_filter(ChatType)
@router.message()
async def my_handler(message: Message): ...
.. literalinclude:: ../../../examples/own_filter.py

View file

@ -1,6 +1,6 @@
====
=========
MagicData
====
=========
.. autoclass:: aiogram.filters.magic_data.MagicData
:members:
@ -9,7 +9,6 @@ MagicData
Can be imported:
- :code:`from aiogram.filters.magic_data import MagicData`
- :code:`from aiogram.filters import MagicData`
Or used from filters factory by passing corresponding arguments to handler registration line
@ -17,7 +16,7 @@ Or used from filters factory by passing corresponding arguments to handler regis
Usage
=====
#. :code:`MagicData(magic_data=F.event.from_user.id == F.config.admin_id)` (Note that :code:`config` should be passed from middleware)
#. :code:`MagicData(F.event.from_user.id == F.config.admin_id)` (Note that :code:`config` should be passed from middleware)
Allowed handlers

View file

@ -11,7 +11,6 @@ Can be imported:
- :code:`from aiogram.filters.text import Text`
- :code:`from aiogram.filters import Text`
- :code:`from.filters import Text`
Or used from filters factory by passing corresponding arguments to handler registration line
@ -19,11 +18,11 @@ Usage
=====
#. Text equals with the specified value: :code:`Text(text="text") # value == 'text'`
#. Text starts with the specified value: :code:`Text(text_startswith="text") # value.startswith('text')`
#. Text ends with the specified value: :code:`Text(text_endswith="text") # value.endswith('text')`
#. Text contains the specified value: :code:`Text(text_contains="text") # value in 'text'`
#. Text starts with the specified value: :code:`Text(startswith="text") # value.startswith('text')`
#. Text ends with the specified value: :code:`Text(endswith="text") # value.endswith('text')`
#. Text contains the specified value: :code:`Text(contains="text") # value in 'text'`
#. Any of previous listed filters can be list, set or tuple of strings that's mean any of listed value should be equals/startswith/endswith/contains: :code:`Text(text=["text", "spam"])`
#. Ignore case can be combined with any previous listed filter: :code:`Text(text="Text", text_ignore_case=True) # value.lower() == 'text'.lower()`
#. Ignore case can be combined with any previous listed filter: :code:`Text(text="Text", ignore_case=True) # value.lower() == 'text'.lower()`
Allowed handlers
================

View file

@ -42,7 +42,7 @@ Via filters
.. code-block:: python
class Command(BaseFilter):
class Command(Filter):
...
def update_handler_flags(self, flags: Dict[str, Any]) -> None:

View file

@ -44,8 +44,8 @@ Message
(For example text, sticker and document are always of different content types of message)
Recommended way to check field availability before usage or use
:class:`aiogram.filters.content_types.ContentTypesFilter`
Recommended way to check field availability before usage, for example via :ref:`magic filter <magic-filters>`:
:code:`F.text` to handle text, :code:`F.sticker` to handle stickers only and etc.
.. code-block:: python
@ -141,7 +141,7 @@ Errors
.. code-block:: python
@router.errors()
async def error_handler(exception: Exception) -> Any: pass
async def error_handler(exception: ErrorEvent) -> Any: pass
Is useful for handling errors from other handlers
@ -152,9 +152,8 @@ Nested routers
.. warning::
Routers by the way can be nested to an another routers with some limitations:
1. Router **CAN NOT** include itself
1. Routers **CAN NOT** be used for circular including (router 1 include router 2, router 2 include router 3, router 3 include router 1)
1. Router **CAN NOT** include itself
1. Routers **CAN NOT** be used for circular including (router 1 include router 2, router 2 include router 3, router 3 include router 1)
Example:
@ -170,7 +169,7 @@ Example:
.. code-block:: python
:caption: module_12.py
:caption: module_2.py
:name: module_1
from module_2 import router2

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,188 @@
# 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-10-01 22:51+0300\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/download_file.rst:3
msgid "How to download file?"
msgstr ""
#: ../../api/download_file.rst:6
msgid "Download file manually"
msgstr ""
#: ../../api/download_file.rst:8
msgid ""
"First, you must get the `file_id` of the file you want to download. "
"Information about files sent to the bot is contained in `Message "
"<types/message.html>`__."
msgstr ""
#: ../../api/download_file.rst:11
msgid "For example, download the document that came to the bot."
msgstr ""
#: ../../api/download_file.rst:17
msgid ""
"Then use the `getFile <methods/get_file.html>`__ method to get "
"`file_path`."
msgstr ""
#: ../../api/download_file.rst:24
msgid ""
"After that, use the `download_file <#download-file>`__ method from the "
"bot object."
msgstr ""
#: ../../api/download_file.rst:27
msgid "download_file(...)"
msgstr ""
#: ../../api/download_file.rst:29
msgid "Download file by `file_path` to destination."
msgstr ""
#: ../../api/download_file.rst:31 ../../api/download_file.rst:81
msgid ""
"If you want to automatically create destination (:obj:`io.BytesIO`) use "
"default value of destination and handle result of this method."
msgstr ""
#: aiogram.client.bot.Bot:1 of
msgid "Bot class"
msgstr ""
#: aiogram.client.bot.Bot.download_file:1 of
msgid "Download file by file_path to destination."
msgstr ""
#: aiogram.client.bot.Bot.download:3 aiogram.client.bot.Bot.download_file:3 of
msgid ""
"If you want to automatically create destination (:class:`io.BytesIO`) use"
" default value of destination and handle result of this method."
msgstr ""
#: aiogram.client.bot.Bot.download aiogram.client.bot.Bot.download_file of
msgid "Parameters"
msgstr ""
#: aiogram.client.bot.Bot.download_file:6 of
msgid ""
"File path on Telegram server (You can get it from "
":obj:`aiogram.types.File`)"
msgstr ""
#: aiogram.client.bot.Bot.download:7 aiogram.client.bot.Bot.download_file:7 of
msgid ""
"Filename, file path or instance of :class:`io.IOBase`. For e.g. "
":class:`io.BytesIO`, defaults to None"
msgstr ""
#: aiogram.client.bot.Bot.download:8 aiogram.client.bot.Bot.download_file:8 of
msgid "Total timeout in seconds, defaults to 30"
msgstr ""
#: aiogram.client.bot.Bot.download:9 aiogram.client.bot.Bot.download_file:9 of
msgid "File chunks size, defaults to 64 kb"
msgstr ""
#: aiogram.client.bot.Bot.download:10 aiogram.client.bot.Bot.download_file:10
#: of
msgid ""
"Go to start of file when downloading is finished. Used only for "
"destination with :class:`typing.BinaryIO` type, defaults to True"
msgstr ""
#: ../../api/download_file.rst:38
msgid ""
"There are two options where you can download the file: to **disk** or to "
"**binary I/O object**."
msgstr ""
#: ../../api/download_file.rst:41
msgid "Download file to disk"
msgstr ""
#: ../../api/download_file.rst:43
msgid ""
"To download file to disk, you must specify the file name or path where to"
" download the file. In this case, the function will return nothing."
msgstr ""
#: ../../api/download_file.rst:51
msgid "Download file to binary I/O object"
msgstr ""
#: ../../api/download_file.rst:53
msgid ""
"To download file to binary I/O object, you must specify an object with "
"the :obj:`typing.BinaryIO` type or use the default (:obj:`None`) value."
msgstr ""
#: ../../api/download_file.rst:56
msgid "In the first case, the function will return your object:"
msgstr ""
#: ../../api/download_file.rst:64
msgid ""
"If you leave the default value, an :obj:`io.BytesIO` object will be "
"created and returned."
msgstr ""
#: ../../api/download_file.rst:72
msgid "Download file in short way"
msgstr ""
#: ../../api/download_file.rst:74
msgid ""
"Getting `file_path` manually every time is boring, so you should use the "
"`download <#download>`__ method."
msgstr ""
#: ../../api/download_file.rst:77
msgid "download(...)"
msgstr ""
#: ../../api/download_file.rst:79
msgid "Download file by `file_id` or `Downloadable` object to destination."
msgstr ""
#: aiogram.client.bot.Bot.download:1 of
msgid "Download file by file_id or Downloadable object to destination."
msgstr ""
#: aiogram.client.bot.Bot.download:6 of
msgid "file_id or Downloadable object"
msgstr ""
#: ../../api/download_file.rst:88
msgid ""
"It differs from `download_file <#download-file>`__ **only** in that it "
"accepts `file_id` or an `Downloadable` object (object that contains the "
"`file_id` attribute) instead of `file_path`."
msgstr ""
#: ../../api/download_file.rst:91
msgid ""
"You can download a file to `disk <#download-file-to-disk>`__ or to a "
"`binary I/O <#download-file-to-binary-io-object>`__ object in the same "
"way."
msgstr ""
#: ../../api/download_file.rst:93
msgid "Example:"
msgstr ""

View file

@ -0,0 +1,34 @@
# 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-10-01 22:51+0300\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/index.rst:3
msgid "Bot API"
msgstr ""
#: ../../api/index.rst:5
msgid ""
"**aiogram** now is fully support of `Telegram Bot API "
"<https://core.telegram.org/bots/api>`_"
msgstr ""
#: ../../api/index.rst:7
msgid ""
"All methods and types is fully autogenerated from Telegram Bot API docs "
"by parser with code-generator."
msgstr ""

View file

@ -0,0 +1,126 @@
# 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-10-01 22:51+0300\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/methods/add_sticker_to_set.rst:3
msgid "addStickerToSet"
msgstr ""
#: ../../api/methods/add_sticker_to_set.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.add_sticker_to_set.AddStickerToSet:1 of
msgid ""
"Use this method to add a new sticker to a set created by the bot. You "
"**must** use exactly one of the fields *png_sticker*, *tgs_sticker*, or "
"*webm_sticker*. Animated stickers can be added to animated sticker sets "
"and only to them. Animated sticker sets can have up to 50 stickers. "
"Static sticker sets can have up to 120 stickers. Returns :code:`True` on "
"success."
msgstr ""
#: aiogram.methods.add_sticker_to_set.AddStickerToSet:3 of
msgid "Source: https://core.telegram.org/bots/api#addstickertoset"
msgstr ""
#: ../../docstring aiogram.methods.add_sticker_to_set.AddStickerToSet.user_id:1
#: of
msgid "User identifier of sticker set owner"
msgstr ""
#: ../../docstring aiogram.methods.add_sticker_to_set.AddStickerToSet.name:1 of
msgid "Sticker set name"
msgstr ""
#: ../../docstring aiogram.methods.add_sticker_to_set.AddStickerToSet.emojis:1
#: of
msgid "One or more emoji corresponding to the sticker"
msgstr ""
#: ../../docstring
#: aiogram.methods.add_sticker_to_set.AddStickerToSet.png_sticker:1 of
msgid ""
"**PNG** image with the sticker, must be up to 512 kilobytes in size, "
"dimensions must not exceed 512px, and either width or height must be "
"exactly 512px. Pass a *file_id* as a String to send a file that already "
"exists on the Telegram servers, pass an HTTP URL as a String for Telegram"
" to get a file from the Internet, or upload a new one using multipart"
"/form-data. :ref:`More information on Sending Files » <sending-files>`"
msgstr ""
#: ../../docstring
#: aiogram.methods.add_sticker_to_set.AddStickerToSet.tgs_sticker:1 of
msgid ""
"**TGS** animation with the sticker, uploaded using multipart/form-data. "
"See `https://core.telegram.org/stickers#animated-sticker-requirements "
"<https://core.telegram.org/stickers#animated-sticker-"
"requirements>`_`https://core.telegram.org/stickers#animated-sticker-"
"requirements <https://core.telegram.org/stickers#animated-sticker-"
"requirements>`_ for technical requirements"
msgstr ""
#: ../../docstring
#: aiogram.methods.add_sticker_to_set.AddStickerToSet.webm_sticker:1 of
msgid ""
"**WEBM** video with the sticker, uploaded using multipart/form-data. See "
"`https://core.telegram.org/stickers#video-sticker-requirements "
"<https://core.telegram.org/stickers#video-sticker-"
"requirements>`_`https://core.telegram.org/stickers#video-sticker-"
"requirements <https://core.telegram.org/stickers#video-sticker-"
"requirements>`_ for technical requirements"
msgstr ""
#: ../../docstring
#: aiogram.methods.add_sticker_to_set.AddStickerToSet.mask_position:1 of
msgid ""
"A JSON-serialized object for position where the mask should be placed on "
"faces"
msgstr ""
#: ../../api/methods/add_sticker_to_set.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/add_sticker_to_set.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/add_sticker_to_set.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/add_sticker_to_set.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/add_sticker_to_set.rst:29
msgid ":code:`from aiogram.methods.add_sticker_to_set import AddStickerToSet`"
msgstr ""
#: ../../api/methods/add_sticker_to_set.rst:30
msgid "alias: :code:`from aiogram.methods import AddStickerToSet`"
msgstr ""
#: ../../api/methods/add_sticker_to_set.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/add_sticker_to_set.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,122 @@
# 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-10-01 22:51+0300\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/methods/answer_callback_query.rst:3
msgid "answerCallbackQuery"
msgstr ""
#: ../../api/methods/answer_callback_query.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.answer_callback_query.AnswerCallbackQuery:1 of
msgid ""
"Use this method to send answers to callback queries sent from `inline "
"keyboards <https://core.telegram.org/bots#inline-keyboards-and-on-the-"
"fly-updating>`_. The answer will be displayed to the user as a "
"notification at the top of the chat screen or as an alert. On success, "
":code:`True` is returned."
msgstr ""
#: aiogram.methods.answer_callback_query.AnswerCallbackQuery:3 of
msgid ""
"Alternatively, the user can be redirected to the specified Game URL. For "
"this option to work, you must first create a game for your bot via "
"`@BotFather <https://t.me/botfather>`_ and accept the terms. Otherwise, "
"you may use links like :code:`t.me/your_bot?start=XXXX` that open your "
"bot with a parameter."
msgstr ""
#: aiogram.methods.answer_callback_query.AnswerCallbackQuery:5 of
msgid "Source: https://core.telegram.org/bots/api#answercallbackquery"
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_callback_query.AnswerCallbackQuery.callback_query_id:1
#: of
msgid "Unique identifier for the query to be answered"
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_callback_query.AnswerCallbackQuery.text:1 of
msgid ""
"Text of the notification. If not specified, nothing will be shown to the "
"user, 0-200 characters"
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_callback_query.AnswerCallbackQuery.show_alert:1 of
msgid ""
"If :code:`True`, an alert will be shown by the client instead of a "
"notification at the top of the chat screen. Defaults to *false*."
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_callback_query.AnswerCallbackQuery.url:1 of
msgid ""
"URL that will be opened by the user's client. If you have created a "
":class:`aiogram.types.game.Game` and accepted the conditions via "
"`@BotFather <https://t.me/botfather>`_, specify the URL that opens your "
"game - note that this will only work if the query comes from a "
"`https://core.telegram.org/bots/api#inlinekeyboardbutton "
"<https://core.telegram.org/bots/api#inlinekeyboardbutton>`_ "
"*callback_game* button."
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_callback_query.AnswerCallbackQuery.cache_time:1 of
msgid ""
"The maximum amount of time in seconds that the result of the callback "
"query may be cached client-side. Telegram apps will support caching "
"starting in version 3.14. Defaults to 0."
msgstr ""
#: ../../api/methods/answer_callback_query.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/answer_callback_query.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/answer_callback_query.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/answer_callback_query.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/answer_callback_query.rst:29
msgid ""
":code:`from aiogram.methods.answer_callback_query import "
"AnswerCallbackQuery`"
msgstr ""
#: ../../api/methods/answer_callback_query.rst:30
msgid "alias: :code:`from aiogram.methods import AnswerCallbackQuery`"
msgstr ""
#: ../../api/methods/answer_callback_query.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/answer_callback_query.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,124 @@
# 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-10-01 22:51+0300\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/methods/answer_inline_query.rst:3
msgid "answerInlineQuery"
msgstr ""
#: ../../api/methods/answer_inline_query.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.answer_inline_query.AnswerInlineQuery:1 of
msgid ""
"Use this method to send answers to an inline query. On success, "
":code:`True` is returned."
msgstr ""
#: aiogram.methods.answer_inline_query.AnswerInlineQuery:3 of
msgid "No more than **50** results per query are allowed."
msgstr ""
#: aiogram.methods.answer_inline_query.AnswerInlineQuery:5 of
msgid "Source: https://core.telegram.org/bots/api#answerinlinequery"
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_inline_query.AnswerInlineQuery.inline_query_id:1 of
msgid "Unique identifier for the answered query"
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_inline_query.AnswerInlineQuery.results:1 of
msgid "A JSON-serialized array of results for the inline query"
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_inline_query.AnswerInlineQuery.cache_time:1 of
msgid ""
"The maximum amount of time in seconds that the result of the inline query"
" may be cached on the server. Defaults to 300."
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_inline_query.AnswerInlineQuery.is_personal:1 of
msgid ""
"Pass :code:`True` if results may be cached on the server side only for "
"the user that sent the query. By default, results may be returned to any "
"user who sends the same query"
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_inline_query.AnswerInlineQuery.next_offset:1 of
msgid ""
"Pass the offset that a client should send in the next query with the same"
" text to receive more results. Pass an empty string if there are no more "
"results or if you don't support pagination. Offset length can't exceed 64"
" bytes."
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_inline_query.AnswerInlineQuery.switch_pm_text:1 of
msgid ""
"If passed, clients will display a button with specified text that "
"switches the user to a private chat with the bot and sends the bot a "
"start message with the parameter *switch_pm_parameter*"
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_inline_query.AnswerInlineQuery.switch_pm_parameter:1
#: of
msgid ""
"`Deep-linking <https://core.telegram.org/bots#deep-linking>`_ parameter "
"for the /start message sent to the bot when user presses the switch "
"button. 1-64 characters, only :code:`A-Z`, :code:`a-z`, :code:`0-9`, "
":code:`_` and :code:`-` are allowed."
msgstr ""
#: ../../api/methods/answer_inline_query.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/answer_inline_query.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/answer_inline_query.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/answer_inline_query.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/answer_inline_query.rst:29
msgid ":code:`from aiogram.methods.answer_inline_query import AnswerInlineQuery`"
msgstr ""
#: ../../api/methods/answer_inline_query.rst:30
msgid "alias: :code:`from aiogram.methods import AnswerInlineQuery`"
msgstr ""
#: ../../api/methods/answer_inline_query.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/answer_inline_query.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,100 @@
# 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-10-01 22:51+0300\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/methods/answer_pre_checkout_query.rst:3
msgid "answerPreCheckoutQuery"
msgstr ""
#: ../../api/methods/answer_pre_checkout_query.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.answer_pre_checkout_query.AnswerPreCheckoutQuery:1 of
msgid ""
"Once the user has confirmed their payment and shipping details, the Bot "
"API sends the final confirmation in the form of an "
":class:`aiogram.types.update.Update` with the field *pre_checkout_query*."
" Use this method to respond to such pre-checkout queries. On success, "
":code:`True` is returned. **Note:** The Bot API must receive an answer "
"within 10 seconds after the pre-checkout query was sent."
msgstr ""
#: aiogram.methods.answer_pre_checkout_query.AnswerPreCheckoutQuery:3 of
msgid "Source: https://core.telegram.org/bots/api#answerprecheckoutquery"
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_pre_checkout_query.AnswerPreCheckoutQuery.pre_checkout_query_id:1
#: of
msgid "Unique identifier for the query to be answered"
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_pre_checkout_query.AnswerPreCheckoutQuery.ok:1 of
msgid ""
"Specify :code:`True` if everything is alright (goods are available, etc.)"
" and the bot is ready to proceed with the order. Use :code:`False` if "
"there are any problems."
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_pre_checkout_query.AnswerPreCheckoutQuery.error_message:1
#: of
msgid ""
"Required if *ok* is :code:`False`. Error message in human readable form "
"that explains the reason for failure to proceed with the checkout (e.g. "
"\"Sorry, somebody just bought the last of our amazing black T-shirts "
"while you were busy filling out your payment details. Please choose a "
"different color or garment!\"). Telegram will display this message to the"
" user."
msgstr ""
#: ../../api/methods/answer_pre_checkout_query.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/answer_pre_checkout_query.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/answer_pre_checkout_query.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/answer_pre_checkout_query.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/answer_pre_checkout_query.rst:29
msgid ""
":code:`from aiogram.methods.answer_pre_checkout_query import "
"AnswerPreCheckoutQuery`"
msgstr ""
#: ../../api/methods/answer_pre_checkout_query.rst:30
msgid "alias: :code:`from aiogram.methods import AnswerPreCheckoutQuery`"
msgstr ""
#: ../../api/methods/answer_pre_checkout_query.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/answer_pre_checkout_query.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,104 @@
# 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-10-01 22:51+0300\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/methods/answer_shipping_query.rst:3
msgid "answerShippingQuery"
msgstr ""
#: ../../api/methods/answer_shipping_query.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.answer_shipping_query.AnswerShippingQuery:1 of
msgid ""
"If you sent an invoice requesting a shipping address and the parameter "
"*is_flexible* was specified, the Bot API will send an "
":class:`aiogram.types.update.Update` with a *shipping_query* field to the"
" bot. Use this method to reply to shipping queries. On success, "
":code:`True` is returned."
msgstr ""
#: aiogram.methods.answer_shipping_query.AnswerShippingQuery:3 of
msgid "Source: https://core.telegram.org/bots/api#answershippingquery"
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_shipping_query.AnswerShippingQuery.shipping_query_id:1
#: of
msgid "Unique identifier for the query to be answered"
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_shipping_query.AnswerShippingQuery.ok:1 of
msgid ""
"Pass :code:`True` if delivery to the specified address is possible and "
":code:`False` if there are any problems (for example, if delivery to the "
"specified address is not possible)"
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_shipping_query.AnswerShippingQuery.shipping_options:1
#: of
msgid ""
"Required if *ok* is :code:`True`. A JSON-serialized array of available "
"shipping options."
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_shipping_query.AnswerShippingQuery.error_message:1 of
msgid ""
"Required if *ok* is :code:`False`. Error message in human readable form "
"that explains why it is impossible to complete the order (e.g. \"Sorry, "
"delivery to your desired address is unavailable'). Telegram will display "
"this message to the user."
msgstr ""
#: ../../api/methods/answer_shipping_query.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/answer_shipping_query.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/answer_shipping_query.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/answer_shipping_query.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/answer_shipping_query.rst:29
msgid ""
":code:`from aiogram.methods.answer_shipping_query import "
"AnswerShippingQuery`"
msgstr ""
#: ../../api/methods/answer_shipping_query.rst:30
msgid "alias: :code:`from aiogram.methods import AnswerShippingQuery`"
msgstr ""
#: ../../api/methods/answer_shipping_query.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/answer_shipping_query.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,82 @@
# 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-10-01 22:51+0300\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/methods/answer_web_app_query.rst:3
msgid "answerWebAppQuery"
msgstr ""
#: ../../api/methods/answer_web_app_query.rst:5
msgid "Returns: :obj:`SentWebAppMessage`"
msgstr ""
#: aiogram.methods.answer_web_app_query.AnswerWebAppQuery:1 of
msgid ""
"Use this method to set the result of an interaction with a `Web App "
"<https://core.telegram.org/bots/webapps>`_ and send a corresponding "
"message on behalf of the user to the chat from which the query "
"originated. On success, a "
":class:`aiogram.types.sent_web_app_message.SentWebAppMessage` object is "
"returned."
msgstr ""
#: aiogram.methods.answer_web_app_query.AnswerWebAppQuery:3 of
msgid "Source: https://core.telegram.org/bots/api#answerwebappquery"
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_web_app_query.AnswerWebAppQuery.web_app_query_id:1 of
msgid "Unique identifier for the query to be answered"
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_web_app_query.AnswerWebAppQuery.result:1 of
msgid "A JSON-serialized object describing the message to be sent"
msgstr ""
#: ../../api/methods/answer_web_app_query.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/answer_web_app_query.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/answer_web_app_query.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/answer_web_app_query.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/answer_web_app_query.rst:29
msgid ":code:`from aiogram.methods.answer_web_app_query import AnswerWebAppQuery`"
msgstr ""
#: ../../api/methods/answer_web_app_query.rst:30
msgid "alias: :code:`from aiogram.methods import AnswerWebAppQuery`"
msgstr ""
#: ../../api/methods/answer_web_app_query.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/answer_web_app_query.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,85 @@
# 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-10-01 22:51+0300\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/methods/approve_chat_join_request.rst:3
msgid "approveChatJoinRequest"
msgstr ""
#: ../../api/methods/approve_chat_join_request.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.approve_chat_join_request.ApproveChatJoinRequest:1 of
msgid ""
"Use this method to approve a chat join request. The bot must be an "
"administrator in the chat for this to work and must have the "
"*can_invite_users* administrator right. Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.approve_chat_join_request.ApproveChatJoinRequest:3 of
msgid "Source: https://core.telegram.org/bots/api#approvechatjoinrequest"
msgstr ""
#: ../../docstring
#: aiogram.methods.approve_chat_join_request.ApproveChatJoinRequest.chat_id:1
#: of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring
#: aiogram.methods.approve_chat_join_request.ApproveChatJoinRequest.user_id:1
#: of
msgid "Unique identifier of the target user"
msgstr ""
#: ../../api/methods/approve_chat_join_request.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/approve_chat_join_request.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/approve_chat_join_request.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/approve_chat_join_request.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/approve_chat_join_request.rst:29
msgid ""
":code:`from aiogram.methods.approve_chat_join_request import "
"ApproveChatJoinRequest`"
msgstr ""
#: ../../api/methods/approve_chat_join_request.rst:30
msgid "alias: :code:`from aiogram.methods import ApproveChatJoinRequest`"
msgstr ""
#: ../../api/methods/approve_chat_join_request.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/approve_chat_join_request.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,100 @@
# 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-10-01 22:51+0300\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/methods/ban_chat_member.rst:3
msgid "banChatMember"
msgstr ""
#: ../../api/methods/ban_chat_member.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.ban_chat_member.BanChatMember:1 of
msgid ""
"Use this method to ban a user in a group, a supergroup or a channel. In "
"the case of supergroups and channels, the user will not be able to return"
" to the chat on their own using invite links, etc., unless `unbanned "
"<https://core.telegram.org/bots/api#unbanchatmember>`_ first. The bot "
"must be an administrator in the chat for this to work and must have the "
"appropriate administrator rights. Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.ban_chat_member.BanChatMember:3 of
msgid "Source: https://core.telegram.org/bots/api#banchatmember"
msgstr ""
#: ../../docstring aiogram.methods.ban_chat_member.BanChatMember.chat_id:1 of
msgid ""
"Unique identifier for the target group or username of the target "
"supergroup or channel (in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.ban_chat_member.BanChatMember.user_id:1 of
msgid "Unique identifier of the target user"
msgstr ""
#: ../../docstring aiogram.methods.ban_chat_member.BanChatMember.until_date:1
#: of
msgid ""
"Date when the user will be unbanned, unix time. If user is banned for "
"more than 366 days or less than 30 seconds from the current time they are"
" considered to be banned forever. Applied for supergroups and channels "
"only."
msgstr ""
#: ../../docstring
#: aiogram.methods.ban_chat_member.BanChatMember.revoke_messages:1 of
msgid ""
"Pass :code:`True` to delete all messages from the chat for the user that "
"is being removed. If :code:`False`, the user will be able to see messages"
" in the group that were sent before the user was removed. Always "
":code:`True` for supergroups and channels."
msgstr ""
#: ../../api/methods/ban_chat_member.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/ban_chat_member.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/ban_chat_member.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/ban_chat_member.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/ban_chat_member.rst:29
msgid ":code:`from aiogram.methods.ban_chat_member import BanChatMember`"
msgstr ""
#: ../../api/methods/ban_chat_member.rst:30
msgid "alias: :code:`from aiogram.methods import BanChatMember`"
msgstr ""
#: ../../api/methods/ban_chat_member.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/ban_chat_member.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,85 @@
# 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-10-01 22:51+0300\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/methods/ban_chat_sender_chat.rst:3
msgid "banChatSenderChat"
msgstr ""
#: ../../api/methods/ban_chat_sender_chat.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.ban_chat_sender_chat.BanChatSenderChat:1 of
msgid ""
"Use this method to ban a channel chat in a supergroup or a channel. Until"
" the chat is `unbanned "
"<https://core.telegram.org/bots/api#unbanchatsenderchat>`_, the owner of "
"the banned chat won't be able to send messages on behalf of **any of "
"their channels**. The bot must be an administrator in the supergroup or "
"channel for this to work and must have the appropriate administrator "
"rights. Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.ban_chat_sender_chat.BanChatSenderChat:3 of
msgid "Source: https://core.telegram.org/bots/api#banchatsenderchat"
msgstr ""
#: ../../docstring
#: aiogram.methods.ban_chat_sender_chat.BanChatSenderChat.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring
#: aiogram.methods.ban_chat_sender_chat.BanChatSenderChat.sender_chat_id:1 of
msgid "Unique identifier of the target sender chat"
msgstr ""
#: ../../api/methods/ban_chat_sender_chat.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/ban_chat_sender_chat.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/ban_chat_sender_chat.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/ban_chat_sender_chat.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/ban_chat_sender_chat.rst:29
msgid ":code:`from aiogram.methods.ban_chat_sender_chat import BanChatSenderChat`"
msgstr ""
#: ../../api/methods/ban_chat_sender_chat.rst:30
msgid "alias: :code:`from aiogram.methods import BanChatSenderChat`"
msgstr ""
#: ../../api/methods/ban_chat_sender_chat.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/ban_chat_sender_chat.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,71 @@
# 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-10-01 22:51+0300\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/methods/close.rst:3
msgid "close"
msgstr ""
#: ../../api/methods/close.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.close.Close:1 of
msgid ""
"Use this method to close the bot instance before moving it from one local"
" server to another. You need to delete the webhook before calling this "
"method to ensure that the bot isn't launched again after server restart. "
"The method will return error 429 in the first 10 minutes after the bot is"
" launched. Returns :code:`True` on success. Requires no parameters."
msgstr ""
#: aiogram.methods.close.Close:3 of
msgid "Source: https://core.telegram.org/bots/api#close"
msgstr ""
#: ../../api/methods/close.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/close.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/close.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/close.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/close.rst:29
msgid ":code:`from aiogram.methods.close import Close`"
msgstr ""
#: ../../api/methods/close.rst:30
msgid "alias: :code:`from aiogram.methods import Close`"
msgstr ""
#: ../../api/methods/close.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/close.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,143 @@
# 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-10-01 22:51+0300\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/methods/copy_message.rst:3
msgid "copyMessage"
msgstr ""
#: ../../api/methods/copy_message.rst:5
msgid "Returns: :obj:`MessageId`"
msgstr ""
#: aiogram.methods.copy_message.CopyMessage:1 of
msgid ""
"Use this method to copy messages of any kind. Service messages and "
"invoice messages can't be copied. A quiz "
":class:`aiogram.methods.poll.Poll` can be copied only if the value of the"
" field *correct_option_id* is known to the bot. The method is analogous "
"to the method :class:`aiogram.methods.forward_message.ForwardMessage`, "
"but the copied message doesn't have a link to the original message. "
"Returns the :class:`aiogram.types.message_id.MessageId` of the sent "
"message on success."
msgstr ""
#: aiogram.methods.copy_message.CopyMessage:3 of
msgid "Source: https://core.telegram.org/bots/api#copymessage"
msgstr ""
#: ../../docstring aiogram.methods.copy_message.CopyMessage.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.copy_message.CopyMessage.from_chat_id:1 of
msgid ""
"Unique identifier for the chat where the original message was sent (or "
"channel username in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.copy_message.CopyMessage.message_id:1 of
msgid "Message identifier in the chat specified in *from_chat_id*"
msgstr ""
#: ../../docstring aiogram.methods.copy_message.CopyMessage.caption:1 of
msgid ""
"New caption for media, 0-1024 characters after entities parsing. If not "
"specified, the original caption is kept"
msgstr ""
#: ../../docstring aiogram.methods.copy_message.CopyMessage.parse_mode:1 of
msgid ""
"Mode for parsing entities in the new caption. See `formatting options "
"<https://core.telegram.org/bots/api#formatting-options>`_ for more "
"details."
msgstr ""
#: ../../docstring aiogram.methods.copy_message.CopyMessage.caption_entities:1
#: of
msgid ""
"A JSON-serialized list of special entities that appear in the new "
"caption, which can be specified instead of *parse_mode*"
msgstr ""
#: ../../docstring
#: aiogram.methods.copy_message.CopyMessage.disable_notification:1 of
msgid ""
"Sends the message `silently <https://telegram.org/blog/channels-2-0"
"#silent-messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring aiogram.methods.copy_message.CopyMessage.protect_content:1
#: of
msgid "Protects the contents of the sent message from forwarding and saving"
msgstr ""
#: ../../docstring
#: aiogram.methods.copy_message.CopyMessage.reply_to_message_id:1 of
msgid "If the message is a reply, ID of the original message"
msgstr ""
#: ../../docstring
#: aiogram.methods.copy_message.CopyMessage.allow_sending_without_reply:1 of
msgid ""
"Pass :code:`True` if the message should be sent even if the specified "
"replied-to message is not found"
msgstr ""
#: ../../docstring aiogram.methods.copy_message.CopyMessage.reply_markup:1 of
msgid ""
"Additional interface options. A JSON-serialized object for an `inline "
"keyboard <https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_, `custom reply keyboard "
"<https://core.telegram.org/bots#keyboards>`_, instructions to remove "
"reply keyboard or to force a reply from the user."
msgstr ""
#: ../../api/methods/copy_message.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/copy_message.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/copy_message.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/copy_message.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/copy_message.rst:29
msgid ":code:`from aiogram.methods.copy_message import CopyMessage`"
msgstr ""
#: ../../api/methods/copy_message.rst:30
msgid "alias: :code:`from aiogram.methods import CopyMessage`"
msgstr ""
#: ../../api/methods/copy_message.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/copy_message.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,110 @@
# 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-10-01 22:51+0300\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/methods/create_chat_invite_link.rst:3
msgid "createChatInviteLink"
msgstr ""
#: ../../api/methods/create_chat_invite_link.rst:5
msgid "Returns: :obj:`ChatInviteLink`"
msgstr ""
#: aiogram.methods.create_chat_invite_link.CreateChatInviteLink:1 of
msgid ""
"Use this method to create an additional invite link for a chat. The bot "
"must be an administrator in the chat for this to work and must have the "
"appropriate administrator rights. The link can be revoked using the "
"method "
":class:`aiogram.methods.revoke_chat_invite_link.RevokeChatInviteLink`. "
"Returns the new invite link as "
":class:`aiogram.types.chat_invite_link.ChatInviteLink` object."
msgstr ""
#: aiogram.methods.create_chat_invite_link.CreateChatInviteLink:3 of
msgid "Source: https://core.telegram.org/bots/api#createchatinvitelink"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_chat_invite_link.CreateChatInviteLink.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_chat_invite_link.CreateChatInviteLink.name:1 of
msgid "Invite link name; 0-32 characters"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_chat_invite_link.CreateChatInviteLink.expire_date:1
#: of
msgid "Point in time (Unix timestamp) when the link will expire"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_chat_invite_link.CreateChatInviteLink.member_limit:1
#: of
msgid ""
"The maximum number of users that can be members of the chat "
"simultaneously after joining the chat via this invite link; 1-99999"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_chat_invite_link.CreateChatInviteLink.creates_join_request:1
#: of
msgid ""
":code:`True`, if users joining the chat via the link need to be approved "
"by chat administrators. If :code:`True`, *member_limit* can't be "
"specified"
msgstr ""
#: ../../api/methods/create_chat_invite_link.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/create_chat_invite_link.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/create_chat_invite_link.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/create_chat_invite_link.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/create_chat_invite_link.rst:29
msgid ""
":code:`from aiogram.methods.create_chat_invite_link import "
"CreateChatInviteLink`"
msgstr ""
#: ../../api/methods/create_chat_invite_link.rst:30
msgid "alias: :code:`from aiogram.methods import CreateChatInviteLink`"
msgstr ""
#: ../../api/methods/create_chat_invite_link.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/create_chat_invite_link.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,207 @@
# 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-10-01 22:51+0300\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/methods/create_invoice_link.rst:3
msgid "createInvoiceLink"
msgstr ""
#: ../../api/methods/create_invoice_link.rst:5
msgid "Returns: :obj:`str`"
msgstr ""
#: aiogram.methods.create_invoice_link.CreateInvoiceLink:1 of
msgid ""
"Use this method to create a link for an invoice. Returns the created "
"invoice link as *String* on success."
msgstr ""
#: aiogram.methods.create_invoice_link.CreateInvoiceLink:3 of
msgid "Source: https://core.telegram.org/bots/api#createinvoicelink"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.title:1 of
msgid "Product name, 1-32 characters"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.description:1 of
msgid "Product description, 1-255 characters"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.payload:1 of
msgid ""
"Bot-defined invoice payload, 1-128 bytes. This will not be displayed to "
"the user, use for your internal processes."
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.provider_token:1 of
msgid "Payment provider token, obtained via `BotFather <https://t.me/botfather>`_"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.currency:1 of
msgid ""
"Three-letter ISO 4217 currency code, see `more on currencies "
"<https://core.telegram.org/bots/payments#supported-currencies>`_"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.prices:1 of
msgid ""
"Price breakdown, a JSON-serialized list of components (e.g. product "
"price, tax, discount, delivery cost, delivery tax, bonus, etc.)"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.max_tip_amount:1 of
msgid ""
"The maximum accepted amount for tips in the *smallest units* of the "
"currency (integer, **not** float/double). For example, for a maximum tip "
"of :code:`US$ 1.45` pass :code:`max_tip_amount = 145`. See the *exp* "
"parameter in `currencies.json "
"<https://core.telegram.org/bots/payments/currencies.json>`_, it shows the"
" number of digits past the decimal point for each currency (2 for the "
"majority of currencies). Defaults to 0"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.suggested_tip_amounts:1
#: of
msgid ""
"A JSON-serialized array of suggested amounts of tips in the *smallest "
"units* of the currency (integer, **not** float/double). At most 4 "
"suggested tip amounts can be specified. The suggested tip amounts must be"
" positive, passed in a strictly increased order and must not exceed "
"*max_tip_amount*."
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.provider_data:1 of
msgid ""
"JSON-serialized data about the invoice, which will be shared with the "
"payment provider. A detailed description of required fields should be "
"provided by the payment provider."
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.photo_url:1 of
msgid ""
"URL of the product photo for the invoice. Can be a photo of the goods or "
"a marketing image for a service."
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.photo_size:1 of
msgid "Photo size in bytes"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.photo_width:1 of
msgid "Photo width"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.photo_height:1 of
msgid "Photo height"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.need_name:1 of
msgid ""
"Pass :code:`True` if you require the user's full name to complete the "
"order"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.need_phone_number:1 of
msgid ""
"Pass :code:`True` if you require the user's phone number to complete the "
"order"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.need_email:1 of
msgid ""
"Pass :code:`True` if you require the user's email address to complete the"
" order"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.need_shipping_address:1
#: of
msgid ""
"Pass :code:`True` if you require the user's shipping address to complete "
"the order"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.send_phone_number_to_provider:1
#: of
msgid ""
"Pass :code:`True` if the user's phone number should be sent to the "
"provider"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.send_email_to_provider:1
#: of
msgid ""
"Pass :code:`True` if the user's email address should be sent to the "
"provider"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_invoice_link.CreateInvoiceLink.is_flexible:1 of
msgid "Pass :code:`True` if the final price depends on the shipping method"
msgstr ""
#: ../../api/methods/create_invoice_link.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/create_invoice_link.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/create_invoice_link.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/create_invoice_link.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/create_invoice_link.rst:29
msgid ":code:`from aiogram.methods.create_invoice_link import CreateInvoiceLink`"
msgstr ""
#: ../../api/methods/create_invoice_link.rst:30
msgid "alias: :code:`from aiogram.methods import CreateInvoiceLink`"
msgstr ""
#: ../../api/methods/create_invoice_link.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/create_invoice_link.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,146 @@
# 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-10-01 22:51+0300\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/methods/create_new_sticker_set.rst:3
msgid "createNewStickerSet"
msgstr ""
#: ../../api/methods/create_new_sticker_set.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.create_new_sticker_set.CreateNewStickerSet:1 of
msgid ""
"Use this method to create a new sticker set owned by a user. The bot will"
" be able to edit the sticker set thus created. You **must** use exactly "
"one of the fields *png_sticker*, *tgs_sticker*, or *webm_sticker*. "
"Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.create_new_sticker_set.CreateNewStickerSet:3 of
msgid "Source: https://core.telegram.org/bots/api#createnewstickerset"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_new_sticker_set.CreateNewStickerSet.user_id:1 of
msgid "User identifier of created sticker set owner"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_new_sticker_set.CreateNewStickerSet.name:1 of
msgid ""
"Short name of sticker set, to be used in :code:`t.me/addstickers/` URLs "
"(e.g., *animals*). Can contain only English letters, digits and "
"underscores. Must begin with a letter, can't contain consecutive "
"underscores and must end in :code:`\"_by_<bot_username>\"`. "
":code:`<bot_username>` is case insensitive. 1-64 characters."
msgstr ""
#: ../../docstring
#: aiogram.methods.create_new_sticker_set.CreateNewStickerSet.title:1 of
msgid "Sticker set title, 1-64 characters"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_new_sticker_set.CreateNewStickerSet.emojis:1 of
msgid "One or more emoji corresponding to the sticker"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_new_sticker_set.CreateNewStickerSet.png_sticker:1 of
msgid ""
"**PNG** image with the sticker, must be up to 512 kilobytes in size, "
"dimensions must not exceed 512px, and either width or height must be "
"exactly 512px. Pass a *file_id* as a String to send a file that already "
"exists on the Telegram servers, pass an HTTP URL as a String for Telegram"
" to get a file from the Internet, or upload a new one using multipart"
"/form-data. :ref:`More information on Sending Files » <sending-files>`"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_new_sticker_set.CreateNewStickerSet.tgs_sticker:1 of
msgid ""
"**TGS** animation with the sticker, uploaded using multipart/form-data. "
"See `https://core.telegram.org/stickers#animated-sticker-requirements "
"<https://core.telegram.org/stickers#animated-sticker-"
"requirements>`_`https://core.telegram.org/stickers#animated-sticker-"
"requirements <https://core.telegram.org/stickers#animated-sticker-"
"requirements>`_ for technical requirements"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_new_sticker_set.CreateNewStickerSet.webm_sticker:1 of
msgid ""
"**WEBM** video with the sticker, uploaded using multipart/form-data. See "
"`https://core.telegram.org/stickers#video-sticker-requirements "
"<https://core.telegram.org/stickers#video-sticker-"
"requirements>`_`https://core.telegram.org/stickers#video-sticker-"
"requirements <https://core.telegram.org/stickers#video-sticker-"
"requirements>`_ for technical requirements"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_new_sticker_set.CreateNewStickerSet.sticker_type:1 of
msgid ""
"Type of stickers in the set, pass 'regular' or 'mask'. Custom emoji "
"sticker sets can't be created via the Bot API at the moment. By default, "
"a regular sticker set is created."
msgstr ""
#: ../../docstring
#: aiogram.methods.create_new_sticker_set.CreateNewStickerSet.mask_position:1
#: of
msgid ""
"A JSON-serialized object for position where the mask should be placed on "
"faces"
msgstr ""
#: ../../api/methods/create_new_sticker_set.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/create_new_sticker_set.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/create_new_sticker_set.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/create_new_sticker_set.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/create_new_sticker_set.rst:29
msgid ""
":code:`from aiogram.methods.create_new_sticker_set import "
"CreateNewStickerSet`"
msgstr ""
#: ../../api/methods/create_new_sticker_set.rst:30
msgid "alias: :code:`from aiogram.methods import CreateNewStickerSet`"
msgstr ""
#: ../../api/methods/create_new_sticker_set.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/create_new_sticker_set.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,85 @@
# 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-10-01 22:51+0300\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/methods/decline_chat_join_request.rst:3
msgid "declineChatJoinRequest"
msgstr ""
#: ../../api/methods/decline_chat_join_request.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.decline_chat_join_request.DeclineChatJoinRequest:1 of
msgid ""
"Use this method to decline a chat join request. The bot must be an "
"administrator in the chat for this to work and must have the "
"*can_invite_users* administrator right. Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.decline_chat_join_request.DeclineChatJoinRequest:3 of
msgid "Source: https://core.telegram.org/bots/api#declinechatjoinrequest"
msgstr ""
#: ../../docstring
#: aiogram.methods.decline_chat_join_request.DeclineChatJoinRequest.chat_id:1
#: of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring
#: aiogram.methods.decline_chat_join_request.DeclineChatJoinRequest.user_id:1
#: of
msgid "Unique identifier of the target user"
msgstr ""
#: ../../api/methods/decline_chat_join_request.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/decline_chat_join_request.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/decline_chat_join_request.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/decline_chat_join_request.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/decline_chat_join_request.rst:29
msgid ""
":code:`from aiogram.methods.decline_chat_join_request import "
"DeclineChatJoinRequest`"
msgstr ""
#: ../../api/methods/decline_chat_join_request.rst:30
msgid "alias: :code:`from aiogram.methods import DeclineChatJoinRequest`"
msgstr ""
#: ../../api/methods/decline_chat_join_request.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/decline_chat_join_request.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,77 @@
# 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-10-01 22:51+0300\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/methods/delete_chat_photo.rst:3
msgid "deleteChatPhoto"
msgstr ""
#: ../../api/methods/delete_chat_photo.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.delete_chat_photo.DeleteChatPhoto:1 of
msgid ""
"Use this method to delete a chat photo. Photos can't be changed for "
"private chats. The bot must be an administrator in the chat for this to "
"work and must have the appropriate administrator rights. Returns "
":code:`True` on success."
msgstr ""
#: aiogram.methods.delete_chat_photo.DeleteChatPhoto:3 of
msgid "Source: https://core.telegram.org/bots/api#deletechatphoto"
msgstr ""
#: ../../docstring aiogram.methods.delete_chat_photo.DeleteChatPhoto.chat_id:1
#: of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../api/methods/delete_chat_photo.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/delete_chat_photo.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/delete_chat_photo.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/delete_chat_photo.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/delete_chat_photo.rst:29
msgid ":code:`from aiogram.methods.delete_chat_photo import DeleteChatPhoto`"
msgstr ""
#: ../../api/methods/delete_chat_photo.rst:30
msgid "alias: :code:`from aiogram.methods import DeleteChatPhoto`"
msgstr ""
#: ../../api/methods/delete_chat_photo.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/delete_chat_photo.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,81 @@
# 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-10-01 22:51+0300\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/methods/delete_chat_sticker_set.rst:3
msgid "deleteChatStickerSet"
msgstr ""
#: ../../api/methods/delete_chat_sticker_set.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.delete_chat_sticker_set.DeleteChatStickerSet:1 of
msgid ""
"Use this method to delete a group sticker set from a supergroup. The bot "
"must be an administrator in the chat for this to work and must have the "
"appropriate administrator rights. Use the field *can_set_sticker_set* "
"optionally returned in :class:`aiogram.methods.get_chat.GetChat` requests"
" to check if the bot can use this method. Returns :code:`True` on "
"success."
msgstr ""
#: aiogram.methods.delete_chat_sticker_set.DeleteChatStickerSet:3 of
msgid "Source: https://core.telegram.org/bots/api#deletechatstickerset"
msgstr ""
#: ../../docstring
#: aiogram.methods.delete_chat_sticker_set.DeleteChatStickerSet.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target "
"supergroup (in the format :code:`@supergroupusername`)"
msgstr ""
#: ../../api/methods/delete_chat_sticker_set.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/delete_chat_sticker_set.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/delete_chat_sticker_set.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/delete_chat_sticker_set.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/delete_chat_sticker_set.rst:29
msgid ""
":code:`from aiogram.methods.delete_chat_sticker_set import "
"DeleteChatStickerSet`"
msgstr ""
#: ../../api/methods/delete_chat_sticker_set.rst:30
msgid "alias: :code:`from aiogram.methods import DeleteChatStickerSet`"
msgstr ""
#: ../../api/methods/delete_chat_sticker_set.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/delete_chat_sticker_set.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,120 @@
# 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-10-01 22:51+0300\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/methods/delete_message.rst:3
msgid "deleteMessage"
msgstr ""
#: ../../api/methods/delete_message.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.delete_message.DeleteMessage:1 of
msgid ""
"Use this method to delete a message, including service messages, with the"
" following limitations:"
msgstr ""
#: aiogram.methods.delete_message.DeleteMessage:3 of
msgid "A message can only be deleted if it was sent less than 48 hours ago."
msgstr ""
#: aiogram.methods.delete_message.DeleteMessage:5 of
msgid ""
"A dice message in a private chat can only be deleted if it was sent more "
"than 24 hours ago."
msgstr ""
#: aiogram.methods.delete_message.DeleteMessage:7 of
msgid ""
"Bots can delete outgoing messages in private chats, groups, and "
"supergroups."
msgstr ""
#: aiogram.methods.delete_message.DeleteMessage:9 of
msgid "Bots can delete incoming messages in private chats."
msgstr ""
#: aiogram.methods.delete_message.DeleteMessage:11 of
msgid ""
"Bots granted *can_post_messages* permissions can delete outgoing messages"
" in channels."
msgstr ""
#: aiogram.methods.delete_message.DeleteMessage:13 of
msgid ""
"If the bot is an administrator of a group, it can delete any message "
"there."
msgstr ""
#: aiogram.methods.delete_message.DeleteMessage:15 of
msgid ""
"If the bot has *can_delete_messages* permission in a supergroup or a "
"channel, it can delete any message there."
msgstr ""
#: aiogram.methods.delete_message.DeleteMessage:17 of
msgid "Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.delete_message.DeleteMessage:19 of
msgid "Source: https://core.telegram.org/bots/api#deletemessage"
msgstr ""
#: ../../docstring aiogram.methods.delete_message.DeleteMessage.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.delete_message.DeleteMessage.message_id:1 of
msgid "Identifier of the message to delete"
msgstr ""
#: ../../api/methods/delete_message.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/delete_message.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/delete_message.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/delete_message.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/delete_message.rst:29
msgid ":code:`from aiogram.methods.delete_message import DeleteMessage`"
msgstr ""
#: ../../api/methods/delete_message.rst:30
msgid "alias: :code:`from aiogram.methods import DeleteMessage`"
msgstr ""
#: ../../api/methods/delete_message.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/delete_message.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,86 @@
# 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-10-01 22:51+0300\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/methods/delete_my_commands.rst:3
msgid "deleteMyCommands"
msgstr ""
#: ../../api/methods/delete_my_commands.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.delete_my_commands.DeleteMyCommands:1 of
msgid ""
"Use this method to delete the list of the bot's commands for the given "
"scope and user language. After deletion, `higher level commands "
"<https://core.telegram.org/bots/api#determining-list-of-commands>`_ will "
"be shown to affected users. Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.delete_my_commands.DeleteMyCommands:3 of
msgid "Source: https://core.telegram.org/bots/api#deletemycommands"
msgstr ""
#: ../../docstring aiogram.methods.delete_my_commands.DeleteMyCommands.scope:1
#: of
msgid ""
"A JSON-serialized object, describing scope of users for which the "
"commands are relevant. Defaults to "
":class:`aiogram.types.bot_command_scope_default.BotCommandScopeDefault`."
msgstr ""
#: ../../docstring
#: aiogram.methods.delete_my_commands.DeleteMyCommands.language_code:1 of
msgid ""
"A two-letter ISO 639-1 language code. If empty, commands will be applied "
"to all users from the given scope, for whose language there are no "
"dedicated commands"
msgstr ""
#: ../../api/methods/delete_my_commands.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/delete_my_commands.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/delete_my_commands.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/delete_my_commands.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/delete_my_commands.rst:29
msgid ":code:`from aiogram.methods.delete_my_commands import DeleteMyCommands`"
msgstr ""
#: ../../api/methods/delete_my_commands.rst:30
msgid "alias: :code:`from aiogram.methods import DeleteMyCommands`"
msgstr ""
#: ../../api/methods/delete_my_commands.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/delete_my_commands.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,75 @@
# 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-10-01 22:51+0300\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/methods/delete_sticker_from_set.rst:3
msgid "deleteStickerFromSet"
msgstr ""
#: ../../api/methods/delete_sticker_from_set.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.delete_sticker_from_set.DeleteStickerFromSet:1 of
msgid ""
"Use this method to delete a sticker from a set created by the bot. "
"Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.delete_sticker_from_set.DeleteStickerFromSet:3 of
msgid "Source: https://core.telegram.org/bots/api#deletestickerfromset"
msgstr ""
#: ../../docstring
#: aiogram.methods.delete_sticker_from_set.DeleteStickerFromSet.sticker:1 of
msgid "File identifier of the sticker"
msgstr ""
#: ../../api/methods/delete_sticker_from_set.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/delete_sticker_from_set.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/delete_sticker_from_set.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/delete_sticker_from_set.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/delete_sticker_from_set.rst:29
msgid ""
":code:`from aiogram.methods.delete_sticker_from_set import "
"DeleteStickerFromSet`"
msgstr ""
#: ../../api/methods/delete_sticker_from_set.rst:30
msgid "alias: :code:`from aiogram.methods import DeleteStickerFromSet`"
msgstr ""
#: ../../api/methods/delete_sticker_from_set.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/delete_sticker_from_set.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,74 @@
# 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-10-01 22:51+0300\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/methods/delete_webhook.rst:3
msgid "deleteWebhook"
msgstr ""
#: ../../api/methods/delete_webhook.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.delete_webhook.DeleteWebhook:1 of
msgid ""
"Use this method to remove webhook integration if you decide to switch "
"back to :class:`aiogram.methods.get_updates.GetUpdates`. Returns "
":code:`True` on success."
msgstr ""
#: aiogram.methods.delete_webhook.DeleteWebhook:3 of
msgid "Source: https://core.telegram.org/bots/api#deletewebhook"
msgstr ""
#: ../../docstring
#: aiogram.methods.delete_webhook.DeleteWebhook.drop_pending_updates:1 of
msgid "Pass :code:`True` to drop all pending updates"
msgstr ""
#: ../../api/methods/delete_webhook.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/delete_webhook.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/delete_webhook.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/delete_webhook.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/delete_webhook.rst:29
msgid ":code:`from aiogram.methods.delete_webhook import DeleteWebhook`"
msgstr ""
#: ../../api/methods/delete_webhook.rst:30
msgid "alias: :code:`from aiogram.methods import DeleteWebhook`"
msgstr ""
#: ../../api/methods/delete_webhook.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/delete_webhook.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,110 @@
# 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-10-01 22:51+0300\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/methods/edit_chat_invite_link.rst:3
msgid "editChatInviteLink"
msgstr ""
#: ../../api/methods/edit_chat_invite_link.rst:5
msgid "Returns: :obj:`ChatInviteLink`"
msgstr ""
#: aiogram.methods.edit_chat_invite_link.EditChatInviteLink:1 of
msgid ""
"Use this method to edit a non-primary invite link created by the bot. The"
" bot must be an administrator in the chat for this to work and must have "
"the appropriate administrator rights. Returns the edited invite link as a"
" :class:`aiogram.types.chat_invite_link.ChatInviteLink` object."
msgstr ""
#: aiogram.methods.edit_chat_invite_link.EditChatInviteLink:3 of
msgid "Source: https://core.telegram.org/bots/api#editchatinvitelink"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_chat_invite_link.EditChatInviteLink.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_chat_invite_link.EditChatInviteLink.invite_link:1 of
msgid "The invite link to edit"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_chat_invite_link.EditChatInviteLink.name:1 of
msgid "Invite link name; 0-32 characters"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_chat_invite_link.EditChatInviteLink.expire_date:1 of
msgid "Point in time (Unix timestamp) when the link will expire"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_chat_invite_link.EditChatInviteLink.member_limit:1 of
msgid ""
"The maximum number of users that can be members of the chat "
"simultaneously after joining the chat via this invite link; 1-99999"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_chat_invite_link.EditChatInviteLink.creates_join_request:1
#: of
msgid ""
":code:`True`, if users joining the chat via the link need to be approved "
"by chat administrators. If :code:`True`, *member_limit* can't be "
"specified"
msgstr ""
#: ../../api/methods/edit_chat_invite_link.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/edit_chat_invite_link.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/edit_chat_invite_link.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/edit_chat_invite_link.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/edit_chat_invite_link.rst:29
msgid ""
":code:`from aiogram.methods.edit_chat_invite_link import "
"EditChatInviteLink`"
msgstr ""
#: ../../api/methods/edit_chat_invite_link.rst:30
msgid "alias: :code:`from aiogram.methods import EditChatInviteLink`"
msgstr ""
#: ../../api/methods/edit_chat_invite_link.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/edit_chat_invite_link.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,124 @@
# 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-10-01 22:51+0300\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/methods/edit_message_caption.rst:3
msgid "editMessageCaption"
msgstr ""
#: ../../api/methods/edit_message_caption.rst:5
msgid "Returns: :obj:`Union[Message, bool]`"
msgstr ""
#: aiogram.methods.edit_message_caption.EditMessageCaption:1 of
msgid ""
"Use this method to edit captions of messages. On success, if the edited "
"message is not an inline message, the edited "
":class:`aiogram.types.message.Message` is returned, otherwise "
":code:`True` is returned."
msgstr ""
#: aiogram.methods.edit_message_caption.EditMessageCaption:3 of
msgid "Source: https://core.telegram.org/bots/api#editmessagecaption"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_caption.EditMessageCaption.chat_id:1 of
msgid ""
"Required if *inline_message_id* is not specified. Unique identifier for "
"the target chat or username of the target channel (in the format "
":code:`@channelusername`)"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_caption.EditMessageCaption.message_id:1 of
msgid ""
"Required if *inline_message_id* is not specified. Identifier of the "
"message to edit"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_caption.EditMessageCaption.inline_message_id:1
#: of
msgid ""
"Required if *chat_id* and *message_id* are not specified. Identifier of "
"the inline message"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_caption.EditMessageCaption.caption:1 of
msgid "New caption of the message, 0-1024 characters after entities parsing"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_caption.EditMessageCaption.parse_mode:1 of
msgid ""
"Mode for parsing entities in the message caption. See `formatting options"
" <https://core.telegram.org/bots/api#formatting-options>`_ for more "
"details."
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_caption.EditMessageCaption.caption_entities:1
#: of
msgid ""
"A JSON-serialized list of special entities that appear in the caption, "
"which can be specified instead of *parse_mode*"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_caption.EditMessageCaption.reply_markup:1 of
msgid ""
"A JSON-serialized object for an `inline keyboard "
"<https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_."
msgstr ""
#: ../../api/methods/edit_message_caption.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/edit_message_caption.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/edit_message_caption.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/edit_message_caption.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/edit_message_caption.rst:29
msgid ""
":code:`from aiogram.methods.edit_message_caption import "
"EditMessageCaption`"
msgstr ""
#: ../../api/methods/edit_message_caption.rst:30
msgid "alias: :code:`from aiogram.methods import EditMessageCaption`"
msgstr ""
#: ../../api/methods/edit_message_caption.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/edit_message_caption.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,143 @@
# 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-10-01 22:51+0300\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/methods/edit_message_live_location.rst:3
msgid "editMessageLiveLocation"
msgstr ""
#: ../../api/methods/edit_message_live_location.rst:5
msgid "Returns: :obj:`Union[Message, bool]`"
msgstr ""
#: aiogram.methods.edit_message_live_location.EditMessageLiveLocation:1 of
msgid ""
"Use this method to edit live location messages. A location can be edited "
"until its *live_period* expires or editing is explicitly disabled by a "
"call to "
":class:`aiogram.methods.stop_message_live_location.StopMessageLiveLocation`."
" On success, if the edited message is not an inline message, the edited "
":class:`aiogram.types.message.Message` is returned, otherwise "
":code:`True` is returned."
msgstr ""
#: aiogram.methods.edit_message_live_location.EditMessageLiveLocation:3 of
msgid "Source: https://core.telegram.org/bots/api#editmessagelivelocation"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_live_location.EditMessageLiveLocation.latitude:1
#: of
msgid "Latitude of new location"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_live_location.EditMessageLiveLocation.longitude:1
#: of
msgid "Longitude of new location"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_live_location.EditMessageLiveLocation.chat_id:1
#: of
msgid ""
"Required if *inline_message_id* is not specified. Unique identifier for "
"the target chat or username of the target channel (in the format "
":code:`@channelusername`)"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_live_location.EditMessageLiveLocation.message_id:1
#: of
msgid ""
"Required if *inline_message_id* is not specified. Identifier of the "
"message to edit"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_live_location.EditMessageLiveLocation.inline_message_id:1
#: of
msgid ""
"Required if *chat_id* and *message_id* are not specified. Identifier of "
"the inline message"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_live_location.EditMessageLiveLocation.horizontal_accuracy:1
#: of
msgid "The radius of uncertainty for the location, measured in meters; 0-1500"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_live_location.EditMessageLiveLocation.heading:1
#: of
msgid ""
"Direction in which the user is moving, in degrees. Must be between 1 and "
"360 if specified."
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_live_location.EditMessageLiveLocation.proximity_alert_radius:1
#: of
msgid ""
"The maximum distance for proximity alerts about approaching another chat "
"member, in meters. Must be between 1 and 100000 if specified."
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_live_location.EditMessageLiveLocation.reply_markup:1
#: of
msgid ""
"A JSON-serialized object for a new `inline keyboard "
"<https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_."
msgstr ""
#: ../../api/methods/edit_message_live_location.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/edit_message_live_location.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/edit_message_live_location.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/edit_message_live_location.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/edit_message_live_location.rst:29
msgid ""
":code:`from aiogram.methods.edit_message_live_location import "
"EditMessageLiveLocation`"
msgstr ""
#: ../../api/methods/edit_message_live_location.rst:30
msgid "alias: :code:`from aiogram.methods import EditMessageLiveLocation`"
msgstr ""
#: ../../api/methods/edit_message_live_location.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/edit_message_live_location.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,109 @@
# 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-10-01 22:51+0300\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/methods/edit_message_media.rst:3
msgid "editMessageMedia"
msgstr ""
#: ../../api/methods/edit_message_media.rst:5
msgid "Returns: :obj:`Union[Message, bool]`"
msgstr ""
#: aiogram.methods.edit_message_media.EditMessageMedia:1 of
msgid ""
"Use this method to edit animation, audio, document, photo, or video "
"messages. If a message is part of a message album, then it can be edited "
"only to an audio for audio albums, only to a document for document albums"
" and to a photo or a video otherwise. When an inline message is edited, a"
" new file can't be uploaded; use a previously uploaded file via its "
"file_id or specify a URL. On success, if the edited message is not an "
"inline message, the edited :class:`aiogram.types.message.Message` is "
"returned, otherwise :code:`True` is returned."
msgstr ""
#: aiogram.methods.edit_message_media.EditMessageMedia:3 of
msgid "Source: https://core.telegram.org/bots/api#editmessagemedia"
msgstr ""
#: ../../docstring aiogram.methods.edit_message_media.EditMessageMedia.media:1
#: of
msgid "A JSON-serialized object for a new media content of the message"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_media.EditMessageMedia.chat_id:1 of
msgid ""
"Required if *inline_message_id* is not specified. Unique identifier for "
"the target chat or username of the target channel (in the format "
":code:`@channelusername`)"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_media.EditMessageMedia.message_id:1 of
msgid ""
"Required if *inline_message_id* is not specified. Identifier of the "
"message to edit"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_media.EditMessageMedia.inline_message_id:1 of
msgid ""
"Required if *chat_id* and *message_id* are not specified. Identifier of "
"the inline message"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_media.EditMessageMedia.reply_markup:1 of
msgid ""
"A JSON-serialized object for a new `inline keyboard "
"<https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_."
msgstr ""
#: ../../api/methods/edit_message_media.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/edit_message_media.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/edit_message_media.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/edit_message_media.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/edit_message_media.rst:29
msgid ":code:`from aiogram.methods.edit_message_media import EditMessageMedia`"
msgstr ""
#: ../../api/methods/edit_message_media.rst:30
msgid "alias: :code:`from aiogram.methods import EditMessageMedia`"
msgstr ""
#: ../../api/methods/edit_message_media.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/edit_message_media.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,106 @@
# 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-10-01 22:51+0300\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/methods/edit_message_reply_markup.rst:3
msgid "editMessageReplyMarkup"
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:5
msgid "Returns: :obj:`Union[Message, bool]`"
msgstr ""
#: aiogram.methods.edit_message_reply_markup.EditMessageReplyMarkup:1 of
msgid ""
"Use this method to edit only the reply markup of messages. On success, if"
" the edited message is not an inline message, the edited "
":class:`aiogram.types.message.Message` is returned, otherwise "
":code:`True` is returned."
msgstr ""
#: aiogram.methods.edit_message_reply_markup.EditMessageReplyMarkup:3 of
msgid "Source: https://core.telegram.org/bots/api#editmessagereplymarkup"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_reply_markup.EditMessageReplyMarkup.chat_id:1
#: of
msgid ""
"Required if *inline_message_id* is not specified. Unique identifier for "
"the target chat or username of the target channel (in the format "
":code:`@channelusername`)"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_reply_markup.EditMessageReplyMarkup.message_id:1
#: of
msgid ""
"Required if *inline_message_id* is not specified. Identifier of the "
"message to edit"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_reply_markup.EditMessageReplyMarkup.inline_message_id:1
#: of
msgid ""
"Required if *chat_id* and *message_id* are not specified. Identifier of "
"the inline message"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_reply_markup.EditMessageReplyMarkup.reply_markup:1
#: of
msgid ""
"A JSON-serialized object for an `inline keyboard "
"<https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_."
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:29
msgid ""
":code:`from aiogram.methods.edit_message_reply_markup import "
"EditMessageReplyMarkup`"
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:30
msgid "alias: :code:`from aiogram.methods import EditMessageReplyMarkup`"
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,126 @@
# 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-10-01 22:51+0300\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/methods/edit_message_text.rst:3
msgid "editMessageText"
msgstr ""
#: ../../api/methods/edit_message_text.rst:5
msgid "Returns: :obj:`Union[Message, bool]`"
msgstr ""
#: aiogram.methods.edit_message_text.EditMessageText:1 of
msgid ""
"Use this method to edit text and `game "
"<https://core.telegram.org/bots/api#games>`_ messages. On success, if the"
" edited message is not an inline message, the edited "
":class:`aiogram.types.message.Message` is returned, otherwise "
":code:`True` is returned."
msgstr ""
#: aiogram.methods.edit_message_text.EditMessageText:3 of
msgid "Source: https://core.telegram.org/bots/api#editmessagetext"
msgstr ""
#: ../../docstring aiogram.methods.edit_message_text.EditMessageText.text:1 of
msgid "New text of the message, 1-4096 characters after entities parsing"
msgstr ""
#: ../../docstring aiogram.methods.edit_message_text.EditMessageText.chat_id:1
#: of
msgid ""
"Required if *inline_message_id* is not specified. Unique identifier for "
"the target chat or username of the target channel (in the format "
":code:`@channelusername`)"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_text.EditMessageText.message_id:1 of
msgid ""
"Required if *inline_message_id* is not specified. Identifier of the "
"message to edit"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_text.EditMessageText.inline_message_id:1 of
msgid ""
"Required if *chat_id* and *message_id* are not specified. Identifier of "
"the inline message"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_text.EditMessageText.parse_mode:1 of
msgid ""
"Mode for parsing entities in the message text. See `formatting options "
"<https://core.telegram.org/bots/api#formatting-options>`_ for more "
"details."
msgstr ""
#: ../../docstring aiogram.methods.edit_message_text.EditMessageText.entities:1
#: of
msgid ""
"A JSON-serialized list of special entities that appear in message text, "
"which can be specified instead of *parse_mode*"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_text.EditMessageText.disable_web_page_preview:1
#: of
msgid "Disables link previews for links in this message"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_message_text.EditMessageText.reply_markup:1 of
msgid ""
"A JSON-serialized object for an `inline keyboard "
"<https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_."
msgstr ""
#: ../../api/methods/edit_message_text.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/edit_message_text.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/edit_message_text.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/edit_message_text.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/edit_message_text.rst:29
msgid ":code:`from aiogram.methods.edit_message_text import EditMessageText`"
msgstr ""
#: ../../api/methods/edit_message_text.rst:30
msgid "alias: :code:`from aiogram.methods import EditMessageText`"
msgstr ""
#: ../../api/methods/edit_message_text.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/edit_message_text.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,93 @@
# 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-10-01 22:51+0300\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/methods/export_chat_invite_link.rst:3
msgid "exportChatInviteLink"
msgstr ""
#: ../../api/methods/export_chat_invite_link.rst:5
msgid "Returns: :obj:`str`"
msgstr ""
#: aiogram.methods.export_chat_invite_link.ExportChatInviteLink:1 of
msgid ""
"Use this method to generate a new primary invite link for a chat; any "
"previously generated primary link is revoked. The bot must be an "
"administrator in the chat for this to work and must have the appropriate "
"administrator rights. Returns the new invite link as *String* on success."
msgstr ""
#: aiogram.methods.export_chat_invite_link.ExportChatInviteLink:3 of
msgid ""
"Note: Each administrator in a chat generates their own invite links. Bots"
" can't use invite links generated by other administrators. If you want "
"your bot to work with invite links, it will need to generate its own link"
" using "
":class:`aiogram.methods.export_chat_invite_link.ExportChatInviteLink` or "
"by calling the :class:`aiogram.methods.get_chat.GetChat` method. If your "
"bot needs to generate a new primary invite link replacing its previous "
"one, use "
":class:`aiogram.methods.export_chat_invite_link.ExportChatInviteLink` "
"again."
msgstr ""
#: aiogram.methods.export_chat_invite_link.ExportChatInviteLink:5 of
msgid "Source: https://core.telegram.org/bots/api#exportchatinvitelink"
msgstr ""
#: ../../docstring
#: aiogram.methods.export_chat_invite_link.ExportChatInviteLink.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../api/methods/export_chat_invite_link.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/export_chat_invite_link.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/export_chat_invite_link.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/export_chat_invite_link.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/export_chat_invite_link.rst:29
msgid ""
":code:`from aiogram.methods.export_chat_invite_link import "
"ExportChatInviteLink`"
msgstr ""
#: ../../api/methods/export_chat_invite_link.rst:30
msgid "alias: :code:`from aiogram.methods import ExportChatInviteLink`"
msgstr ""
#: ../../api/methods/export_chat_invite_link.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/export_chat_invite_link.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,99 @@
# 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-10-01 22:51+0300\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/methods/forward_message.rst:3
msgid "forwardMessage"
msgstr ""
#: ../../api/methods/forward_message.rst:5
msgid "Returns: :obj:`Message`"
msgstr ""
#: aiogram.methods.forward_message.ForwardMessage:1 of
msgid ""
"Use this method to forward messages of any kind. Service messages can't "
"be forwarded. On success, the sent :class:`aiogram.types.message.Message`"
" is returned."
msgstr ""
#: aiogram.methods.forward_message.ForwardMessage:3 of
msgid "Source: https://core.telegram.org/bots/api#forwardmessage"
msgstr ""
#: ../../docstring aiogram.methods.forward_message.ForwardMessage.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring
#: aiogram.methods.forward_message.ForwardMessage.from_chat_id:1 of
msgid ""
"Unique identifier for the chat where the original message was sent (or "
"channel username in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.forward_message.ForwardMessage.message_id:1
#: of
msgid "Message identifier in the chat specified in *from_chat_id*"
msgstr ""
#: ../../docstring
#: aiogram.methods.forward_message.ForwardMessage.disable_notification:1 of
msgid ""
"Sends the message `silently <https://telegram.org/blog/channels-2-0"
"#silent-messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring
#: aiogram.methods.forward_message.ForwardMessage.protect_content:1 of
msgid "Protects the contents of the forwarded message from forwarding and saving"
msgstr ""
#: ../../api/methods/forward_message.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/forward_message.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/forward_message.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/forward_message.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/forward_message.rst:29
msgid ":code:`from aiogram.methods.forward_message import ForwardMessage`"
msgstr ""
#: ../../api/methods/forward_message.rst:30
msgid "alias: :code:`from aiogram.methods import ForwardMessage`"
msgstr ""
#: ../../api/methods/forward_message.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/forward_message.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,72 @@
# 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-10-01 22:51+0300\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/methods/get_chat.rst:3
msgid "getChat"
msgstr ""
#: ../../api/methods/get_chat.rst:5
msgid "Returns: :obj:`Chat`"
msgstr ""
#: aiogram.methods.get_chat.GetChat:1 of
msgid ""
"Use this method to get up to date information about the chat (current "
"name of the user for one-on-one conversations, current username of a "
"user, group or channel, etc.). Returns a :class:`aiogram.types.chat.Chat`"
" object on success."
msgstr ""
#: aiogram.methods.get_chat.GetChat:3 of
msgid "Source: https://core.telegram.org/bots/api#getchat"
msgstr ""
#: ../../docstring aiogram.methods.get_chat.GetChat.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target "
"supergroup or channel (in the format :code:`@channelusername`)"
msgstr ""
#: ../../api/methods/get_chat.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_chat.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_chat.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_chat.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_chat.rst:29
msgid ":code:`from aiogram.methods.get_chat import GetChat`"
msgstr ""
#: ../../api/methods/get_chat.rst:30
msgid "alias: :code:`from aiogram.methods import GetChat`"
msgstr ""
#: ../../api/methods/get_chat.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -0,0 +1,77 @@
# 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-10-01 22:51+0300\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/methods/get_chat_administrators.rst:3
msgid "getChatAdministrators"
msgstr ""
#: ../../api/methods/get_chat_administrators.rst:5
msgid ""
"Returns: :obj:`List[Union[ChatMemberOwner, ChatMemberAdministrator, "
"ChatMemberMember, ChatMemberRestricted, ChatMemberLeft, "
"ChatMemberBanned]]`"
msgstr ""
#: aiogram.methods.get_chat_administrators.GetChatAdministrators:1 of
msgid ""
"Use this method to get a list of administrators in a chat, which aren't "
"bots. Returns an Array of :class:`aiogram.types.chat_member.ChatMember` "
"objects."
msgstr ""
#: aiogram.methods.get_chat_administrators.GetChatAdministrators:3 of
msgid "Source: https://core.telegram.org/bots/api#getchatadministrators"
msgstr ""
#: ../../docstring
#: aiogram.methods.get_chat_administrators.GetChatAdministrators.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target "
"supergroup or channel (in the format :code:`@channelusername`)"
msgstr ""
#: ../../api/methods/get_chat_administrators.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_chat_administrators.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_chat_administrators.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_chat_administrators.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_chat_administrators.rst:29
msgid ""
":code:`from aiogram.methods.get_chat_administrators import "
"GetChatAdministrators`"
msgstr ""
#: ../../api/methods/get_chat_administrators.rst:30
msgid "alias: :code:`from aiogram.methods import GetChatAdministrators`"
msgstr ""
#: ../../api/methods/get_chat_administrators.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -0,0 +1,77 @@
# 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-10-01 22:51+0300\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/methods/get_chat_member.rst:3
msgid "getChatMember"
msgstr ""
#: ../../api/methods/get_chat_member.rst:5
msgid ""
"Returns: :obj:`Union[ChatMemberOwner, ChatMemberAdministrator, "
"ChatMemberMember, ChatMemberRestricted, ChatMemberLeft, "
"ChatMemberBanned]`"
msgstr ""
#: aiogram.methods.get_chat_member.GetChatMember:1 of
msgid ""
"Use this method to get information about a member of a chat. Returns a "
":class:`aiogram.types.chat_member.ChatMember` object on success."
msgstr ""
#: aiogram.methods.get_chat_member.GetChatMember:3 of
msgid "Source: https://core.telegram.org/bots/api#getchatmember"
msgstr ""
#: ../../docstring aiogram.methods.get_chat_member.GetChatMember.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target "
"supergroup or channel (in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.get_chat_member.GetChatMember.user_id:1 of
msgid "Unique identifier of the target user"
msgstr ""
#: ../../api/methods/get_chat_member.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_chat_member.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_chat_member.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_chat_member.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_chat_member.rst:29
msgid ":code:`from aiogram.methods.get_chat_member import GetChatMember`"
msgstr ""
#: ../../api/methods/get_chat_member.rst:30
msgid "alias: :code:`from aiogram.methods import GetChatMember`"
msgstr ""
#: ../../api/methods/get_chat_member.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -0,0 +1,73 @@
# 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-10-01 22:51+0300\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/methods/get_chat_member_count.rst:3
msgid "getChatMemberCount"
msgstr ""
#: ../../api/methods/get_chat_member_count.rst:5
msgid "Returns: :obj:`int`"
msgstr ""
#: aiogram.methods.get_chat_member_count.GetChatMemberCount:1 of
msgid ""
"Use this method to get the number of members in a chat. Returns *Int* on "
"success."
msgstr ""
#: aiogram.methods.get_chat_member_count.GetChatMemberCount:3 of
msgid "Source: https://core.telegram.org/bots/api#getchatmembercount"
msgstr ""
#: ../../docstring
#: aiogram.methods.get_chat_member_count.GetChatMemberCount.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target "
"supergroup or channel (in the format :code:`@channelusername`)"
msgstr ""
#: ../../api/methods/get_chat_member_count.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_chat_member_count.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_chat_member_count.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_chat_member_count.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_chat_member_count.rst:29
msgid ""
":code:`from aiogram.methods.get_chat_member_count import "
"GetChatMemberCount`"
msgstr ""
#: ../../api/methods/get_chat_member_count.rst:30
msgid "alias: :code:`from aiogram.methods import GetChatMemberCount`"
msgstr ""
#: ../../api/methods/get_chat_member_count.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -0,0 +1,73 @@
# 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-10-01 22:51+0300\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/methods/get_chat_members_count.rst:3
msgid "getChatMembersCount"
msgstr ""
#: ../../api/methods/get_chat_members_count.rst:5
msgid "Returns: :obj:`int`"
msgstr ""
#: aiogram.methods.get_chat_members_count.GetChatMembersCount:5 of
msgid ""
"Use this method to get the number of members in a chat. Returns *Int* on "
"success."
msgstr ""
#: aiogram.methods.get_chat_members_count.GetChatMembersCount:7 of
msgid "Source: https://core.telegram.org/bots/api#getchatmembercount"
msgstr ""
#: ../../docstring
#: aiogram.methods.get_chat_members_count.GetChatMembersCount.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target "
"supergroup or channel (in the format :code:`@channelusername`)"
msgstr ""
#: ../../api/methods/get_chat_members_count.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_chat_members_count.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_chat_members_count.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_chat_members_count.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_chat_members_count.rst:29
msgid ""
":code:`from aiogram.methods.get_chat_members_count import "
"GetChatMembersCount`"
msgstr ""
#: ../../api/methods/get_chat_members_count.rst:30
msgid "alias: :code:`from aiogram.methods import GetChatMembersCount`"
msgstr ""
#: ../../api/methods/get_chat_members_count.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -0,0 +1,72 @@
# 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-10-01 22:51+0300\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/methods/get_chat_menu_button.rst:3
msgid "getChatMenuButton"
msgstr ""
#: ../../api/methods/get_chat_menu_button.rst:5
msgid "Returns: :obj:`MenuButton`"
msgstr ""
#: aiogram.methods.get_chat_menu_button.GetChatMenuButton:1 of
msgid ""
"Use this method to get the current value of the bot's menu button in a "
"private chat, or the default menu button. Returns "
":class:`aiogram.types.menu_button.MenuButton` on success."
msgstr ""
#: aiogram.methods.get_chat_menu_button.GetChatMenuButton:3 of
msgid "Source: https://core.telegram.org/bots/api#getchatmenubutton"
msgstr ""
#: ../../docstring
#: aiogram.methods.get_chat_menu_button.GetChatMenuButton.chat_id:1 of
msgid ""
"Unique identifier for the target private chat. If not specified, default "
"bot's menu button will be returned"
msgstr ""
#: ../../api/methods/get_chat_menu_button.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_chat_menu_button.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_chat_menu_button.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_chat_menu_button.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_chat_menu_button.rst:29
msgid ":code:`from aiogram.methods.get_chat_menu_button import GetChatMenuButton`"
msgstr ""
#: ../../api/methods/get_chat_menu_button.rst:30
msgid "alias: :code:`from aiogram.methods import GetChatMenuButton`"
msgstr ""
#: ../../api/methods/get_chat_menu_button.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -0,0 +1,75 @@
# 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-10-01 22:51+0300\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/methods/get_custom_emoji_stickers.rst:3
msgid "getCustomEmojiStickers"
msgstr ""
#: ../../api/methods/get_custom_emoji_stickers.rst:5
msgid "Returns: :obj:`List[Sticker]`"
msgstr ""
#: aiogram.methods.get_custom_emoji_stickers.GetCustomEmojiStickers:1 of
msgid ""
"Use this method to get information about custom emoji stickers by their "
"identifiers. Returns an Array of :class:`aiogram.types.sticker.Sticker` "
"objects."
msgstr ""
#: aiogram.methods.get_custom_emoji_stickers.GetCustomEmojiStickers:3 of
msgid "Source: https://core.telegram.org/bots/api#getcustomemojistickers"
msgstr ""
#: ../../docstring
#: aiogram.methods.get_custom_emoji_stickers.GetCustomEmojiStickers.custom_emoji_ids:1
#: of
msgid ""
"List of custom emoji identifiers. At most 200 custom emoji identifiers "
"can be specified."
msgstr ""
#: ../../api/methods/get_custom_emoji_stickers.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_custom_emoji_stickers.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_custom_emoji_stickers.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_custom_emoji_stickers.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_custom_emoji_stickers.rst:29
msgid ""
":code:`from aiogram.methods.get_custom_emoji_stickers import "
"GetCustomEmojiStickers`"
msgstr ""
#: ../../api/methods/get_custom_emoji_stickers.rst:30
msgid "alias: :code:`from aiogram.methods import GetCustomEmojiStickers`"
msgstr ""
#: ../../api/methods/get_custom_emoji_stickers.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -0,0 +1,77 @@
# 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-10-01 22:51+0300\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/methods/get_file.rst:3
msgid "getFile"
msgstr ""
#: ../../api/methods/get_file.rst:5
msgid "Returns: :obj:`File`"
msgstr ""
#: aiogram.methods.get_file.GetFile:1 of
msgid ""
"Use this method to get basic information about a file and prepare it for "
"downloading. For the moment, bots can download files of up to 20MB in "
"size. On success, a :class:`aiogram.types.file.File` object is returned. "
"The file can then be downloaded via the link "
":code:`https://api.telegram.org/file/bot<token>/<file_path>`, where "
":code:`<file_path>` is taken from the response. It is guaranteed that the"
" link will be valid for at least 1 hour. When the link expires, a new one"
" can be requested by calling :class:`aiogram.methods.get_file.GetFile` "
"again. **Note:** This function may not preserve the original file name "
"and MIME type. You should save the file's MIME type and name (if "
"available) when the File object is received."
msgstr ""
#: aiogram.methods.get_file.GetFile:4 of
msgid "Source: https://core.telegram.org/bots/api#getfile"
msgstr ""
#: ../../docstring aiogram.methods.get_file.GetFile.file_id:1 of
msgid "File identifier to get information about"
msgstr ""
#: ../../api/methods/get_file.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_file.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_file.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_file.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_file.rst:29
msgid ":code:`from aiogram.methods.get_file import GetFile`"
msgstr ""
#: ../../api/methods/get_file.rst:30
msgid "alias: :code:`from aiogram.methods import GetFile`"
msgstr ""
#: ../../api/methods/get_file.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -0,0 +1,100 @@
# 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-10-01 22:51+0300\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/methods/get_game_high_scores.rst:3
msgid "getGameHighScores"
msgstr ""
#: ../../api/methods/get_game_high_scores.rst:5
msgid "Returns: :obj:`List[GameHighScore]`"
msgstr ""
#: aiogram.methods.get_game_high_scores.GetGameHighScores:1 of
msgid ""
"Use this method to get data for high score tables. Will return the score "
"of the specified user and several of their neighbors in a game. Returns "
"an Array of :class:`aiogram.types.game_high_score.GameHighScore` objects."
msgstr ""
#: aiogram.methods.get_game_high_scores.GetGameHighScores:3 of
msgid ""
"This method will currently return scores for the target user, plus two of"
" their closest neighbors on each side. Will also return the top three "
"users if the user and their neighbors are not among them. Please note "
"that this behavior is subject to change."
msgstr ""
#: aiogram.methods.get_game_high_scores.GetGameHighScores:5 of
msgid "Source: https://core.telegram.org/bots/api#getgamehighscores"
msgstr ""
#: ../../docstring
#: aiogram.methods.get_game_high_scores.GetGameHighScores.user_id:1 of
msgid "Target user id"
msgstr ""
#: ../../docstring
#: aiogram.methods.get_game_high_scores.GetGameHighScores.chat_id:1 of
msgid ""
"Required if *inline_message_id* is not specified. Unique identifier for "
"the target chat"
msgstr ""
#: ../../docstring
#: aiogram.methods.get_game_high_scores.GetGameHighScores.message_id:1 of
msgid ""
"Required if *inline_message_id* is not specified. Identifier of the sent "
"message"
msgstr ""
#: ../../docstring
#: aiogram.methods.get_game_high_scores.GetGameHighScores.inline_message_id:1
#: of
msgid ""
"Required if *chat_id* and *message_id* are not specified. Identifier of "
"the inline message"
msgstr ""
#: ../../api/methods/get_game_high_scores.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_game_high_scores.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_game_high_scores.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_game_high_scores.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_game_high_scores.rst:29
msgid ":code:`from aiogram.methods.get_game_high_scores import GetGameHighScores`"
msgstr ""
#: ../../api/methods/get_game_high_scores.rst:30
msgid "alias: :code:`from aiogram.methods import GetGameHighScores`"
msgstr ""
#: ../../api/methods/get_game_high_scores.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -0,0 +1,65 @@
# 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-10-01 22:51+0300\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/methods/get_me.rst:3
msgid "getMe"
msgstr ""
#: ../../api/methods/get_me.rst:5
msgid "Returns: :obj:`User`"
msgstr ""
#: aiogram.methods.get_me.GetMe:1 of
msgid ""
"A simple method for testing your bot's authentication token. Requires no "
"parameters. Returns basic information about the bot in form of a "
":class:`aiogram.types.user.User` object."
msgstr ""
#: aiogram.methods.get_me.GetMe:3 of
msgid "Source: https://core.telegram.org/bots/api#getme"
msgstr ""
#: ../../api/methods/get_me.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_me.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_me.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_me.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_me.rst:29
msgid ":code:`from aiogram.methods.get_me import GetMe`"
msgstr ""
#: ../../api/methods/get_me.rst:30
msgid "alias: :code:`from aiogram.methods import GetMe`"
msgstr ""
#: ../../api/methods/get_me.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -0,0 +1,77 @@
# 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-10-01 22:51+0300\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/methods/get_my_commands.rst:3
msgid "getMyCommands"
msgstr ""
#: ../../api/methods/get_my_commands.rst:5
msgid "Returns: :obj:`List[BotCommand]`"
msgstr ""
#: aiogram.methods.get_my_commands.GetMyCommands:1 of
msgid ""
"Use this method to get the current list of the bot's commands for the "
"given scope and user language. Returns an Array of "
":class:`aiogram.types.bot_command.BotCommand` objects. If commands aren't"
" set, an empty list is returned."
msgstr ""
#: aiogram.methods.get_my_commands.GetMyCommands:3 of
msgid "Source: https://core.telegram.org/bots/api#getmycommands"
msgstr ""
#: ../../docstring aiogram.methods.get_my_commands.GetMyCommands.scope:1 of
msgid ""
"A JSON-serialized object, describing scope of users. Defaults to "
":class:`aiogram.types.bot_command_scope_default.BotCommandScopeDefault`."
msgstr ""
#: ../../docstring
#: aiogram.methods.get_my_commands.GetMyCommands.language_code:1 of
msgid "A two-letter ISO 639-1 language code or an empty string"
msgstr ""
#: ../../api/methods/get_my_commands.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_my_commands.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_my_commands.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_my_commands.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_my_commands.rst:29
msgid ":code:`from aiogram.methods.get_my_commands import GetMyCommands`"
msgstr ""
#: ../../api/methods/get_my_commands.rst:30
msgid "alias: :code:`from aiogram.methods import GetMyCommands`"
msgstr ""
#: ../../api/methods/get_my_commands.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -0,0 +1,79 @@
# 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-10-01 22:51+0300\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/methods/get_my_default_administrator_rights.rst:3
msgid "getMyDefaultAdministratorRights"
msgstr ""
#: ../../api/methods/get_my_default_administrator_rights.rst:5
msgid "Returns: :obj:`ChatAdministratorRights`"
msgstr ""
#: aiogram.methods.get_my_default_administrator_rights.GetMyDefaultAdministratorRights:1
#: of
msgid ""
"Use this method to get the current default administrator rights of the "
"bot. Returns "
":class:`aiogram.types.chat_administrator_rights.ChatAdministratorRights` "
"on success."
msgstr ""
#: aiogram.methods.get_my_default_administrator_rights.GetMyDefaultAdministratorRights:3
#: of
msgid "Source: https://core.telegram.org/bots/api#getmydefaultadministratorrights"
msgstr ""
#: ../../docstring
#: aiogram.methods.get_my_default_administrator_rights.GetMyDefaultAdministratorRights.for_channels:1
#: of
msgid ""
"Pass :code:`True` to get default administrator rights of the bot in "
"channels. Otherwise, default administrator rights of the bot for groups "
"and supergroups will be returned."
msgstr ""
#: ../../api/methods/get_my_default_administrator_rights.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_my_default_administrator_rights.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_my_default_administrator_rights.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_my_default_administrator_rights.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_my_default_administrator_rights.rst:29
msgid ""
":code:`from aiogram.methods.get_my_default_administrator_rights import "
"GetMyDefaultAdministratorRights`"
msgstr ""
#: ../../api/methods/get_my_default_administrator_rights.rst:30
msgid "alias: :code:`from aiogram.methods import GetMyDefaultAdministratorRights`"
msgstr ""
#: ../../api/methods/get_my_default_administrator_rights.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -0,0 +1,68 @@
# 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-10-01 22:51+0300\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/methods/get_sticker_set.rst:3
msgid "getStickerSet"
msgstr ""
#: ../../api/methods/get_sticker_set.rst:5
msgid "Returns: :obj:`StickerSet`"
msgstr ""
#: aiogram.methods.get_sticker_set.GetStickerSet:1 of
msgid ""
"Use this method to get a sticker set. On success, a "
":class:`aiogram.types.sticker_set.StickerSet` object is returned."
msgstr ""
#: aiogram.methods.get_sticker_set.GetStickerSet:3 of
msgid "Source: https://core.telegram.org/bots/api#getstickerset"
msgstr ""
#: ../../docstring aiogram.methods.get_sticker_set.GetStickerSet.name:1 of
msgid "Name of the sticker set"
msgstr ""
#: ../../api/methods/get_sticker_set.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_sticker_set.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_sticker_set.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_sticker_set.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_sticker_set.rst:29
msgid ":code:`from aiogram.methods.get_sticker_set import GetStickerSet`"
msgstr ""
#: ../../api/methods/get_sticker_set.rst:30
msgid "alias: :code:`from aiogram.methods import GetStickerSet`"
msgstr ""
#: ../../api/methods/get_sticker_set.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -0,0 +1,115 @@
# 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-10-01 22:51+0300\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/methods/get_updates.rst:3
msgid "getUpdates"
msgstr ""
#: ../../api/methods/get_updates.rst:5
msgid "Returns: :obj:`List[Update]`"
msgstr ""
#: aiogram.methods.get_updates.GetUpdates:1 of
msgid ""
"Use this method to receive incoming updates using long polling (`wiki "
"<https://en.wikipedia.org/wiki/Push_technology#Long_polling>`_). Returns "
"an Array of :class:`aiogram.types.update.Update` objects."
msgstr ""
#: aiogram.methods.get_updates.GetUpdates:3 of
msgid "**Notes**"
msgstr ""
#: aiogram.methods.get_updates.GetUpdates:5 of
msgid "**1.** This method will not work if an outgoing webhook is set up."
msgstr ""
#: aiogram.methods.get_updates.GetUpdates:7 of
msgid ""
"**2.** In order to avoid getting duplicate updates, recalculate *offset* "
"after each server response."
msgstr ""
#: aiogram.methods.get_updates.GetUpdates:9 of
msgid "Source: https://core.telegram.org/bots/api#getupdates"
msgstr ""
#: ../../docstring aiogram.methods.get_updates.GetUpdates.offset:1 of
msgid ""
"Identifier of the first update to be returned. Must be greater by one "
"than the highest among the identifiers of previously received updates. By"
" default, updates starting with the earliest unconfirmed update are "
"returned. An update is considered confirmed as soon as "
":class:`aiogram.methods.get_updates.GetUpdates` is called with an "
"*offset* higher than its *update_id*. The negative offset can be "
"specified to retrieve updates starting from *-offset* update from the end"
" of the updates queue. All previous updates will forgotten."
msgstr ""
#: ../../docstring aiogram.methods.get_updates.GetUpdates.limit:1 of
msgid ""
"Limits the number of updates to be retrieved. Values between 1-100 are "
"accepted. Defaults to 100."
msgstr ""
#: ../../docstring aiogram.methods.get_updates.GetUpdates.timeout:1 of
msgid ""
"Timeout in seconds for long polling. Defaults to 0, i.e. usual short "
"polling. Should be positive, short polling should be used for testing "
"purposes only."
msgstr ""
#: ../../docstring aiogram.methods.get_updates.GetUpdates.allowed_updates:1 of
msgid ""
"A JSON-serialized list of the update types you want your bot to receive. "
"For example, specify ['message', 'edited_channel_post', 'callback_query']"
" to only receive updates of these types. See "
":class:`aiogram.types.update.Update` for a complete list of available "
"update types. Specify an empty list to receive all update types except "
"*chat_member* (default). If not specified, the previous setting will be "
"used."
msgstr ""
#: ../../api/methods/get_updates.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_updates.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_updates.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_updates.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_updates.rst:29
msgid ":code:`from aiogram.methods.get_updates import GetUpdates`"
msgstr ""
#: ../../api/methods/get_updates.rst:30
msgid "alias: :code:`from aiogram.methods import GetUpdates`"
msgstr ""
#: ../../api/methods/get_updates.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -0,0 +1,85 @@
# 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-10-01 22:51+0300\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/methods/get_user_profile_photos.rst:3
msgid "getUserProfilePhotos"
msgstr ""
#: ../../api/methods/get_user_profile_photos.rst:5
msgid "Returns: :obj:`UserProfilePhotos`"
msgstr ""
#: aiogram.methods.get_user_profile_photos.GetUserProfilePhotos:1 of
msgid ""
"Use this method to get a list of profile pictures for a user. Returns a "
":class:`aiogram.types.user_profile_photos.UserProfilePhotos` object."
msgstr ""
#: aiogram.methods.get_user_profile_photos.GetUserProfilePhotos:3 of
msgid "Source: https://core.telegram.org/bots/api#getuserprofilephotos"
msgstr ""
#: ../../docstring
#: aiogram.methods.get_user_profile_photos.GetUserProfilePhotos.user_id:1 of
msgid "Unique identifier of the target user"
msgstr ""
#: ../../docstring
#: aiogram.methods.get_user_profile_photos.GetUserProfilePhotos.offset:1 of
msgid ""
"Sequential number of the first photo to be returned. By default, all "
"photos are returned."
msgstr ""
#: ../../docstring
#: aiogram.methods.get_user_profile_photos.GetUserProfilePhotos.limit:1 of
msgid ""
"Limits the number of photos to be retrieved. Values between 1-100 are "
"accepted. Defaults to 100."
msgstr ""
#: ../../api/methods/get_user_profile_photos.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_user_profile_photos.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_user_profile_photos.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_user_profile_photos.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_user_profile_photos.rst:29
msgid ""
":code:`from aiogram.methods.get_user_profile_photos import "
"GetUserProfilePhotos`"
msgstr ""
#: ../../api/methods/get_user_profile_photos.rst:30
msgid "alias: :code:`from aiogram.methods import GetUserProfilePhotos`"
msgstr ""
#: ../../api/methods/get_user_profile_photos.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -0,0 +1,67 @@
# 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-10-01 22:51+0300\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/methods/get_webhook_info.rst:3
msgid "getWebhookInfo"
msgstr ""
#: ../../api/methods/get_webhook_info.rst:5
msgid "Returns: :obj:`WebhookInfo`"
msgstr ""
#: aiogram.methods.get_webhook_info.GetWebhookInfo:1 of
msgid ""
"Use this method to get current webhook status. Requires no parameters. On"
" success, returns a :class:`aiogram.types.webhook_info.WebhookInfo` "
"object. If the bot is using "
":class:`aiogram.methods.get_updates.GetUpdates`, will return an object "
"with the *url* field empty."
msgstr ""
#: aiogram.methods.get_webhook_info.GetWebhookInfo:3 of
msgid "Source: https://core.telegram.org/bots/api#getwebhookinfo"
msgstr ""
#: ../../api/methods/get_webhook_info.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_webhook_info.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_webhook_info.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_webhook_info.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_webhook_info.rst:29
msgid ":code:`from aiogram.methods.get_webhook_info import GetWebhookInfo`"
msgstr ""
#: ../../api/methods/get_webhook_info.rst:30
msgid "alias: :code:`from aiogram.methods import GetWebhookInfo`"
msgstr ""
#: ../../api/methods/get_webhook_info.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -0,0 +1,58 @@
# 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-10-01 22:51+0300\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/methods/index.rst:3
msgid "Methods"
msgstr ""
#: ../../api/methods/index.rst:5
msgid "Here is list of all available API methods:"
msgstr ""
#: ../../api/methods/index.rst:10
msgid "Getting updates"
msgstr ""
#: ../../api/methods/index.rst:22
msgid "Available methods"
msgstr ""
#: ../../api/methods/index.rst:91
msgid "Updating messages"
msgstr ""
#: ../../api/methods/index.rst:104
msgid "Stickers"
msgstr ""
#: ../../api/methods/index.rst:120
msgid "Inline mode"
msgstr ""
#: ../../api/methods/index.rst:129
msgid "Payments"
msgstr ""
#: ../../api/methods/index.rst:140
msgid "Telegram Passport"
msgstr ""
#: ../../api/methods/index.rst:148
msgid "Games"
msgstr ""

View file

@ -0,0 +1,100 @@
# 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-10-01 22:51+0300\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/methods/kick_chat_member.rst:3
msgid "kickChatMember"
msgstr ""
#: ../../api/methods/kick_chat_member.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.kick_chat_member.KickChatMember:5 of
msgid ""
"Use this method to ban a user in a group, a supergroup or a channel. In "
"the case of supergroups and channels, the user will not be able to return"
" to the chat on their own using invite links, etc., unless `unbanned "
"<https://core.telegram.org/bots/api#unbanchatmember>`_ first. The bot "
"must be an administrator in the chat for this to work and must have the "
"appropriate administrator rights. Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.kick_chat_member.KickChatMember:7 of
msgid "Source: https://core.telegram.org/bots/api#banchatmember"
msgstr ""
#: ../../docstring aiogram.methods.kick_chat_member.KickChatMember.chat_id:1 of
msgid ""
"Unique identifier for the target group or username of the target "
"supergroup or channel (in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.kick_chat_member.KickChatMember.user_id:1 of
msgid "Unique identifier of the target user"
msgstr ""
#: ../../docstring aiogram.methods.kick_chat_member.KickChatMember.until_date:1
#: of
msgid ""
"Date when the user will be unbanned, unix time. If user is banned for "
"more than 366 days or less than 30 seconds from the current time they are"
" considered to be banned forever. Applied for supergroups and channels "
"only."
msgstr ""
#: ../../docstring
#: aiogram.methods.kick_chat_member.KickChatMember.revoke_messages:1 of
msgid ""
"Pass :code:`True` to delete all messages from the chat for the user that "
"is being removed. If :code:`False`, the user will be able to see messages"
" in the group that were sent before the user was removed. Always "
":code:`True` for supergroups and channels."
msgstr ""
#: ../../api/methods/kick_chat_member.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/kick_chat_member.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/kick_chat_member.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/kick_chat_member.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/kick_chat_member.rst:29
msgid ":code:`from aiogram.methods.kick_chat_member import KickChatMember`"
msgstr ""
#: ../../api/methods/kick_chat_member.rst:30
msgid "alias: :code:`from aiogram.methods import KickChatMember`"
msgstr ""
#: ../../api/methods/kick_chat_member.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/kick_chat_member.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,74 @@
# 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-10-01 22:51+0300\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/methods/leave_chat.rst:3
msgid "leaveChat"
msgstr ""
#: ../../api/methods/leave_chat.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.leave_chat.LeaveChat:1 of
msgid ""
"Use this method for your bot to leave a group, supergroup or channel. "
"Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.leave_chat.LeaveChat:3 of
msgid "Source: https://core.telegram.org/bots/api#leavechat"
msgstr ""
#: ../../docstring aiogram.methods.leave_chat.LeaveChat.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target "
"supergroup or channel (in the format :code:`@channelusername`)"
msgstr ""
#: ../../api/methods/leave_chat.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/leave_chat.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/leave_chat.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/leave_chat.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/leave_chat.rst:29
msgid ":code:`from aiogram.methods.leave_chat import LeaveChat`"
msgstr ""
#: ../../api/methods/leave_chat.rst:30
msgid "alias: :code:`from aiogram.methods import LeaveChat`"
msgstr ""
#: ../../api/methods/leave_chat.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/leave_chat.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,72 @@
# 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-10-01 22:51+0300\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/methods/log_out.rst:3
msgid "logOut"
msgstr ""
#: ../../api/methods/log_out.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.log_out.LogOut:1 of
msgid ""
"Use this method to log out from the cloud Bot API server before launching"
" the bot locally. You **must** log out the bot before running it locally,"
" otherwise there is no guarantee that the bot will receive updates. After"
" a successful call, you can immediately log in on a local server, but "
"will not be able to log in back to the cloud Bot API server for 10 "
"minutes. Returns :code:`True` on success. Requires no parameters."
msgstr ""
#: aiogram.methods.log_out.LogOut:3 of
msgid "Source: https://core.telegram.org/bots/api#logout"
msgstr ""
#: ../../api/methods/log_out.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/log_out.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/log_out.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/log_out.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/log_out.rst:29
msgid ":code:`from aiogram.methods.log_out import LogOut`"
msgstr ""
#: ../../api/methods/log_out.rst:30
msgid "alias: :code:`from aiogram.methods import LogOut`"
msgstr ""
#: ../../api/methods/log_out.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/log_out.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,90 @@
# 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-10-01 22:51+0300\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/methods/pin_chat_message.rst:3
msgid "pinChatMessage"
msgstr ""
#: ../../api/methods/pin_chat_message.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.pin_chat_message.PinChatMessage:1 of
msgid ""
"Use this method to add a message to the list of pinned messages in a "
"chat. If the chat is not a private chat, the bot must be an administrator"
" in the chat for this to work and must have the 'can_pin_messages' "
"administrator right in a supergroup or 'can_edit_messages' administrator "
"right in a channel. Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.pin_chat_message.PinChatMessage:3 of
msgid "Source: https://core.telegram.org/bots/api#pinchatmessage"
msgstr ""
#: ../../docstring aiogram.methods.pin_chat_message.PinChatMessage.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.pin_chat_message.PinChatMessage.message_id:1
#: of
msgid "Identifier of a message to pin"
msgstr ""
#: ../../docstring
#: aiogram.methods.pin_chat_message.PinChatMessage.disable_notification:1 of
msgid ""
"Pass :code:`True` if it is not necessary to send a notification to all "
"chat members about the new pinned message. Notifications are always "
"disabled in channels and private chats."
msgstr ""
#: ../../api/methods/pin_chat_message.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/pin_chat_message.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/pin_chat_message.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/pin_chat_message.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/pin_chat_message.rst:29
msgid ":code:`from aiogram.methods.pin_chat_message import PinChatMessage`"
msgstr ""
#: ../../api/methods/pin_chat_message.rst:30
msgid "alias: :code:`from aiogram.methods import PinChatMessage`"
msgstr ""
#: ../../api/methods/pin_chat_message.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/pin_chat_message.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,157 @@
# 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-10-01 22:51+0300\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/methods/promote_chat_member.rst:3
msgid "promoteChatMember"
msgstr ""
#: ../../api/methods/promote_chat_member.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.promote_chat_member.PromoteChatMember:1 of
msgid ""
"Use this method to promote or demote a user in a supergroup or a channel."
" The bot must be an administrator in the chat for this to work and must "
"have the appropriate administrator rights. Pass :code:`False` for all "
"boolean parameters to demote a user. Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.promote_chat_member.PromoteChatMember:3 of
msgid "Source: https://core.telegram.org/bots/api#promotechatmember"
msgstr ""
#: ../../docstring
#: aiogram.methods.promote_chat_member.PromoteChatMember.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring
#: aiogram.methods.promote_chat_member.PromoteChatMember.user_id:1 of
msgid "Unique identifier of the target user"
msgstr ""
#: ../../docstring
#: aiogram.methods.promote_chat_member.PromoteChatMember.is_anonymous:1 of
msgid "Pass :code:`True` if the administrator's presence in the chat is hidden"
msgstr ""
#: ../../docstring
#: aiogram.methods.promote_chat_member.PromoteChatMember.can_manage_chat:1 of
msgid ""
"Pass :code:`True` if the administrator can access the chat event log, "
"chat statistics, message statistics in channels, see channel members, see"
" anonymous administrators in supergroups and ignore slow mode. Implied by"
" any other administrator privilege"
msgstr ""
#: ../../docstring
#: aiogram.methods.promote_chat_member.PromoteChatMember.can_post_messages:1 of
msgid ""
"Pass :code:`True` if the administrator can create channel posts, channels"
" only"
msgstr ""
#: ../../docstring
#: aiogram.methods.promote_chat_member.PromoteChatMember.can_edit_messages:1 of
msgid ""
"Pass :code:`True` if the administrator can edit messages of other users "
"and can pin messages, channels only"
msgstr ""
#: ../../docstring
#: aiogram.methods.promote_chat_member.PromoteChatMember.can_delete_messages:1
#: of
msgid "Pass :code:`True` if the administrator can delete messages of other users"
msgstr ""
#: ../../docstring
#: aiogram.methods.promote_chat_member.PromoteChatMember.can_manage_video_chats:1
#: of
msgid "Pass :code:`True` if the administrator can manage video chats"
msgstr ""
#: ../../docstring
#: aiogram.methods.promote_chat_member.PromoteChatMember.can_restrict_members:1
#: of
msgid ""
"Pass :code:`True` if the administrator can restrict, ban or unban chat "
"members"
msgstr ""
#: ../../docstring
#: aiogram.methods.promote_chat_member.PromoteChatMember.can_promote_members:1
#: of
msgid ""
"Pass :code:`True` if the administrator can add new administrators with a "
"subset of their own privileges or demote administrators that he has "
"promoted, directly or indirectly (promoted by administrators that were "
"appointed by him)"
msgstr ""
#: ../../docstring
#: aiogram.methods.promote_chat_member.PromoteChatMember.can_change_info:1 of
msgid ""
"Pass :code:`True` if the administrator can change chat title, photo and "
"other settings"
msgstr ""
#: ../../docstring
#: aiogram.methods.promote_chat_member.PromoteChatMember.can_invite_users:1 of
msgid "Pass :code:`True` if the administrator can invite new users to the chat"
msgstr ""
#: ../../docstring
#: aiogram.methods.promote_chat_member.PromoteChatMember.can_pin_messages:1 of
msgid "Pass :code:`True` if the administrator can pin messages, supergroups only"
msgstr ""
#: ../../api/methods/promote_chat_member.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/promote_chat_member.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/promote_chat_member.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/promote_chat_member.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/promote_chat_member.rst:29
msgid ":code:`from aiogram.methods.promote_chat_member import PromoteChatMember`"
msgstr ""
#: ../../api/methods/promote_chat_member.rst:30
msgid "alias: :code:`from aiogram.methods import PromoteChatMember`"
msgstr ""
#: ../../api/methods/promote_chat_member.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/promote_chat_member.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,97 @@
# 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-10-01 22:51+0300\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/methods/restrict_chat_member.rst:3
msgid "restrictChatMember"
msgstr ""
#: ../../api/methods/restrict_chat_member.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.restrict_chat_member.RestrictChatMember:1 of
msgid ""
"Use this method to restrict a user in a supergroup. The bot must be an "
"administrator in the supergroup for this to work and must have the "
"appropriate administrator rights. Pass :code:`True` for all permissions "
"to lift restrictions from a user. Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.restrict_chat_member.RestrictChatMember:3 of
msgid "Source: https://core.telegram.org/bots/api#restrictchatmember"
msgstr ""
#: ../../docstring
#: aiogram.methods.restrict_chat_member.RestrictChatMember.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target "
"supergroup (in the format :code:`@supergroupusername`)"
msgstr ""
#: ../../docstring
#: aiogram.methods.restrict_chat_member.RestrictChatMember.user_id:1 of
msgid "Unique identifier of the target user"
msgstr ""
#: ../../docstring
#: aiogram.methods.restrict_chat_member.RestrictChatMember.permissions:1 of
msgid "A JSON-serialized object for new user permissions"
msgstr ""
#: ../../docstring
#: aiogram.methods.restrict_chat_member.RestrictChatMember.until_date:1 of
msgid ""
"Date when restrictions will be lifted for the user, unix time. If user is"
" restricted for more than 366 days or less than 30 seconds from the "
"current time, they are considered to be restricted forever"
msgstr ""
#: ../../api/methods/restrict_chat_member.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/restrict_chat_member.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/restrict_chat_member.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/restrict_chat_member.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/restrict_chat_member.rst:29
msgid ""
":code:`from aiogram.methods.restrict_chat_member import "
"RestrictChatMember`"
msgstr ""
#: ../../api/methods/restrict_chat_member.rst:30
msgid "alias: :code:`from aiogram.methods import RestrictChatMember`"
msgstr ""
#: ../../api/methods/restrict_chat_member.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/restrict_chat_member.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,86 @@
# 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-10-01 22:51+0300\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/methods/revoke_chat_invite_link.rst:3
msgid "revokeChatInviteLink"
msgstr ""
#: ../../api/methods/revoke_chat_invite_link.rst:5
msgid "Returns: :obj:`ChatInviteLink`"
msgstr ""
#: aiogram.methods.revoke_chat_invite_link.RevokeChatInviteLink:1 of
msgid ""
"Use this method to revoke an invite link created by the bot. If the "
"primary link is revoked, a new link is automatically generated. The bot "
"must be an administrator in the chat for this to work and must have the "
"appropriate administrator rights. Returns the revoked invite link as "
":class:`aiogram.types.chat_invite_link.ChatInviteLink` object."
msgstr ""
#: aiogram.methods.revoke_chat_invite_link.RevokeChatInviteLink:3 of
msgid "Source: https://core.telegram.org/bots/api#revokechatinvitelink"
msgstr ""
#: ../../docstring
#: aiogram.methods.revoke_chat_invite_link.RevokeChatInviteLink.chat_id:1 of
msgid ""
"Unique identifier of the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring
#: aiogram.methods.revoke_chat_invite_link.RevokeChatInviteLink.invite_link:1
#: of
msgid "The invite link to revoke"
msgstr ""
#: ../../api/methods/revoke_chat_invite_link.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/revoke_chat_invite_link.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/revoke_chat_invite_link.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/revoke_chat_invite_link.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/revoke_chat_invite_link.rst:29
msgid ""
":code:`from aiogram.methods.revoke_chat_invite_link import "
"RevokeChatInviteLink`"
msgstr ""
#: ../../api/methods/revoke_chat_invite_link.rst:30
msgid "alias: :code:`from aiogram.methods import RevokeChatInviteLink`"
msgstr ""
#: ../../api/methods/revoke_chat_invite_link.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/revoke_chat_invite_link.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,165 @@
# 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-10-01 22:51+0300\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/methods/send_animation.rst:3
msgid "sendAnimation"
msgstr ""
#: ../../api/methods/send_animation.rst:5
msgid "Returns: :obj:`Message`"
msgstr ""
#: aiogram.methods.send_animation.SendAnimation:1 of
msgid ""
"Use this method to send animation files (GIF or H.264/MPEG-4 AVC video "
"without sound). On success, the sent "
":class:`aiogram.types.message.Message` is returned. Bots can currently "
"send animation files of up to 50 MB in size, this limit may be changed in"
" the future."
msgstr ""
#: aiogram.methods.send_animation.SendAnimation:3 of
msgid "Source: https://core.telegram.org/bots/api#sendanimation"
msgstr ""
#: ../../docstring aiogram.methods.send_animation.SendAnimation.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.send_animation.SendAnimation.animation:1 of
msgid ""
"Animation to send. Pass a file_id as String to send an animation that "
"exists on the Telegram servers (recommended), pass an HTTP URL as a "
"String for Telegram to get an animation from the Internet, or upload a "
"new animation using multipart/form-data. :ref:`More information on "
"Sending Files » <sending-files>`"
msgstr ""
#: ../../docstring aiogram.methods.send_animation.SendAnimation.duration:1 of
msgid "Duration of sent animation in seconds"
msgstr ""
#: ../../docstring aiogram.methods.send_animation.SendAnimation.width:1 of
msgid "Animation width"
msgstr ""
#: ../../docstring aiogram.methods.send_animation.SendAnimation.height:1 of
msgid "Animation height"
msgstr ""
#: ../../docstring aiogram.methods.send_animation.SendAnimation.thumb:1 of
msgid ""
"Thumbnail of the file sent; can be ignored if thumbnail generation for "
"the file is supported server-side. The thumbnail should be in JPEG format"
" and less than 200 kB in size. A thumbnail's width and height should not "
"exceed 320. Ignored if the file is not uploaded using multipart/form-"
"data. Thumbnails can't be reused and can be only uploaded as a new file, "
"so you can pass 'attach://<file_attach_name>' if the thumbnail was "
"uploaded using multipart/form-data under <file_attach_name>. :ref:`More "
"information on Sending Files » <sending-files>`"
msgstr ""
#: ../../docstring aiogram.methods.send_animation.SendAnimation.caption:1 of
msgid ""
"Animation caption (may also be used when resending animation by "
"*file_id*), 0-1024 characters after entities parsing"
msgstr ""
#: ../../docstring aiogram.methods.send_animation.SendAnimation.parse_mode:1 of
msgid ""
"Mode for parsing entities in the animation caption. See `formatting "
"options <https://core.telegram.org/bots/api#formatting-options>`_ for "
"more details."
msgstr ""
#: ../../docstring
#: aiogram.methods.send_animation.SendAnimation.caption_entities:1 of
msgid ""
"A JSON-serialized list of special entities that appear in the caption, "
"which can be specified instead of *parse_mode*"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_animation.SendAnimation.disable_notification:1 of
msgid ""
"Sends the message `silently <https://telegram.org/blog/channels-2-0"
"#silent-messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring
#: aiogram.methods.send_animation.SendAnimation.protect_content:1 of
msgid "Protects the contents of the sent message from forwarding and saving"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_animation.SendAnimation.reply_to_message_id:1 of
msgid "If the message is a reply, ID of the original message"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_animation.SendAnimation.allow_sending_without_reply:1
#: of
msgid ""
"Pass :code:`True` if the message should be sent even if the specified "
"replied-to message is not found"
msgstr ""
#: ../../docstring aiogram.methods.send_animation.SendAnimation.reply_markup:1
#: of
msgid ""
"Additional interface options. A JSON-serialized object for an `inline "
"keyboard <https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_, `custom reply keyboard "
"<https://core.telegram.org/bots#keyboards>`_, instructions to remove "
"reply keyboard or to force a reply from the user."
msgstr ""
#: ../../api/methods/send_animation.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/send_animation.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/send_animation.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/send_animation.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/send_animation.rst:29
msgid ":code:`from aiogram.methods.send_animation import SendAnimation`"
msgstr ""
#: ../../api/methods/send_animation.rst:30
msgid "alias: :code:`from aiogram.methods import SendAnimation`"
msgstr ""
#: ../../api/methods/send_animation.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/send_animation.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,160 @@
# 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-10-01 22:51+0300\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/methods/send_audio.rst:3
msgid "sendAudio"
msgstr ""
#: ../../api/methods/send_audio.rst:5
msgid "Returns: :obj:`Message`"
msgstr ""
#: aiogram.methods.send_audio.SendAudio:1 of
msgid ""
"Use this method to send audio files, if you want Telegram clients to "
"display them in the music player. Your audio must be in the .MP3 or .M4A "
"format. On success, the sent :class:`aiogram.types.message.Message` is "
"returned. Bots can currently send audio files of up to 50 MB in size, "
"this limit may be changed in the future. For sending voice messages, use "
"the :class:`aiogram.methods.send_voice.SendVoice` method instead."
msgstr ""
#: aiogram.methods.send_audio.SendAudio:4 of
msgid "Source: https://core.telegram.org/bots/api#sendaudio"
msgstr ""
#: ../../docstring aiogram.methods.send_audio.SendAudio.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.send_audio.SendAudio.audio:1 of
msgid ""
"Audio file to send. Pass a file_id as String to send an audio file that "
"exists on the Telegram servers (recommended), pass an HTTP URL as a "
"String for Telegram to get an audio file from the Internet, or upload a "
"new one using multipart/form-data. :ref:`More information on Sending "
"Files » <sending-files>`"
msgstr ""
#: ../../docstring aiogram.methods.send_audio.SendAudio.caption:1 of
msgid "Audio caption, 0-1024 characters after entities parsing"
msgstr ""
#: ../../docstring aiogram.methods.send_audio.SendAudio.parse_mode:1 of
msgid ""
"Mode for parsing entities in the audio caption. See `formatting options "
"<https://core.telegram.org/bots/api#formatting-options>`_ for more "
"details."
msgstr ""
#: ../../docstring aiogram.methods.send_audio.SendAudio.caption_entities:1 of
msgid ""
"A JSON-serialized list of special entities that appear in the caption, "
"which can be specified instead of *parse_mode*"
msgstr ""
#: ../../docstring aiogram.methods.send_audio.SendAudio.duration:1 of
msgid "Duration of the audio in seconds"
msgstr ""
#: ../../docstring aiogram.methods.send_audio.SendAudio.performer:1 of
msgid "Performer"
msgstr ""
#: ../../docstring aiogram.methods.send_audio.SendAudio.title:1 of
msgid "Track name"
msgstr ""
#: ../../docstring aiogram.methods.send_audio.SendAudio.thumb:1 of
msgid ""
"Thumbnail of the file sent; can be ignored if thumbnail generation for "
"the file is supported server-side. The thumbnail should be in JPEG format"
" and less than 200 kB in size. A thumbnail's width and height should not "
"exceed 320. Ignored if the file is not uploaded using multipart/form-"
"data. Thumbnails can't be reused and can be only uploaded as a new file, "
"so you can pass 'attach://<file_attach_name>' if the thumbnail was "
"uploaded using multipart/form-data under <file_attach_name>. :ref:`More "
"information on Sending Files » <sending-files>`"
msgstr ""
#: ../../docstring aiogram.methods.send_audio.SendAudio.disable_notification:1
#: of
msgid ""
"Sends the message `silently <https://telegram.org/blog/channels-2-0"
"#silent-messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring aiogram.methods.send_audio.SendAudio.protect_content:1 of
msgid "Protects the contents of the sent message from forwarding and saving"
msgstr ""
#: ../../docstring aiogram.methods.send_audio.SendAudio.reply_to_message_id:1
#: of
msgid "If the message is a reply, ID of the original message"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_audio.SendAudio.allow_sending_without_reply:1 of
msgid ""
"Pass :code:`True` if the message should be sent even if the specified "
"replied-to message is not found"
msgstr ""
#: ../../docstring aiogram.methods.send_audio.SendAudio.reply_markup:1 of
msgid ""
"Additional interface options. A JSON-serialized object for an `inline "
"keyboard <https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_, `custom reply keyboard "
"<https://core.telegram.org/bots#keyboards>`_, instructions to remove "
"reply keyboard or to force a reply from the user."
msgstr ""
#: ../../api/methods/send_audio.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/send_audio.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/send_audio.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/send_audio.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/send_audio.rst:29
msgid ":code:`from aiogram.methods.send_audio import SendAudio`"
msgstr ""
#: ../../api/methods/send_audio.rst:30
msgid "alias: :code:`from aiogram.methods import SendAudio`"
msgstr ""
#: ../../api/methods/send_audio.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/send_audio.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,109 @@
# 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-10-01 22:51+0300\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/methods/send_chat_action.rst:3
msgid "sendChatAction"
msgstr ""
#: ../../api/methods/send_chat_action.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.send_chat_action.SendChatAction:1 of
msgid ""
"Use this method when you need to tell the user that something is "
"happening on the bot's side. The status is set for 5 seconds or less "
"(when a message arrives from your bot, Telegram clients clear its typing "
"status). Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.send_chat_action.SendChatAction:3 of
msgid ""
"Example: The `ImageBot <https://t.me/imagebot>`_ needs some time to "
"process a request and upload the image. Instead of sending a text message"
" along the lines of 'Retrieving image, please wait…', the bot may use "
":class:`aiogram.methods.send_chat_action.SendChatAction` with *action* = "
"*upload_photo*. The user will see a 'sending photo' status for the bot."
msgstr ""
#: aiogram.methods.send_chat_action.SendChatAction:5 of
msgid ""
"We only recommend using this method when a response from the bot will "
"take a **noticeable** amount of time to arrive."
msgstr ""
#: aiogram.methods.send_chat_action.SendChatAction:7 of
msgid "Source: https://core.telegram.org/bots/api#sendchataction"
msgstr ""
#: ../../docstring aiogram.methods.send_chat_action.SendChatAction.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.send_chat_action.SendChatAction.action:1 of
msgid ""
"Type of action to broadcast. Choose one, depending on what the user is "
"about to receive: *typing* for `text messages "
"<https://core.telegram.org/bots/api#sendmessage>`_, *upload_photo* for "
"`photos <https://core.telegram.org/bots/api#sendphoto>`_, *record_video* "
"or *upload_video* for `videos "
"<https://core.telegram.org/bots/api#sendvideo>`_, *record_voice* or "
"*upload_voice* for `voice notes "
"<https://core.telegram.org/bots/api#sendvoice>`_, *upload_document* for "
"`general files <https://core.telegram.org/bots/api#senddocument>`_, "
"*choose_sticker* for `stickers "
"<https://core.telegram.org/bots/api#sendsticker>`_, *find_location* for "
"`location data <https://core.telegram.org/bots/api#sendlocation>`_, "
"*record_video_note* or *upload_video_note* for `video notes "
"<https://core.telegram.org/bots/api#sendvideonote>`_."
msgstr ""
#: ../../api/methods/send_chat_action.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/send_chat_action.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/send_chat_action.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/send_chat_action.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/send_chat_action.rst:29
msgid ":code:`from aiogram.methods.send_chat_action import SendChatAction`"
msgstr ""
#: ../../api/methods/send_chat_action.rst:30
msgid "alias: :code:`from aiogram.methods import SendChatAction`"
msgstr ""
#: ../../api/methods/send_chat_action.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/send_chat_action.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,125 @@
# 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-10-01 22:51+0300\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/methods/send_contact.rst:3
msgid "sendContact"
msgstr ""
#: ../../api/methods/send_contact.rst:5
msgid "Returns: :obj:`Message`"
msgstr ""
#: aiogram.methods.send_contact.SendContact:1 of
msgid ""
"Use this method to send phone contacts. On success, the sent "
":class:`aiogram.types.message.Message` is returned."
msgstr ""
#: aiogram.methods.send_contact.SendContact:3 of
msgid "Source: https://core.telegram.org/bots/api#sendcontact"
msgstr ""
#: ../../docstring aiogram.methods.send_contact.SendContact.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.send_contact.SendContact.phone_number:1 of
msgid "Contact's phone number"
msgstr ""
#: ../../docstring aiogram.methods.send_contact.SendContact.first_name:1 of
msgid "Contact's first name"
msgstr ""
#: ../../docstring aiogram.methods.send_contact.SendContact.last_name:1 of
msgid "Contact's last name"
msgstr ""
#: ../../docstring aiogram.methods.send_contact.SendContact.vcard:1 of
msgid ""
"Additional data about the contact in the form of a `vCard "
"<https://en.wikipedia.org/wiki/VCard>`_, 0-2048 bytes"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_contact.SendContact.disable_notification:1 of
msgid ""
"Sends the message `silently <https://telegram.org/blog/channels-2-0"
"#silent-messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring aiogram.methods.send_contact.SendContact.protect_content:1
#: of
msgid "Protects the contents of the sent message from forwarding and saving"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_contact.SendContact.reply_to_message_id:1 of
msgid "If the message is a reply, ID of the original message"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_contact.SendContact.allow_sending_without_reply:1 of
msgid ""
"Pass :code:`True` if the message should be sent even if the specified "
"replied-to message is not found"
msgstr ""
#: ../../docstring aiogram.methods.send_contact.SendContact.reply_markup:1 of
msgid ""
"Additional interface options. A JSON-serialized object for an `inline "
"keyboard <https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_, `custom reply keyboard "
"<https://core.telegram.org/bots#keyboards>`_, instructions to remove "
"keyboard or to force a reply from the user."
msgstr ""
#: ../../api/methods/send_contact.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/send_contact.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/send_contact.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/send_contact.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/send_contact.rst:29
msgid ":code:`from aiogram.methods.send_contact import SendContact`"
msgstr ""
#: ../../api/methods/send_contact.rst:30
msgid "alias: :code:`from aiogram.methods import SendContact`"
msgstr ""
#: ../../api/methods/send_contact.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/send_contact.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,113 @@
# 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-10-01 22:51+0300\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/methods/send_dice.rst:3
msgid "sendDice"
msgstr ""
#: ../../api/methods/send_dice.rst:5
msgid "Returns: :obj:`Message`"
msgstr ""
#: aiogram.methods.send_dice.SendDice:1 of
msgid ""
"Use this method to send an animated emoji that will display a random "
"value. On success, the sent :class:`aiogram.types.message.Message` is "
"returned."
msgstr ""
#: aiogram.methods.send_dice.SendDice:3 of
msgid "Source: https://core.telegram.org/bots/api#senddice"
msgstr ""
#: ../../docstring aiogram.methods.send_dice.SendDice.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.send_dice.SendDice.emoji:1 of
msgid ""
"Emoji on which the dice throw animation is based. Currently, must be one "
"of '🎲', '🎯', '🏀', '⚽', '🎳', or '🎰'. Dice can have values 1-6 for '🎲', '🎯'"
" and '🎳', values 1-5 for '🏀' and '⚽', and values 1-64 for '🎰'. Defaults "
"to '🎲'"
msgstr ""
#: ../../docstring aiogram.methods.send_dice.SendDice.disable_notification:1 of
msgid ""
"Sends the message `silently <https://telegram.org/blog/channels-2-0"
"#silent-messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring aiogram.methods.send_dice.SendDice.protect_content:1 of
msgid "Protects the contents of the sent message from forwarding"
msgstr ""
#: ../../docstring aiogram.methods.send_dice.SendDice.reply_to_message_id:1 of
msgid "If the message is a reply, ID of the original message"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_dice.SendDice.allow_sending_without_reply:1 of
msgid ""
"Pass :code:`True` if the message should be sent even if the specified "
"replied-to message is not found"
msgstr ""
#: ../../docstring aiogram.methods.send_dice.SendDice.reply_markup:1 of
msgid ""
"Additional interface options. A JSON-serialized object for an `inline "
"keyboard <https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_, `custom reply keyboard "
"<https://core.telegram.org/bots#keyboards>`_, instructions to remove "
"reply keyboard or to force a reply from the user."
msgstr ""
#: ../../api/methods/send_dice.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/send_dice.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/send_dice.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/send_dice.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/send_dice.rst:29
msgid ":code:`from aiogram.methods.send_dice import SendDice`"
msgstr ""
#: ../../api/methods/send_dice.rst:30
msgid "alias: :code:`from aiogram.methods import SendDice`"
msgstr ""
#: ../../api/methods/send_dice.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/send_dice.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,157 @@
# 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-10-01 22:51+0300\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/methods/send_document.rst:3
msgid "sendDocument"
msgstr ""
#: ../../api/methods/send_document.rst:5
msgid "Returns: :obj:`Message`"
msgstr ""
#: aiogram.methods.send_document.SendDocument:1 of
msgid ""
"Use this method to send general files. On success, the sent "
":class:`aiogram.types.message.Message` is returned. Bots can currently "
"send files of any type of up to 50 MB in size, this limit may be changed "
"in the future."
msgstr ""
#: aiogram.methods.send_document.SendDocument:3 of
msgid "Source: https://core.telegram.org/bots/api#senddocument"
msgstr ""
#: ../../docstring aiogram.methods.send_document.SendDocument.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.send_document.SendDocument.document:1 of
msgid ""
"File to send. Pass a file_id as String to send a file that exists on the "
"Telegram servers (recommended), pass an HTTP URL as a String for Telegram"
" to get a file from the Internet, or upload a new one using multipart"
"/form-data. :ref:`More information on Sending Files » <sending-files>`"
msgstr ""
#: ../../docstring aiogram.methods.send_document.SendDocument.thumb:1 of
msgid ""
"Thumbnail of the file sent; can be ignored if thumbnail generation for "
"the file is supported server-side. The thumbnail should be in JPEG format"
" and less than 200 kB in size. A thumbnail's width and height should not "
"exceed 320. Ignored if the file is not uploaded using multipart/form-"
"data. Thumbnails can't be reused and can be only uploaded as a new file, "
"so you can pass 'attach://<file_attach_name>' if the thumbnail was "
"uploaded using multipart/form-data under <file_attach_name>. :ref:`More "
"information on Sending Files » <sending-files>`"
msgstr ""
#: ../../docstring aiogram.methods.send_document.SendDocument.caption:1 of
msgid ""
"Document caption (may also be used when resending documents by "
"*file_id*), 0-1024 characters after entities parsing"
msgstr ""
#: ../../docstring aiogram.methods.send_document.SendDocument.parse_mode:1 of
msgid ""
"Mode for parsing entities in the document caption. See `formatting "
"options <https://core.telegram.org/bots/api#formatting-options>`_ for "
"more details."
msgstr ""
#: ../../docstring
#: aiogram.methods.send_document.SendDocument.caption_entities:1 of
msgid ""
"A JSON-serialized list of special entities that appear in the caption, "
"which can be specified instead of *parse_mode*"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_document.SendDocument.disable_content_type_detection:1
#: of
msgid ""
"Disables automatic server-side content type detection for files uploaded "
"using multipart/form-data"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_document.SendDocument.disable_notification:1 of
msgid ""
"Sends the message `silently <https://telegram.org/blog/channels-2-0"
"#silent-messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring aiogram.methods.send_document.SendDocument.protect_content:1
#: of
msgid "Protects the contents of the sent message from forwarding and saving"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_document.SendDocument.reply_to_message_id:1 of
msgid "If the message is a reply, ID of the original message"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_document.SendDocument.allow_sending_without_reply:1 of
msgid ""
"Pass :code:`True` if the message should be sent even if the specified "
"replied-to message is not found"
msgstr ""
#: ../../docstring aiogram.methods.send_document.SendDocument.reply_markup:1 of
msgid ""
"Additional interface options. A JSON-serialized object for an `inline "
"keyboard <https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_, `custom reply keyboard "
"<https://core.telegram.org/bots#keyboards>`_, instructions to remove "
"reply keyboard or to force a reply from the user."
msgstr ""
#: ../../api/methods/send_document.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/send_document.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/send_document.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/send_document.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/send_document.rst:29
msgid ":code:`from aiogram.methods.send_document import SendDocument`"
msgstr ""
#: ../../api/methods/send_document.rst:30
msgid "alias: :code:`from aiogram.methods import SendDocument`"
msgstr ""
#: ../../api/methods/send_document.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/send_document.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,107 @@
# 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-10-01 22:51+0300\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/methods/send_game.rst:3
msgid "sendGame"
msgstr ""
#: ../../api/methods/send_game.rst:5
msgid "Returns: :obj:`Message`"
msgstr ""
#: aiogram.methods.send_game.SendGame:1 of
msgid ""
"Use this method to send a game. On success, the sent "
":class:`aiogram.types.message.Message` is returned."
msgstr ""
#: aiogram.methods.send_game.SendGame:3 of
msgid "Source: https://core.telegram.org/bots/api#sendgame"
msgstr ""
#: ../../docstring aiogram.methods.send_game.SendGame.chat_id:1 of
msgid "Unique identifier for the target chat"
msgstr ""
#: ../../docstring aiogram.methods.send_game.SendGame.game_short_name:1 of
msgid ""
"Short name of the game, serves as the unique identifier for the game. Set"
" up your games via `@BotFather <https://t.me/botfather>`_."
msgstr ""
#: ../../docstring aiogram.methods.send_game.SendGame.disable_notification:1 of
msgid ""
"Sends the message `silently <https://telegram.org/blog/channels-2-0"
"#silent-messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring aiogram.methods.send_game.SendGame.protect_content:1 of
msgid "Protects the contents of the sent message from forwarding and saving"
msgstr ""
#: ../../docstring aiogram.methods.send_game.SendGame.reply_to_message_id:1 of
msgid "If the message is a reply, ID of the original message"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_game.SendGame.allow_sending_without_reply:1 of
msgid ""
"Pass :code:`True` if the message should be sent even if the specified "
"replied-to message is not found"
msgstr ""
#: ../../docstring aiogram.methods.send_game.SendGame.reply_markup:1 of
msgid ""
"A JSON-serialized object for an `inline keyboard "
"<https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_. If empty, one 'Play game_title' button will be shown. If not"
" empty, the first button must launch the game."
msgstr ""
#: ../../api/methods/send_game.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/send_game.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/send_game.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/send_game.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/send_game.rst:29
msgid ":code:`from aiogram.methods.send_game import SendGame`"
msgstr ""
#: ../../api/methods/send_game.rst:30
msgid "alias: :code:`from aiogram.methods import SendGame`"
msgstr ""
#: ../../api/methods/send_game.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/send_game.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,236 @@
# 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-10-01 22:51+0300\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/methods/send_invoice.rst:3
msgid "sendInvoice"
msgstr ""
#: ../../api/methods/send_invoice.rst:5
msgid "Returns: :obj:`Message`"
msgstr ""
#: aiogram.methods.send_invoice.SendInvoice:1 of
msgid ""
"Use this method to send invoices. On success, the sent "
":class:`aiogram.types.message.Message` is returned."
msgstr ""
#: aiogram.methods.send_invoice.SendInvoice:3 of
msgid "Source: https://core.telegram.org/bots/api#sendinvoice"
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.title:1 of
msgid "Product name, 1-32 characters"
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.description:1 of
msgid "Product description, 1-255 characters"
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.payload:1 of
msgid ""
"Bot-defined invoice payload, 1-128 bytes. This will not be displayed to "
"the user, use for your internal processes."
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.provider_token:1 of
msgid ""
"Payment provider token, obtained via `@BotFather "
"<https://t.me/botfather>`_"
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.currency:1 of
msgid ""
"Three-letter ISO 4217 currency code, see `more on currencies "
"<https://core.telegram.org/bots/payments#supported-currencies>`_"
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.prices:1 of
msgid ""
"Price breakdown, a JSON-serialized list of components (e.g. product "
"price, tax, discount, delivery cost, delivery tax, bonus, etc.)"
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.max_tip_amount:1 of
msgid ""
"The maximum accepted amount for tips in the *smallest units* of the "
"currency (integer, **not** float/double). For example, for a maximum tip "
"of :code:`US$ 1.45` pass :code:`max_tip_amount = 145`. See the *exp* "
"parameter in `currencies.json "
"<https://core.telegram.org/bots/payments/currencies.json>`_, it shows the"
" number of digits past the decimal point for each currency (2 for the "
"majority of currencies). Defaults to 0"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_invoice.SendInvoice.suggested_tip_amounts:1 of
msgid ""
"A JSON-serialized array of suggested amounts of tips in the *smallest "
"units* of the currency (integer, **not** float/double). At most 4 "
"suggested tip amounts can be specified. The suggested tip amounts must be"
" positive, passed in a strictly increased order and must not exceed "
"*max_tip_amount*."
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.start_parameter:1
#: of
msgid ""
"Unique deep-linking parameter. If left empty, **forwarded copies** of the"
" sent message will have a *Pay* button, allowing multiple users to pay "
"directly from the forwarded message, using the same invoice. If non-"
"empty, forwarded copies of the sent message will have a *URL* button with"
" a deep link to the bot (instead of a *Pay* button), with the value used "
"as the start parameter"
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.provider_data:1 of
msgid ""
"JSON-serialized data about the invoice, which will be shared with the "
"payment provider. A detailed description of required fields should be "
"provided by the payment provider."
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.photo_url:1 of
msgid ""
"URL of the product photo for the invoice. Can be a photo of the goods or "
"a marketing image for a service. People like it better when they see what"
" they are paying for."
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.photo_size:1 of
msgid "Photo size in bytes"
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.photo_width:1 of
msgid "Photo width"
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.photo_height:1 of
msgid "Photo height"
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.need_name:1 of
msgid ""
"Pass :code:`True` if you require the user's full name to complete the "
"order"
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.need_phone_number:1
#: of
msgid ""
"Pass :code:`True` if you require the user's phone number to complete the "
"order"
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.need_email:1 of
msgid ""
"Pass :code:`True` if you require the user's email address to complete the"
" order"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_invoice.SendInvoice.need_shipping_address:1 of
msgid ""
"Pass :code:`True` if you require the user's shipping address to complete "
"the order"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_invoice.SendInvoice.send_phone_number_to_provider:1 of
msgid "Pass :code:`True` if the user's phone number should be sent to provider"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_invoice.SendInvoice.send_email_to_provider:1 of
msgid "Pass :code:`True` if the user's email address should be sent to provider"
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.is_flexible:1 of
msgid "Pass :code:`True` if the final price depends on the shipping method"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_invoice.SendInvoice.disable_notification:1 of
msgid ""
"Sends the message `silently <https://telegram.org/blog/channels-2-0"
"#silent-messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.protect_content:1
#: of
msgid "Protects the contents of the sent message from forwarding and saving"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_invoice.SendInvoice.reply_to_message_id:1 of
msgid "If the message is a reply, ID of the original message"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_invoice.SendInvoice.allow_sending_without_reply:1 of
msgid ""
"Pass :code:`True` if the message should be sent even if the specified "
"replied-to message is not found"
msgstr ""
#: ../../docstring aiogram.methods.send_invoice.SendInvoice.reply_markup:1 of
msgid ""
"A JSON-serialized object for an `inline keyboard "
"<https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_. If empty, one 'Pay :code:`total price`' button will be "
"shown. If not empty, the first button must be a Pay button."
msgstr ""
#: ../../api/methods/send_invoice.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/send_invoice.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/send_invoice.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/send_invoice.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/send_invoice.rst:29
msgid ":code:`from aiogram.methods.send_invoice import SendInvoice`"
msgstr ""
#: ../../api/methods/send_invoice.rst:30
msgid "alias: :code:`from aiogram.methods import SendInvoice`"
msgstr ""
#: ../../api/methods/send_invoice.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/send_invoice.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,141 @@
# 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-10-01 22:51+0300\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/methods/send_location.rst:3
msgid "sendLocation"
msgstr ""
#: ../../api/methods/send_location.rst:5
msgid "Returns: :obj:`Message`"
msgstr ""
#: aiogram.methods.send_location.SendLocation:1 of
msgid ""
"Use this method to send point on the map. On success, the sent "
":class:`aiogram.types.message.Message` is returned."
msgstr ""
#: aiogram.methods.send_location.SendLocation:3 of
msgid "Source: https://core.telegram.org/bots/api#sendlocation"
msgstr ""
#: ../../docstring aiogram.methods.send_location.SendLocation.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.send_location.SendLocation.latitude:1 of
msgid "Latitude of the location"
msgstr ""
#: ../../docstring aiogram.methods.send_location.SendLocation.longitude:1 of
msgid "Longitude of the location"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_location.SendLocation.horizontal_accuracy:1 of
msgid "The radius of uncertainty for the location, measured in meters; 0-1500"
msgstr ""
#: ../../docstring aiogram.methods.send_location.SendLocation.live_period:1 of
msgid ""
"Period in seconds for which the location will be updated (see `Live "
"Locations <https://telegram.org/blog/live-locations>`_, should be between"
" 60 and 86400."
msgstr ""
#: ../../docstring aiogram.methods.send_location.SendLocation.heading:1 of
msgid ""
"For live locations, a direction in which the user is moving, in degrees. "
"Must be between 1 and 360 if specified."
msgstr ""
#: ../../docstring
#: aiogram.methods.send_location.SendLocation.proximity_alert_radius:1 of
msgid ""
"For live locations, a maximum distance for proximity alerts about "
"approaching another chat member, in meters. Must be between 1 and 100000 "
"if specified."
msgstr ""
#: ../../docstring
#: aiogram.methods.send_location.SendLocation.disable_notification:1 of
msgid ""
"Sends the message `silently <https://telegram.org/blog/channels-2-0"
"#silent-messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring aiogram.methods.send_location.SendLocation.protect_content:1
#: of
msgid "Protects the contents of the sent message from forwarding and saving"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_location.SendLocation.reply_to_message_id:1 of
msgid "If the message is a reply, ID of the original message"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_location.SendLocation.allow_sending_without_reply:1 of
msgid ""
"Pass :code:`True` if the message should be sent even if the specified "
"replied-to message is not found"
msgstr ""
#: ../../docstring aiogram.methods.send_location.SendLocation.reply_markup:1 of
msgid ""
"Additional interface options. A JSON-serialized object for an `inline "
"keyboard <https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_, `custom reply keyboard "
"<https://core.telegram.org/bots#keyboards>`_, instructions to remove "
"reply keyboard or to force a reply from the user."
msgstr ""
#: ../../api/methods/send_location.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/send_location.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/send_location.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/send_location.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/send_location.rst:29
msgid ":code:`from aiogram.methods.send_location import SendLocation`"
msgstr ""
#: ../../api/methods/send_location.rst:30
msgid "alias: :code:`from aiogram.methods import SendLocation`"
msgstr ""
#: ../../api/methods/send_location.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/send_location.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,108 @@
# 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-10-01 22:51+0300\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/methods/send_media_group.rst:3
msgid "sendMediaGroup"
msgstr ""
#: ../../api/methods/send_media_group.rst:5
msgid "Returns: :obj:`List[Message]`"
msgstr ""
#: aiogram.methods.send_media_group.SendMediaGroup:1 of
msgid ""
"Use this method to send a group of photos, videos, documents or audios as"
" an album. Documents and audio files can be only grouped in an album with"
" messages of the same type. On success, an array of `Messages "
"<https://core.telegram.org/bots/api#message>`_ that were sent is "
"returned."
msgstr ""
#: aiogram.methods.send_media_group.SendMediaGroup:3 of
msgid "Source: https://core.telegram.org/bots/api#sendmediagroup"
msgstr ""
#: ../../docstring aiogram.methods.send_media_group.SendMediaGroup.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.send_media_group.SendMediaGroup.media:1 of
msgid ""
"A JSON-serialized array describing messages to be sent, must include 2-10"
" items"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_media_group.SendMediaGroup.disable_notification:1 of
msgid ""
"Sends messages `silently <https://telegram.org/blog/channels-2-0#silent-"
"messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring
#: aiogram.methods.send_media_group.SendMediaGroup.protect_content:1 of
msgid "Protects the contents of the sent messages from forwarding and saving"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_media_group.SendMediaGroup.reply_to_message_id:1 of
msgid "If the messages are a reply, ID of the original message"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_media_group.SendMediaGroup.allow_sending_without_reply:1
#: of
msgid ""
"Pass :code:`True` if the message should be sent even if the specified "
"replied-to message is not found"
msgstr ""
#: ../../api/methods/send_media_group.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/send_media_group.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/send_media_group.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/send_media_group.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/send_media_group.rst:29
msgid ":code:`from aiogram.methods.send_media_group import SendMediaGroup`"
msgstr ""
#: ../../api/methods/send_media_group.rst:30
msgid "alias: :code:`from aiogram.methods import SendMediaGroup`"
msgstr ""
#: ../../api/methods/send_media_group.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/send_media_group.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,129 @@
# 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-10-01 22:51+0300\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/methods/send_message.rst:3
msgid "sendMessage"
msgstr ""
#: ../../api/methods/send_message.rst:5
msgid "Returns: :obj:`Message`"
msgstr ""
#: aiogram.methods.send_message.SendMessage:1 of
msgid ""
"Use this method to send text messages. On success, the sent "
":class:`aiogram.types.message.Message` is returned."
msgstr ""
#: aiogram.methods.send_message.SendMessage:3 of
msgid "Source: https://core.telegram.org/bots/api#sendmessage"
msgstr ""
#: ../../docstring aiogram.methods.send_message.SendMessage.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.send_message.SendMessage.text:1 of
msgid "Text of the message to be sent, 1-4096 characters after entities parsing"
msgstr ""
#: ../../docstring aiogram.methods.send_message.SendMessage.parse_mode:1 of
msgid ""
"Mode for parsing entities in the message text. See `formatting options "
"<https://core.telegram.org/bots/api#formatting-options>`_ for more "
"details."
msgstr ""
#: ../../docstring aiogram.methods.send_message.SendMessage.entities:1 of
msgid ""
"A JSON-serialized list of special entities that appear in message text, "
"which can be specified instead of *parse_mode*"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_message.SendMessage.disable_web_page_preview:1 of
msgid "Disables link previews for links in this message"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_message.SendMessage.disable_notification:1 of
msgid ""
"Sends the message `silently <https://telegram.org/blog/channels-2-0"
"#silent-messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring aiogram.methods.send_message.SendMessage.protect_content:1
#: of
msgid "Protects the contents of the sent message from forwarding and saving"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_message.SendMessage.reply_to_message_id:1 of
msgid "If the message is a reply, ID of the original message"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_message.SendMessage.allow_sending_without_reply:1 of
msgid ""
"Pass :code:`True` if the message should be sent even if the specified "
"replied-to message is not found"
msgstr ""
#: ../../docstring aiogram.methods.send_message.SendMessage.reply_markup:1 of
msgid ""
"Additional interface options. A JSON-serialized object for an `inline "
"keyboard <https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_, `custom reply keyboard "
"<https://core.telegram.org/bots#keyboards>`_, instructions to remove "
"reply keyboard or to force a reply from the user."
msgstr ""
#: ../../api/methods/send_message.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/send_message.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/send_message.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/send_message.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/send_message.rst:29
msgid ":code:`from aiogram.methods.send_message import SendMessage`"
msgstr ""
#: ../../api/methods/send_message.rst:30
msgid "alias: :code:`from aiogram.methods import SendMessage`"
msgstr ""
#: ../../api/methods/send_message.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/send_message.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,136 @@
# 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-10-01 22:51+0300\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/methods/send_photo.rst:3
msgid "sendPhoto"
msgstr ""
#: ../../api/methods/send_photo.rst:5
msgid "Returns: :obj:`Message`"
msgstr ""
#: aiogram.methods.send_photo.SendPhoto:1 of
msgid ""
"Use this method to send photos. On success, the sent "
":class:`aiogram.types.message.Message` is returned."
msgstr ""
#: aiogram.methods.send_photo.SendPhoto:3 of
msgid "Source: https://core.telegram.org/bots/api#sendphoto"
msgstr ""
#: ../../docstring aiogram.methods.send_photo.SendPhoto.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.send_photo.SendPhoto.photo:1 of
msgid ""
"Photo to send. Pass a file_id as String to send a photo that exists on "
"the Telegram servers (recommended), pass an HTTP URL as a String for "
"Telegram to get a photo from the Internet, or upload a new photo using "
"multipart/form-data. The photo must be at most 10 MB in size. The photo's"
" width and height must not exceed 10000 in total. Width and height ratio "
"must be at most 20. :ref:`More information on Sending Files » <sending-"
"files>`"
msgstr ""
#: ../../docstring aiogram.methods.send_photo.SendPhoto.caption:1 of
msgid ""
"Photo caption (may also be used when resending photos by *file_id*), "
"0-1024 characters after entities parsing"
msgstr ""
#: ../../docstring aiogram.methods.send_photo.SendPhoto.parse_mode:1 of
msgid ""
"Mode for parsing entities in the photo caption. See `formatting options "
"<https://core.telegram.org/bots/api#formatting-options>`_ for more "
"details."
msgstr ""
#: ../../docstring aiogram.methods.send_photo.SendPhoto.caption_entities:1 of
msgid ""
"A JSON-serialized list of special entities that appear in the caption, "
"which can be specified instead of *parse_mode*"
msgstr ""
#: ../../docstring aiogram.methods.send_photo.SendPhoto.disable_notification:1
#: of
msgid ""
"Sends the message `silently <https://telegram.org/blog/channels-2-0"
"#silent-messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring aiogram.methods.send_photo.SendPhoto.protect_content:1 of
msgid "Protects the contents of the sent message from forwarding and saving"
msgstr ""
#: ../../docstring aiogram.methods.send_photo.SendPhoto.reply_to_message_id:1
#: of
msgid "If the message is a reply, ID of the original message"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_photo.SendPhoto.allow_sending_without_reply:1 of
msgid ""
"Pass :code:`True` if the message should be sent even if the specified "
"replied-to message is not found"
msgstr ""
#: ../../docstring aiogram.methods.send_photo.SendPhoto.reply_markup:1 of
msgid ""
"Additional interface options. A JSON-serialized object for an `inline "
"keyboard <https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_, `custom reply keyboard "
"<https://core.telegram.org/bots#keyboards>`_, instructions to remove "
"reply keyboard or to force a reply from the user."
msgstr ""
#: ../../api/methods/send_photo.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/send_photo.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/send_photo.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/send_photo.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/send_photo.rst:29
msgid ":code:`from aiogram.methods.send_photo import SendPhoto`"
msgstr ""
#: ../../api/methods/send_photo.rst:30
msgid "alias: :code:`from aiogram.methods import SendPhoto`"
msgstr ""
#: ../../api/methods/send_photo.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/send_photo.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,175 @@
# 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-10-01 22:51+0300\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/methods/send_poll.rst:3
msgid "sendPoll"
msgstr ""
#: ../../api/methods/send_poll.rst:5
msgid "Returns: :obj:`Message`"
msgstr ""
#: aiogram.methods.send_poll.SendPoll:1 of
msgid ""
"Use this method to send a native poll. On success, the sent "
":class:`aiogram.types.message.Message` is returned."
msgstr ""
#: aiogram.methods.send_poll.SendPoll:3 of
msgid "Source: https://core.telegram.org/bots/api#sendpoll"
msgstr ""
#: ../../docstring aiogram.methods.send_poll.SendPoll.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.send_poll.SendPoll.question:1 of
msgid "Poll question, 1-300 characters"
msgstr ""
#: ../../docstring aiogram.methods.send_poll.SendPoll.options:1 of
msgid ""
"A JSON-serialized list of answer options, 2-10 strings 1-100 characters "
"each"
msgstr ""
#: ../../docstring aiogram.methods.send_poll.SendPoll.is_anonymous:1 of
msgid ":code:`True`, if the poll needs to be anonymous, defaults to :code:`True`"
msgstr ""
#: ../../docstring aiogram.methods.send_poll.SendPoll.type:1 of
msgid "Poll type, 'quiz' or 'regular', defaults to 'regular'"
msgstr ""
#: ../../docstring aiogram.methods.send_poll.SendPoll.allows_multiple_answers:1
#: of
msgid ""
":code:`True`, if the poll allows multiple answers, ignored for polls in "
"quiz mode, defaults to :code:`False`"
msgstr ""
#: ../../docstring aiogram.methods.send_poll.SendPoll.correct_option_id:1 of
msgid ""
"0-based identifier of the correct answer option, required for polls in "
"quiz mode"
msgstr ""
#: ../../docstring aiogram.methods.send_poll.SendPoll.explanation:1 of
msgid ""
"Text that is shown when a user chooses an incorrect answer or taps on the"
" lamp icon in a quiz-style poll, 0-200 characters with at most 2 line "
"feeds after entities parsing"
msgstr ""
#: ../../docstring aiogram.methods.send_poll.SendPoll.explanation_parse_mode:1
#: of
msgid ""
"Mode for parsing entities in the explanation. See `formatting options "
"<https://core.telegram.org/bots/api#formatting-options>`_ for more "
"details."
msgstr ""
#: ../../docstring aiogram.methods.send_poll.SendPoll.explanation_entities:1 of
msgid ""
"A JSON-serialized list of special entities that appear in the poll "
"explanation, which can be specified instead of *parse_mode*"
msgstr ""
#: ../../docstring aiogram.methods.send_poll.SendPoll.open_period:1 of
msgid ""
"Amount of time in seconds the poll will be active after creation, 5-600. "
"Can't be used together with *close_date*."
msgstr ""
#: ../../docstring aiogram.methods.send_poll.SendPoll.close_date:1 of
msgid ""
"Point in time (Unix timestamp) when the poll will be automatically "
"closed. Must be at least 5 and no more than 600 seconds in the future. "
"Can't be used together with *open_period*."
msgstr ""
#: ../../docstring aiogram.methods.send_poll.SendPoll.is_closed:1 of
msgid ""
"Pass :code:`True` if the poll needs to be immediately closed. This can be"
" useful for poll preview."
msgstr ""
#: ../../docstring aiogram.methods.send_poll.SendPoll.disable_notification:1 of
msgid ""
"Sends the message `silently <https://telegram.org/blog/channels-2-0"
"#silent-messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring aiogram.methods.send_poll.SendPoll.protect_content:1 of
msgid "Protects the contents of the sent message from forwarding and saving"
msgstr ""
#: ../../docstring aiogram.methods.send_poll.SendPoll.reply_to_message_id:1 of
msgid "If the message is a reply, ID of the original message"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_poll.SendPoll.allow_sending_without_reply:1 of
msgid ""
"Pass :code:`True` if the message should be sent even if the specified "
"replied-to message is not found"
msgstr ""
#: ../../docstring aiogram.methods.send_poll.SendPoll.reply_markup:1 of
msgid ""
"Additional interface options. A JSON-serialized object for an `inline "
"keyboard <https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_, `custom reply keyboard "
"<https://core.telegram.org/bots#keyboards>`_, instructions to remove "
"reply keyboard or to force a reply from the user."
msgstr ""
#: ../../api/methods/send_poll.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/send_poll.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/send_poll.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/send_poll.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/send_poll.rst:29
msgid ":code:`from aiogram.methods.send_poll import SendPoll`"
msgstr ""
#: ../../api/methods/send_poll.rst:30
msgid "alias: :code:`from aiogram.methods import SendPoll`"
msgstr ""
#: ../../api/methods/send_poll.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/send_poll.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,119 @@
# 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-10-01 22:51+0300\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/methods/send_sticker.rst:3
msgid "sendSticker"
msgstr ""
#: ../../api/methods/send_sticker.rst:5
msgid "Returns: :obj:`Message`"
msgstr ""
#: aiogram.methods.send_sticker.SendSticker:1 of
msgid ""
"Use this method to send static .WEBP, `animated "
"<https://telegram.org/blog/animated-stickers>`_ .TGS, or `video "
"<https://telegram.org/blog/video-stickers-better-reactions>`_ .WEBM "
"stickers. On success, the sent :class:`aiogram.types.message.Message` is "
"returned."
msgstr ""
#: aiogram.methods.send_sticker.SendSticker:3 of
msgid "Source: https://core.telegram.org/bots/api#sendsticker"
msgstr ""
#: ../../docstring aiogram.methods.send_sticker.SendSticker.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.send_sticker.SendSticker.sticker:1 of
msgid ""
"Sticker to send. Pass a file_id as String to send a file that exists on "
"the Telegram servers (recommended), pass an HTTP URL as a String for "
"Telegram to get a .WEBP file from the Internet, or upload a new one using"
" multipart/form-data. :ref:`More information on Sending Files » <sending-"
"files>`"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_sticker.SendSticker.disable_notification:1 of
msgid ""
"Sends the message `silently <https://telegram.org/blog/channels-2-0"
"#silent-messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring aiogram.methods.send_sticker.SendSticker.protect_content:1
#: of
msgid "Protects the contents of the sent message from forwarding and saving"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_sticker.SendSticker.reply_to_message_id:1 of
msgid "If the message is a reply, ID of the original message"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_sticker.SendSticker.allow_sending_without_reply:1 of
msgid ""
"Pass :code:`True` if the message should be sent even if the specified "
"replied-to message is not found"
msgstr ""
#: ../../docstring aiogram.methods.send_sticker.SendSticker.reply_markup:1 of
msgid ""
"Additional interface options. A JSON-serialized object for an `inline "
"keyboard <https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_, `custom reply keyboard "
"<https://core.telegram.org/bots#keyboards>`_, instructions to remove "
"reply keyboard or to force a reply from the user."
msgstr ""
#: ../../api/methods/send_sticker.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/send_sticker.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/send_sticker.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/send_sticker.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/send_sticker.rst:29
msgid ":code:`from aiogram.methods.send_sticker import SendSticker`"
msgstr ""
#: ../../api/methods/send_sticker.rst:30
msgid "alias: :code:`from aiogram.methods import SendSticker`"
msgstr ""
#: ../../api/methods/send_sticker.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/send_sticker.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,143 @@
# 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-10-01 22:51+0300\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/methods/send_venue.rst:3
msgid "sendVenue"
msgstr ""
#: ../../api/methods/send_venue.rst:5
msgid "Returns: :obj:`Message`"
msgstr ""
#: aiogram.methods.send_venue.SendVenue:1 of
msgid ""
"Use this method to send information about a venue. On success, the sent "
":class:`aiogram.types.message.Message` is returned."
msgstr ""
#: aiogram.methods.send_venue.SendVenue:3 of
msgid "Source: https://core.telegram.org/bots/api#sendvenue"
msgstr ""
#: ../../docstring aiogram.methods.send_venue.SendVenue.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.send_venue.SendVenue.latitude:1 of
msgid "Latitude of the venue"
msgstr ""
#: ../../docstring aiogram.methods.send_venue.SendVenue.longitude:1 of
msgid "Longitude of the venue"
msgstr ""
#: ../../docstring aiogram.methods.send_venue.SendVenue.title:1 of
msgid "Name of the venue"
msgstr ""
#: ../../docstring aiogram.methods.send_venue.SendVenue.address:1 of
msgid "Address of the venue"
msgstr ""
#: ../../docstring aiogram.methods.send_venue.SendVenue.foursquare_id:1 of
msgid "Foursquare identifier of the venue"
msgstr ""
#: ../../docstring aiogram.methods.send_venue.SendVenue.foursquare_type:1 of
msgid ""
"Foursquare type of the venue, if known. (For example, "
"'arts_entertainment/default', 'arts_entertainment/aquarium' or "
"'food/icecream'.)"
msgstr ""
#: ../../docstring aiogram.methods.send_venue.SendVenue.google_place_id:1 of
msgid "Google Places identifier of the venue"
msgstr ""
#: ../../docstring aiogram.methods.send_venue.SendVenue.google_place_type:1 of
msgid ""
"Google Places type of the venue. (See `supported types "
"<https://developers.google.com/places/web-service/supported_types>`_.)"
msgstr ""
#: ../../docstring aiogram.methods.send_venue.SendVenue.disable_notification:1
#: of
msgid ""
"Sends the message `silently <https://telegram.org/blog/channels-2-0"
"#silent-messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring aiogram.methods.send_venue.SendVenue.protect_content:1 of
msgid "Protects the contents of the sent message from forwarding and saving"
msgstr ""
#: ../../docstring aiogram.methods.send_venue.SendVenue.reply_to_message_id:1
#: of
msgid "If the message is a reply, ID of the original message"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_venue.SendVenue.allow_sending_without_reply:1 of
msgid ""
"Pass :code:`True` if the message should be sent even if the specified "
"replied-to message is not found"
msgstr ""
#: ../../docstring aiogram.methods.send_venue.SendVenue.reply_markup:1 of
msgid ""
"Additional interface options. A JSON-serialized object for an `inline "
"keyboard <https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_, `custom reply keyboard "
"<https://core.telegram.org/bots#keyboards>`_, instructions to remove "
"reply keyboard or to force a reply from the user."
msgstr ""
#: ../../api/methods/send_venue.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/send_venue.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/send_venue.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/send_venue.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/send_venue.rst:29
msgid ":code:`from aiogram.methods.send_venue import SendVenue`"
msgstr ""
#: ../../api/methods/send_venue.rst:30
msgid "alias: :code:`from aiogram.methods import SendVenue`"
msgstr ""
#: ../../api/methods/send_venue.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/send_venue.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,166 @@
# 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-10-01 22:51+0300\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/methods/send_video.rst:3
msgid "sendVideo"
msgstr ""
#: ../../api/methods/send_video.rst:5
msgid "Returns: :obj:`Message`"
msgstr ""
#: aiogram.methods.send_video.SendVideo:1 of
msgid ""
"Use this method to send video files, Telegram clients support MPEG4 "
"videos (other formats may be sent as "
":class:`aiogram.types.document.Document`). On success, the sent "
":class:`aiogram.types.message.Message` is returned. Bots can currently "
"send video files of up to 50 MB in size, this limit may be changed in the"
" future."
msgstr ""
#: aiogram.methods.send_video.SendVideo:3 of
msgid "Source: https://core.telegram.org/bots/api#sendvideo"
msgstr ""
#: ../../docstring aiogram.methods.send_video.SendVideo.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.send_video.SendVideo.video:1 of
msgid ""
"Video to send. Pass a file_id as String to send a video that exists on "
"the Telegram servers (recommended), pass an HTTP URL as a String for "
"Telegram to get a video from the Internet, or upload a new video using "
"multipart/form-data. :ref:`More information on Sending Files » <sending-"
"files>`"
msgstr ""
#: ../../docstring aiogram.methods.send_video.SendVideo.duration:1 of
msgid "Duration of sent video in seconds"
msgstr ""
#: ../../docstring aiogram.methods.send_video.SendVideo.width:1 of
msgid "Video width"
msgstr ""
#: ../../docstring aiogram.methods.send_video.SendVideo.height:1 of
msgid "Video height"
msgstr ""
#: ../../docstring aiogram.methods.send_video.SendVideo.thumb:1 of
msgid ""
"Thumbnail of the file sent; can be ignored if thumbnail generation for "
"the file is supported server-side. The thumbnail should be in JPEG format"
" and less than 200 kB in size. A thumbnail's width and height should not "
"exceed 320. Ignored if the file is not uploaded using multipart/form-"
"data. Thumbnails can't be reused and can be only uploaded as a new file, "
"so you can pass 'attach://<file_attach_name>' if the thumbnail was "
"uploaded using multipart/form-data under <file_attach_name>. :ref:`More "
"information on Sending Files » <sending-files>`"
msgstr ""
#: ../../docstring aiogram.methods.send_video.SendVideo.caption:1 of
msgid ""
"Video caption (may also be used when resending videos by *file_id*), "
"0-1024 characters after entities parsing"
msgstr ""
#: ../../docstring aiogram.methods.send_video.SendVideo.parse_mode:1 of
msgid ""
"Mode for parsing entities in the video caption. See `formatting options "
"<https://core.telegram.org/bots/api#formatting-options>`_ for more "
"details."
msgstr ""
#: ../../docstring aiogram.methods.send_video.SendVideo.caption_entities:1 of
msgid ""
"A JSON-serialized list of special entities that appear in the caption, "
"which can be specified instead of *parse_mode*"
msgstr ""
#: ../../docstring aiogram.methods.send_video.SendVideo.supports_streaming:1 of
msgid "Pass :code:`True` if the uploaded video is suitable for streaming"
msgstr ""
#: ../../docstring aiogram.methods.send_video.SendVideo.disable_notification:1
#: of
msgid ""
"Sends the message `silently <https://telegram.org/blog/channels-2-0"
"#silent-messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring aiogram.methods.send_video.SendVideo.protect_content:1 of
msgid "Protects the contents of the sent message from forwarding and saving"
msgstr ""
#: ../../docstring aiogram.methods.send_video.SendVideo.reply_to_message_id:1
#: of
msgid "If the message is a reply, ID of the original message"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_video.SendVideo.allow_sending_without_reply:1 of
msgid ""
"Pass :code:`True` if the message should be sent even if the specified "
"replied-to message is not found"
msgstr ""
#: ../../docstring aiogram.methods.send_video.SendVideo.reply_markup:1 of
msgid ""
"Additional interface options. A JSON-serialized object for an `inline "
"keyboard <https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_, `custom reply keyboard "
"<https://core.telegram.org/bots#keyboards>`_, instructions to remove "
"reply keyboard or to force a reply from the user."
msgstr ""
#: ../../api/methods/send_video.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/send_video.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/send_video.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/send_video.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/send_video.rst:29
msgid ":code:`from aiogram.methods.send_video import SendVideo`"
msgstr ""
#: ../../api/methods/send_video.rst:30
msgid "alias: :code:`from aiogram.methods import SendVideo`"
msgstr ""
#: ../../api/methods/send_video.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/send_video.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,140 @@
# 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-10-01 22:51+0300\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/methods/send_video_note.rst:3
msgid "sendVideoNote"
msgstr ""
#: ../../api/methods/send_video_note.rst:5
msgid "Returns: :obj:`Message`"
msgstr ""
#: aiogram.methods.send_video_note.SendVideoNote:1 of
msgid ""
"As of `v.4.0 <https://telegram.org/blog/video-messages-and-telescope>`_, "
"Telegram clients support rounded square MPEG4 videos of up to 1 minute "
"long. Use this method to send video messages. On success, the sent "
":class:`aiogram.types.message.Message` is returned."
msgstr ""
#: aiogram.methods.send_video_note.SendVideoNote:3 of
msgid "Source: https://core.telegram.org/bots/api#sendvideonote"
msgstr ""
#: ../../docstring aiogram.methods.send_video_note.SendVideoNote.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.send_video_note.SendVideoNote.video_note:1
#: of
msgid ""
"Video note to send. Pass a file_id as String to send a video note that "
"exists on the Telegram servers (recommended) or upload a new video using "
"multipart/form-data. :ref:`More information on Sending Files » <sending-"
"files>`. Sending video notes by a URL is currently unsupported"
msgstr ""
#: ../../docstring aiogram.methods.send_video_note.SendVideoNote.duration:1 of
msgid "Duration of sent video in seconds"
msgstr ""
#: ../../docstring aiogram.methods.send_video_note.SendVideoNote.length:1 of
msgid "Video width and height, i.e. diameter of the video message"
msgstr ""
#: ../../docstring aiogram.methods.send_video_note.SendVideoNote.thumb:1 of
msgid ""
"Thumbnail of the file sent; can be ignored if thumbnail generation for "
"the file is supported server-side. The thumbnail should be in JPEG format"
" and less than 200 kB in size. A thumbnail's width and height should not "
"exceed 320. Ignored if the file is not uploaded using multipart/form-"
"data. Thumbnails can't be reused and can be only uploaded as a new file, "
"so you can pass 'attach://<file_attach_name>' if the thumbnail was "
"uploaded using multipart/form-data under <file_attach_name>. :ref:`More "
"information on Sending Files » <sending-files>`"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_video_note.SendVideoNote.disable_notification:1 of
msgid ""
"Sends the message `silently <https://telegram.org/blog/channels-2-0"
"#silent-messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring
#: aiogram.methods.send_video_note.SendVideoNote.protect_content:1 of
msgid "Protects the contents of the sent message from forwarding and saving"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_video_note.SendVideoNote.reply_to_message_id:1 of
msgid "If the message is a reply, ID of the original message"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_video_note.SendVideoNote.allow_sending_without_reply:1
#: of
msgid ""
"Pass :code:`True` if the message should be sent even if the specified "
"replied-to message is not found"
msgstr ""
#: ../../docstring aiogram.methods.send_video_note.SendVideoNote.reply_markup:1
#: of
msgid ""
"Additional interface options. A JSON-serialized object for an `inline "
"keyboard <https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_, `custom reply keyboard "
"<https://core.telegram.org/bots#keyboards>`_, instructions to remove "
"reply keyboard or to force a reply from the user."
msgstr ""
#: ../../api/methods/send_video_note.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/send_video_note.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/send_video_note.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/send_video_note.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/send_video_note.rst:29
msgid ":code:`from aiogram.methods.send_video_note import SendVideoNote`"
msgstr ""
#: ../../api/methods/send_video_note.rst:30
msgid "alias: :code:`from aiogram.methods import SendVideoNote`"
msgstr ""
#: ../../api/methods/send_video_note.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/send_video_note.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,142 @@
# 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-10-01 22:51+0300\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/methods/send_voice.rst:3
msgid "sendVoice"
msgstr ""
#: ../../api/methods/send_voice.rst:5
msgid "Returns: :obj:`Message`"
msgstr ""
#: aiogram.methods.send_voice.SendVoice:1 of
msgid ""
"Use this method to send audio files, if you want Telegram clients to "
"display the file as a playable voice message. For this to work, your "
"audio must be in an .OGG file encoded with OPUS (other formats may be "
"sent as :class:`aiogram.types.audio.Audio` or "
":class:`aiogram.types.document.Document`). On success, the sent "
":class:`aiogram.types.message.Message` is returned. Bots can currently "
"send voice messages of up to 50 MB in size, this limit may be changed in "
"the future."
msgstr ""
#: aiogram.methods.send_voice.SendVoice:3 of
msgid "Source: https://core.telegram.org/bots/api#sendvoice"
msgstr ""
#: ../../docstring aiogram.methods.send_voice.SendVoice.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.send_voice.SendVoice.voice:1 of
msgid ""
"Audio file to send. Pass a file_id as String to send a file that exists "
"on the Telegram servers (recommended), pass an HTTP URL as a String for "
"Telegram to get a file from the Internet, or upload a new one using "
"multipart/form-data. :ref:`More information on Sending Files » <sending-"
"files>`"
msgstr ""
#: ../../docstring aiogram.methods.send_voice.SendVoice.caption:1 of
msgid "Voice message caption, 0-1024 characters after entities parsing"
msgstr ""
#: ../../docstring aiogram.methods.send_voice.SendVoice.parse_mode:1 of
msgid ""
"Mode for parsing entities in the voice message caption. See `formatting "
"options <https://core.telegram.org/bots/api#formatting-options>`_ for "
"more details."
msgstr ""
#: ../../docstring aiogram.methods.send_voice.SendVoice.caption_entities:1 of
msgid ""
"A JSON-serialized list of special entities that appear in the caption, "
"which can be specified instead of *parse_mode*"
msgstr ""
#: ../../docstring aiogram.methods.send_voice.SendVoice.duration:1 of
msgid "Duration of the voice message in seconds"
msgstr ""
#: ../../docstring aiogram.methods.send_voice.SendVoice.disable_notification:1
#: of
msgid ""
"Sends the message `silently <https://telegram.org/blog/channels-2-0"
"#silent-messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring aiogram.methods.send_voice.SendVoice.protect_content:1 of
msgid "Protects the contents of the sent message from forwarding and saving"
msgstr ""
#: ../../docstring aiogram.methods.send_voice.SendVoice.reply_to_message_id:1
#: of
msgid "If the message is a reply, ID of the original message"
msgstr ""
#: ../../docstring
#: aiogram.methods.send_voice.SendVoice.allow_sending_without_reply:1 of
msgid ""
"Pass :code:`True` if the message should be sent even if the specified "
"replied-to message is not found"
msgstr ""
#: ../../docstring aiogram.methods.send_voice.SendVoice.reply_markup:1 of
msgid ""
"Additional interface options. A JSON-serialized object for an `inline "
"keyboard <https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_, `custom reply keyboard "
"<https://core.telegram.org/bots#keyboards>`_, instructions to remove "
"reply keyboard or to force a reply from the user."
msgstr ""
#: ../../api/methods/send_voice.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/send_voice.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/send_voice.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/send_voice.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/send_voice.rst:29
msgid ":code:`from aiogram.methods.send_voice import SendVoice`"
msgstr ""
#: ../../api/methods/send_voice.rst:30
msgid "alias: :code:`from aiogram.methods import SendVoice`"
msgstr ""
#: ../../api/methods/send_voice.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/send_voice.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,94 @@
# 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-10-01 22:51+0300\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/methods/set_chat_administrator_custom_title.rst:3
msgid "setChatAdministratorCustomTitle"
msgstr ""
#: ../../api/methods/set_chat_administrator_custom_title.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.set_chat_administrator_custom_title.SetChatAdministratorCustomTitle:1
#: of
msgid ""
"Use this method to set a custom title for an administrator in a "
"supergroup promoted by the bot. Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.set_chat_administrator_custom_title.SetChatAdministratorCustomTitle:3
#: of
msgid "Source: https://core.telegram.org/bots/api#setchatadministratorcustomtitle"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_chat_administrator_custom_title.SetChatAdministratorCustomTitle.chat_id:1
#: of
msgid ""
"Unique identifier for the target chat or username of the target "
"supergroup (in the format :code:`@supergroupusername`)"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_chat_administrator_custom_title.SetChatAdministratorCustomTitle.user_id:1
#: of
msgid "Unique identifier of the target user"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_chat_administrator_custom_title.SetChatAdministratorCustomTitle.custom_title:1
#: of
msgid ""
"New custom title for the administrator; 0-16 characters, emoji are not "
"allowed"
msgstr ""
#: ../../api/methods/set_chat_administrator_custom_title.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/set_chat_administrator_custom_title.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/set_chat_administrator_custom_title.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/set_chat_administrator_custom_title.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/set_chat_administrator_custom_title.rst:29
msgid ""
":code:`from aiogram.methods.set_chat_administrator_custom_title import "
"SetChatAdministratorCustomTitle`"
msgstr ""
#: ../../api/methods/set_chat_administrator_custom_title.rst:30
msgid "alias: :code:`from aiogram.methods import SetChatAdministratorCustomTitle`"
msgstr ""
#: ../../api/methods/set_chat_administrator_custom_title.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/set_chat_administrator_custom_title.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,84 @@
# 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-10-01 22:51+0300\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/methods/set_chat_description.rst:3
msgid "setChatDescription"
msgstr ""
#: ../../api/methods/set_chat_description.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.set_chat_description.SetChatDescription:1 of
msgid ""
"Use this method to change the description of a group, a supergroup or a "
"channel. The bot must be an administrator in the chat for this to work "
"and must have the appropriate administrator rights. Returns :code:`True` "
"on success."
msgstr ""
#: aiogram.methods.set_chat_description.SetChatDescription:3 of
msgid "Source: https://core.telegram.org/bots/api#setchatdescription"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_chat_description.SetChatDescription.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_chat_description.SetChatDescription.description:1 of
msgid "New chat description, 0-255 characters"
msgstr ""
#: ../../api/methods/set_chat_description.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/set_chat_description.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/set_chat_description.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/set_chat_description.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/set_chat_description.rst:29
msgid ""
":code:`from aiogram.methods.set_chat_description import "
"SetChatDescription`"
msgstr ""
#: ../../api/methods/set_chat_description.rst:30
msgid "alias: :code:`from aiogram.methods import SetChatDescription`"
msgstr ""
#: ../../api/methods/set_chat_description.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/set_chat_description.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,82 @@
# 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-10-01 22:51+0300\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/methods/set_chat_menu_button.rst:3
msgid "setChatMenuButton"
msgstr ""
#: ../../api/methods/set_chat_menu_button.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.set_chat_menu_button.SetChatMenuButton:1 of
msgid ""
"Use this method to change the bot's menu button in a private chat, or the"
" default menu button. Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.set_chat_menu_button.SetChatMenuButton:3 of
msgid "Source: https://core.telegram.org/bots/api#setchatmenubutton"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_chat_menu_button.SetChatMenuButton.chat_id:1 of
msgid ""
"Unique identifier for the target private chat. If not specified, default "
"bot's menu button will be changed"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_chat_menu_button.SetChatMenuButton.menu_button:1 of
msgid ""
"A JSON-serialized object for the bot's new menu button. Defaults to "
":class:`aiogram.types.menu_button_default.MenuButtonDefault`"
msgstr ""
#: ../../api/methods/set_chat_menu_button.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/set_chat_menu_button.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/set_chat_menu_button.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/set_chat_menu_button.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/set_chat_menu_button.rst:29
msgid ":code:`from aiogram.methods.set_chat_menu_button import SetChatMenuButton`"
msgstr ""
#: ../../api/methods/set_chat_menu_button.rst:30
msgid "alias: :code:`from aiogram.methods import SetChatMenuButton`"
msgstr ""
#: ../../api/methods/set_chat_menu_button.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/set_chat_menu_button.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,84 @@
# 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-10-01 22:51+0300\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/methods/set_chat_permissions.rst:3
msgid "setChatPermissions"
msgstr ""
#: ../../api/methods/set_chat_permissions.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.set_chat_permissions.SetChatPermissions:1 of
msgid ""
"Use this method to set default chat permissions for all members. The bot "
"must be an administrator in the group or a supergroup for this to work "
"and must have the *can_restrict_members* administrator rights. Returns "
":code:`True` on success."
msgstr ""
#: aiogram.methods.set_chat_permissions.SetChatPermissions:3 of
msgid "Source: https://core.telegram.org/bots/api#setchatpermissions"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_chat_permissions.SetChatPermissions.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target "
"supergroup (in the format :code:`@supergroupusername`)"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_chat_permissions.SetChatPermissions.permissions:1 of
msgid "A JSON-serialized object for new default chat permissions"
msgstr ""
#: ../../api/methods/set_chat_permissions.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/set_chat_permissions.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/set_chat_permissions.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/set_chat_permissions.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/set_chat_permissions.rst:29
msgid ""
":code:`from aiogram.methods.set_chat_permissions import "
"SetChatPermissions`"
msgstr ""
#: ../../api/methods/set_chat_permissions.rst:30
msgid "alias: :code:`from aiogram.methods import SetChatPermissions`"
msgstr ""
#: ../../api/methods/set_chat_permissions.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/set_chat_permissions.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,76 @@
# 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-10-01 22:51+0300\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/methods/set_chat_photo.rst:3
msgid "setChatPhoto"
msgstr ""
#: ../../api/methods/set_chat_photo.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.set_chat_photo.SetChatPhoto:1 of
msgid ""
"Use this method to set a new profile photo for the chat. Photos can't be "
"changed for private chats. The bot must be an administrator in the chat "
"for this to work and must have the appropriate administrator rights. "
"Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.set_chat_photo.SetChatPhoto:3 of
msgid "Source: https://core.telegram.org/bots/api#setchatphoto"
msgstr ""
#: ../../docstring aiogram.methods.set_chat_photo.SetChatPhoto.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.set_chat_photo.SetChatPhoto.photo:1 of
msgid "New chat photo, uploaded using multipart/form-data"
msgstr ""
#: ../../api/methods/set_chat_photo.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/set_chat_photo.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/set_chat_photo.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/set_chat_photo.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/set_chat_photo.rst:29
msgid ":code:`from aiogram.methods.set_chat_photo import SetChatPhoto`"
msgstr ""
#: ../../api/methods/set_chat_photo.rst:30
msgid "alias: :code:`from aiogram.methods import SetChatPhoto`"
msgstr ""
#: ../../api/methods/set_chat_photo.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -0,0 +1,84 @@
# 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-10-01 22:51+0300\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/methods/set_chat_sticker_set.rst:3
msgid "setChatStickerSet"
msgstr ""
#: ../../api/methods/set_chat_sticker_set.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.set_chat_sticker_set.SetChatStickerSet:1 of
msgid ""
"Use this method to set a new group sticker set for a supergroup. The bot "
"must be an administrator in the chat for this to work and must have the "
"appropriate administrator rights. Use the field *can_set_sticker_set* "
"optionally returned in :class:`aiogram.methods.get_chat.GetChat` requests"
" to check if the bot can use this method. Returns :code:`True` on "
"success."
msgstr ""
#: aiogram.methods.set_chat_sticker_set.SetChatStickerSet:3 of
msgid "Source: https://core.telegram.org/bots/api#setchatstickerset"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_chat_sticker_set.SetChatStickerSet.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target "
"supergroup (in the format :code:`@supergroupusername`)"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_chat_sticker_set.SetChatStickerSet.sticker_set_name:1 of
msgid "Name of the sticker set to be set as the group sticker set"
msgstr ""
#: ../../api/methods/set_chat_sticker_set.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/set_chat_sticker_set.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/set_chat_sticker_set.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/set_chat_sticker_set.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/set_chat_sticker_set.rst:29
msgid ":code:`from aiogram.methods.set_chat_sticker_set import SetChatStickerSet`"
msgstr ""
#: ../../api/methods/set_chat_sticker_set.rst:30
msgid "alias: :code:`from aiogram.methods import SetChatStickerSet`"
msgstr ""
#: ../../api/methods/set_chat_sticker_set.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/set_chat_sticker_set.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,80 @@
# 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-10-01 22:51+0300\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/methods/set_chat_title.rst:3
msgid "setChatTitle"
msgstr ""
#: ../../api/methods/set_chat_title.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.set_chat_title.SetChatTitle:1 of
msgid ""
"Use this method to change the title of a chat. Titles can't be changed "
"for private chats. The bot must be an administrator in the chat for this "
"to work and must have the appropriate administrator rights. Returns "
":code:`True` on success."
msgstr ""
#: aiogram.methods.set_chat_title.SetChatTitle:3 of
msgid "Source: https://core.telegram.org/bots/api#setchattitle"
msgstr ""
#: ../../docstring aiogram.methods.set_chat_title.SetChatTitle.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.set_chat_title.SetChatTitle.title:1 of
msgid "New chat title, 1-255 characters"
msgstr ""
#: ../../api/methods/set_chat_title.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/set_chat_title.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/set_chat_title.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/set_chat_title.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/set_chat_title.rst:29
msgid ":code:`from aiogram.methods.set_chat_title import SetChatTitle`"
msgstr ""
#: ../../api/methods/set_chat_title.rst:30
msgid "alias: :code:`from aiogram.methods import SetChatTitle`"
msgstr ""
#: ../../api/methods/set_chat_title.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/set_chat_title.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,112 @@
# 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-10-01 22:51+0300\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/methods/set_game_score.rst:3
msgid "setGameScore"
msgstr ""
#: ../../api/methods/set_game_score.rst:5
msgid "Returns: :obj:`Union[Message, bool]`"
msgstr ""
#: aiogram.methods.set_game_score.SetGameScore:1 of
msgid ""
"Use this method to set the score of the specified user in a game message."
" On success, if the message is not an inline message, the "
":class:`aiogram.types.message.Message` is returned, otherwise "
":code:`True` is returned. Returns an error, if the new score is not "
"greater than the user's current score in the chat and *force* is "
":code:`False`."
msgstr ""
#: aiogram.methods.set_game_score.SetGameScore:3 of
msgid "Source: https://core.telegram.org/bots/api#setgamescore"
msgstr ""
#: ../../docstring aiogram.methods.set_game_score.SetGameScore.user_id:1 of
msgid "User identifier"
msgstr ""
#: ../../docstring aiogram.methods.set_game_score.SetGameScore.score:1 of
msgid "New score, must be non-negative"
msgstr ""
#: ../../docstring aiogram.methods.set_game_score.SetGameScore.force:1 of
msgid ""
"Pass :code:`True` if the high score is allowed to decrease. This can be "
"useful when fixing mistakes or banning cheaters"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_game_score.SetGameScore.disable_edit_message:1 of
msgid ""
"Pass :code:`True` if the game message should not be automatically edited "
"to include the current scoreboard"
msgstr ""
#: ../../docstring aiogram.methods.set_game_score.SetGameScore.chat_id:1 of
msgid ""
"Required if *inline_message_id* is not specified. Unique identifier for "
"the target chat"
msgstr ""
#: ../../docstring aiogram.methods.set_game_score.SetGameScore.message_id:1 of
msgid ""
"Required if *inline_message_id* is not specified. Identifier of the sent "
"message"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_game_score.SetGameScore.inline_message_id:1 of
msgid ""
"Required if *chat_id* and *message_id* are not specified. Identifier of "
"the inline message"
msgstr ""
#: ../../api/methods/set_game_score.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/set_game_score.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/set_game_score.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/set_game_score.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/set_game_score.rst:29
msgid ":code:`from aiogram.methods.set_game_score import SetGameScore`"
msgstr ""
#: ../../api/methods/set_game_score.rst:30
msgid "alias: :code:`from aiogram.methods import SetGameScore`"
msgstr ""
#: ../../api/methods/set_game_score.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/set_game_score.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,92 @@
# 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-10-01 22:51+0300\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/methods/set_my_commands.rst:3
msgid "setMyCommands"
msgstr ""
#: ../../api/methods/set_my_commands.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.set_my_commands.SetMyCommands:1 of
msgid ""
"Use this method to change the list of the bot's commands. See "
"`https://core.telegram.org/bots#commands "
"<https://core.telegram.org/bots#commands>`_`https://core.telegram.org/bots#commands"
" <https://core.telegram.org/bots#commands>`_ for more details about bot "
"commands. Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.set_my_commands.SetMyCommands:3 of
msgid "Source: https://core.telegram.org/bots/api#setmycommands"
msgstr ""
#: ../../docstring aiogram.methods.set_my_commands.SetMyCommands.commands:1 of
msgid ""
"A JSON-serialized list of bot commands to be set as the list of the bot's"
" commands. At most 100 commands can be specified."
msgstr ""
#: ../../docstring aiogram.methods.set_my_commands.SetMyCommands.scope:1 of
msgid ""
"A JSON-serialized object, describing scope of users for which the "
"commands are relevant. Defaults to "
":class:`aiogram.types.bot_command_scope_default.BotCommandScopeDefault`."
msgstr ""
#: ../../docstring
#: aiogram.methods.set_my_commands.SetMyCommands.language_code:1 of
msgid ""
"A two-letter ISO 639-1 language code. If empty, commands will be applied "
"to all users from the given scope, for whose language there are no "
"dedicated commands"
msgstr ""
#: ../../api/methods/set_my_commands.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/set_my_commands.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/set_my_commands.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/set_my_commands.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/set_my_commands.rst:29
msgid ":code:`from aiogram.methods.set_my_commands import SetMyCommands`"
msgstr ""
#: ../../api/methods/set_my_commands.rst:30
msgid "alias: :code:`from aiogram.methods import SetMyCommands`"
msgstr ""
#: ../../api/methods/set_my_commands.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/set_my_commands.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,91 @@
# 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-10-01 22:51+0300\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/methods/set_my_default_administrator_rights.rst:3
msgid "setMyDefaultAdministratorRights"
msgstr ""
#: ../../api/methods/set_my_default_administrator_rights.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.set_my_default_administrator_rights.SetMyDefaultAdministratorRights:1
#: of
msgid ""
"Use this method to change the default administrator rights requested by "
"the bot when it's added as an administrator to groups or channels. These "
"rights will be suggested to users, but they are are free to modify the "
"list before adding the bot. Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.set_my_default_administrator_rights.SetMyDefaultAdministratorRights:3
#: of
msgid "Source: https://core.telegram.org/bots/api#setmydefaultadministratorrights"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_my_default_administrator_rights.SetMyDefaultAdministratorRights.rights:1
#: of
msgid ""
"A JSON-serialized object describing new default administrator rights. If "
"not specified, the default administrator rights will be cleared."
msgstr ""
#: ../../docstring
#: aiogram.methods.set_my_default_administrator_rights.SetMyDefaultAdministratorRights.for_channels:1
#: of
msgid ""
"Pass :code:`True` to change the default administrator rights of the bot "
"in channels. Otherwise, the default administrator rights of the bot for "
"groups and supergroups will be changed."
msgstr ""
#: ../../api/methods/set_my_default_administrator_rights.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/set_my_default_administrator_rights.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/set_my_default_administrator_rights.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/set_my_default_administrator_rights.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/set_my_default_administrator_rights.rst:29
msgid ""
":code:`from aiogram.methods.set_my_default_administrator_rights import "
"SetMyDefaultAdministratorRights`"
msgstr ""
#: ../../api/methods/set_my_default_administrator_rights.rst:30
msgid "alias: :code:`from aiogram.methods import SetMyDefaultAdministratorRights`"
msgstr ""
#: ../../api/methods/set_my_default_administrator_rights.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/set_my_default_administrator_rights.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,87 @@
# 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-10-01 22:51+0300\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/methods/set_passport_data_errors.rst:3
msgid "setPassportDataErrors"
msgstr ""
#: ../../api/methods/set_passport_data_errors.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.set_passport_data_errors.SetPassportDataErrors:1 of
msgid ""
"Informs a user that some of the Telegram Passport elements they provided "
"contains errors. The user will not be able to re-submit their Passport to"
" you until the errors are fixed (the contents of the field for which you "
"returned the error must change). Returns :code:`True` on success. Use "
"this if the data submitted by the user doesn't satisfy the standards your"
" service requires for any reason. For example, if a birthday date seems "
"invalid, a submitted document is blurry, a scan shows evidence of "
"tampering, etc. Supply some details in the error message to make sure the"
" user knows how to correct the issues."
msgstr ""
#: aiogram.methods.set_passport_data_errors.SetPassportDataErrors:4 of
msgid "Source: https://core.telegram.org/bots/api#setpassportdataerrors"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_passport_data_errors.SetPassportDataErrors.user_id:1 of
msgid "User identifier"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_passport_data_errors.SetPassportDataErrors.errors:1 of
msgid "A JSON-serialized array describing the errors"
msgstr ""
#: ../../api/methods/set_passport_data_errors.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/set_passport_data_errors.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/set_passport_data_errors.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/set_passport_data_errors.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/set_passport_data_errors.rst:29
msgid ""
":code:`from aiogram.methods.set_passport_data_errors import "
"SetPassportDataErrors`"
msgstr ""
#: ../../api/methods/set_passport_data_errors.rst:30
msgid "alias: :code:`from aiogram.methods import SetPassportDataErrors`"
msgstr ""
#: ../../api/methods/set_passport_data_errors.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/set_passport_data_errors.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,82 @@
# 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-10-01 22:51+0300\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/methods/set_sticker_position_in_set.rst:3
msgid "setStickerPositionInSet"
msgstr ""
#: ../../api/methods/set_sticker_position_in_set.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.set_sticker_position_in_set.SetStickerPositionInSet:1 of
msgid ""
"Use this method to move a sticker in a set created by the bot to a "
"specific position. Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.set_sticker_position_in_set.SetStickerPositionInSet:3 of
msgid "Source: https://core.telegram.org/bots/api#setstickerpositioninset"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_sticker_position_in_set.SetStickerPositionInSet.sticker:1
#: of
msgid "File identifier of the sticker"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_sticker_position_in_set.SetStickerPositionInSet.position:1
#: of
msgid "New sticker position in the set, zero-based"
msgstr ""
#: ../../api/methods/set_sticker_position_in_set.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/set_sticker_position_in_set.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/set_sticker_position_in_set.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/set_sticker_position_in_set.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/set_sticker_position_in_set.rst:29
msgid ""
":code:`from aiogram.methods.set_sticker_position_in_set import "
"SetStickerPositionInSet`"
msgstr ""
#: ../../api/methods/set_sticker_position_in_set.rst:30
msgid "alias: :code:`from aiogram.methods import SetStickerPositionInSet`"
msgstr ""
#: ../../api/methods/set_sticker_position_in_set.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/set_sticker_position_in_set.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,106 @@
# 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-10-01 22:51+0300\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/methods/set_sticker_set_thumb.rst:3
msgid "setStickerSetThumb"
msgstr ""
#: ../../api/methods/set_sticker_set_thumb.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.set_sticker_set_thumb.SetStickerSetThumb:1 of
msgid ""
"Use this method to set the thumbnail of a sticker set. Animated "
"thumbnails can be set for animated sticker sets only. Video thumbnails "
"can be set only for video sticker sets only. Returns :code:`True` on "
"success."
msgstr ""
#: aiogram.methods.set_sticker_set_thumb.SetStickerSetThumb:3 of
msgid "Source: https://core.telegram.org/bots/api#setstickersetthumb"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_sticker_set_thumb.SetStickerSetThumb.name:1 of
msgid "Sticker set name"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_sticker_set_thumb.SetStickerSetThumb.user_id:1 of
msgid "User identifier of the sticker set owner"
msgstr ""
#: ../../docstring
#: aiogram.methods.set_sticker_set_thumb.SetStickerSetThumb.thumb:1 of
msgid ""
"A **PNG** image with the thumbnail, must be up to 128 kilobytes in size "
"and have width and height exactly 100px, or a **TGS** animation with the "
"thumbnail up to 32 kilobytes in size; see "
"`https://core.telegram.org/stickers#animated-sticker-requirements "
"<https://core.telegram.org/stickers#animated-sticker-"
"requirements>`_`https://core.telegram.org/stickers#animated-sticker-"
"requirements <https://core.telegram.org/stickers#animated-sticker-"
"requirements>`_ for animated sticker technical requirements, or a "
"**WEBM** video with the thumbnail up to 32 kilobytes in size; see "
"`https://core.telegram.org/stickers#video-sticker-requirements "
"<https://core.telegram.org/stickers#video-sticker-"
"requirements>`_`https://core.telegram.org/stickers#video-sticker-"
"requirements <https://core.telegram.org/stickers#video-sticker-"
"requirements>`_ for video sticker technical requirements. Pass a "
"*file_id* as a String to send a file that already exists on the Telegram "
"servers, pass an HTTP URL as a String for Telegram to get a file from the"
" Internet, or upload a new one using multipart/form-data. :ref:`More "
"information on Sending Files » <sending-files>`. Animated sticker set "
"thumbnails can't be uploaded via HTTP URL."
msgstr ""
#: ../../api/methods/set_sticker_set_thumb.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/set_sticker_set_thumb.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/set_sticker_set_thumb.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/set_sticker_set_thumb.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/set_sticker_set_thumb.rst:29
msgid ""
":code:`from aiogram.methods.set_sticker_set_thumb import "
"SetStickerSetThumb`"
msgstr ""
#: ../../api/methods/set_sticker_set_thumb.rst:30
msgid "alias: :code:`from aiogram.methods import SetStickerSetThumb`"
msgstr ""
#: ../../api/methods/set_sticker_set_thumb.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/set_sticker_set_thumb.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -0,0 +1,152 @@
# 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-10-01 22:51+0300\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/methods/set_webhook.rst:3
msgid "setWebhook"
msgstr ""
#: ../../api/methods/set_webhook.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.set_webhook.SetWebhook:1 of
msgid ""
"Use this method to specify a URL and receive incoming updates via an "
"outgoing webhook. Whenever there is an update for the bot, we will send "
"an HTTPS POST request to the specified URL, containing a JSON-serialized "
":class:`aiogram.types.update.Update`. In case of an unsuccessful request,"
" we will give up after a reasonable amount of attempts. Returns "
":code:`True` on success. If you'd like to make sure that the webhook was "
"set by you, you can specify secret data in the parameter *secret_token*. "
"If specified, the request will contain a header 'X-Telegram-Bot-Api-"
"Secret-Token' with the secret token as content."
msgstr ""
#: aiogram.methods.set_webhook.SetWebhook:4 of
msgid "**Notes**"
msgstr ""
#: aiogram.methods.set_webhook.SetWebhook:6 of
msgid ""
"**1.** You will not be able to receive updates using "
":class:`aiogram.methods.get_updates.GetUpdates` for as long as an "
"outgoing webhook is set up."
msgstr ""
#: aiogram.methods.set_webhook.SetWebhook:8 of
msgid ""
"**2.** To use a self-signed certificate, you need to upload your `public "
"key certificate <https://core.telegram.org/bots/self-signed>`_ using "
"*certificate* parameter. Please upload as InputFile, sending a String "
"will not work."
msgstr ""
#: aiogram.methods.set_webhook.SetWebhook:10 of
msgid ""
"**3.** Ports currently supported *for webhooks*: **443, 80, 88, 8443**. "
"If you're having any trouble setting up webhooks, please check out this "
"`amazing guide to webhooks <https://core.telegram.org/bots/webhooks>`_."
msgstr ""
#: aiogram.methods.set_webhook.SetWebhook:13 of
msgid "Source: https://core.telegram.org/bots/api#setwebhook"
msgstr ""
#: ../../docstring aiogram.methods.set_webhook.SetWebhook.url:1 of
msgid ""
"HTTPS URL to send updates to. Use an empty string to remove webhook "
"integration"
msgstr ""
#: ../../docstring aiogram.methods.set_webhook.SetWebhook.certificate:1 of
msgid ""
"Upload your public key certificate so that the root certificate in use "
"can be checked. See our `self-signed guide "
"<https://core.telegram.org/bots/self-signed>`_ for details."
msgstr ""
#: ../../docstring aiogram.methods.set_webhook.SetWebhook.ip_address:1 of
msgid ""
"The fixed IP address which will be used to send webhook requests instead "
"of the IP address resolved through DNS"
msgstr ""
#: ../../docstring aiogram.methods.set_webhook.SetWebhook.max_connections:1 of
msgid ""
"The maximum allowed number of simultaneous HTTPS connections to the "
"webhook for update delivery, 1-100. Defaults to *40*. Use lower values to"
" limit the load on your bot's server, and higher values to increase your "
"bot's throughput."
msgstr ""
#: ../../docstring aiogram.methods.set_webhook.SetWebhook.allowed_updates:1 of
msgid ""
"A JSON-serialized list of the update types you want your bot to receive. "
"For example, specify ['message', 'edited_channel_post', 'callback_query']"
" to only receive updates of these types. See "
":class:`aiogram.types.update.Update` for a complete list of available "
"update types. Specify an empty list to receive all update types except "
"*chat_member* (default). If not specified, the previous setting will be "
"used."
msgstr ""
#: ../../docstring
#: aiogram.methods.set_webhook.SetWebhook.drop_pending_updates:1 of
msgid "Pass :code:`True` to drop all pending updates"
msgstr ""
#: ../../docstring aiogram.methods.set_webhook.SetWebhook.secret_token:1 of
msgid ""
"A secret token to be sent in a header 'X-Telegram-Bot-Api-Secret-Token' "
"in every webhook request, 1-256 characters. Only characters :code:`A-Z`, "
":code:`a-z`, :code:`0-9`, :code:`_` and :code:`-` are allowed. The header"
" is useful to ensure that the request comes from a webhook set by you."
msgstr ""
#: ../../api/methods/set_webhook.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/set_webhook.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/set_webhook.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/set_webhook.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/set_webhook.rst:29
msgid ":code:`from aiogram.methods.set_webhook import SetWebhook`"
msgstr ""
#: ../../api/methods/set_webhook.rst:30
msgid "alias: :code:`from aiogram.methods import SetWebhook`"
msgstr ""
#: ../../api/methods/set_webhook.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/set_webhook.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

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