Merge branch 'dev-3.x' into scenes

This commit is contained in:
Alex Root Junior 2023-10-11 02:09:20 +03:00
commit bda7fcd13b
No known key found for this signature in database
GPG key ID: 074C1D455EBEA4AC
384 changed files with 948 additions and 42923 deletions

View file

@ -55,9 +55,13 @@ jobs:
You need to add a brief description of the changes to the `CHANGES` directory.
For example, you can run `towncrier create <issue>.<type>` to create a file in the change directory and then write a description on that file.
Changes file should be named like `<issue or PR number>.<category>.rst`,
example `1234.bugfix.rst` where `1234` is the PR or issue number and `bugfix` is the category.
Read more at [Towncrier docs](https://towncrier.readthedocs.io/en/latest/tutorial.html#creating-news-fragments)
The content of the file should be a brief description of the changes in
the PR in the format of a description of what has been done.
Possible categories are: `feature`, `bugfix`, `doc`, `removal` and `misc`.
- name: Changelog found
if: "success()"

1
CHANGES/1331.misc Normal file
View file

@ -0,0 +1 @@
Prevent update handling task pointers from being garbage collected, backport from 2.x

1
CHANGES/1332.bugfix.rst Normal file
View file

@ -0,0 +1 @@
Fixed ``parse_mode`` in ``send_copy`` helper. Disable by default.

View file

@ -67,7 +67,7 @@ test-coverage-view:
# Docs
# =================================================================================================
locales := en uk_UA
locales := uk_UA
locale_targets := $(addprefix docs-serve-, $(locales))
locales_pot := _build/gettext
docs_dir := docs
@ -78,8 +78,7 @@ docs-gettext:
.PHONY: docs-gettext
docs-serve:
#rm -rf docs/_build
sphinx-autobuild --watch aiogram/ --watch CHANGELOG.rst --watch README.rst docs/ docs/_build/ $(OPTS)
hatch run docs:sphinx-autobuild --watch aiogram/ --watch CHANGELOG.rst --watch README.rst docs/ docs/_build/ $(OPTS)
.PHONY: docs-serve
$(locale_targets): docs-serve-%:

View file

@ -1,2 +1,2 @@
__version__ = "3.1.1"
__version__ = "3.2.0"
__api_version__ = "6.9"

View file

@ -6,7 +6,7 @@ import signal
import warnings
from asyncio import CancelledError, Event, Future, Lock
from contextlib import suppress
from typing import Any, AsyncGenerator, Dict, List, Optional, Union
from typing import Any, AsyncGenerator, Dict, List, Optional, Set, Union
from .. import loggers
from ..client.bot import Bot
@ -95,6 +95,7 @@ class Dispatcher(Router):
self._running_lock = Lock()
self._stop_signal: Optional[Event] = None
self._stopped_signal: Optional[Event] = None
self._handle_update_tasks: Set[asyncio.Task[Any]] = set()
def __getitem__(self, item: str) -> Any:
return self.workflow_data[item]
@ -349,7 +350,9 @@ class Dispatcher(Router):
):
handle_update = self._process_update(bot=bot, update=update, **kwargs)
if handle_as_tasks:
asyncio.create_task(handle_update)
handle_update_task = asyncio.create_task(handle_update)
self._handle_update_tasks.add(handle_update_task)
handle_update_task.add_done_callback(self._handle_update_tasks.discard)
else:
await handle_update
finally:

View file

@ -2803,6 +2803,7 @@ class Message(TelegramObject):
reply_markup: Union[InlineKeyboardMarkup, ReplyKeyboardMarkup, None] = None,
allow_sending_without_reply: Optional[bool] = None,
message_thread_id: Optional[int] = None,
parse_mode: Optional[str] = None,
) -> Union[
ForwardMessage,
SendAnimation,
@ -2837,6 +2838,7 @@ class Message(TelegramObject):
:param reply_markup:
:param allow_sending_without_reply:
:param message_thread_id:
:param parse_mode:
:return:
"""
from ..methods import (
@ -2864,6 +2866,9 @@ class Message(TelegramObject):
"reply_to_message_id": reply_to_message_id,
"message_thread_id": message_thread_id,
"allow_sending_without_reply": allow_sending_without_reply,
# when sending a copy, we don't need any parse mode
# because all entities are already prepared
"parse_mode": parse_mode,
}
if self.text:

View file

@ -2,7 +2,7 @@ import asyncio
import secrets
from abc import ABC, abstractmethod
from asyncio import Transport
from typing import Any, Awaitable, Callable, Dict, Optional, Tuple, cast
from typing import Any, Awaitable, Callable, Dict, Optional, Set, Tuple, cast
from aiohttp import MultipartWriter, web
from aiohttp.abc import Application
@ -98,6 +98,7 @@ class BaseRequestHandler(ABC):
self.dispatcher = dispatcher
self.handle_in_background = handle_in_background
self.data = data
self._background_feed_update_tasks: Set[asyncio.Task[Any]] = set()
def register(self, app: Application, /, path: str, **kwargs: Any) -> None:
"""
@ -139,11 +140,13 @@ class BaseRequestHandler(ABC):
await self.dispatcher.silent_call_request(bot=bot, result=result)
async def _handle_request_background(self, bot: Bot, request: web.Request) -> web.Response:
asyncio.create_task(
feed_update_task = asyncio.create_task(
self._background_feed_update(
bot=bot, update=await request.json(loads=bot.session.json_loads)
)
)
self._background_feed_update_tasks.add(feed_update_task)
feed_update_task.add_done_callback(self._background_feed_update_tasks.discard)
return web.json_response({}, dumps=bot.session.json_dumps)
def _build_response_writer(

View file

@ -1,167 +0,0 @@
# 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: 2023-07-30 18:31+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.12.1\n"
#: ../../api/bot.rst:3
msgid "Bot"
msgstr ""
#: ../../api/bot.rst:5
msgid ""
"Bot instance can be created from :code:`aiogram.Bot` (:code:`from aiogram"
" import Bot`) and you can't use methods without instance of bot with "
"configured token."
msgstr ""
#: ../../api/bot.rst:8
msgid ""
"This class has aliases for all methods and named in "
":code:`lower_camel_case`."
msgstr ""
#: ../../api/bot.rst:10
msgid ""
"For example :code:`sendMessage` named :code:`send_message` and has the "
"same specification with all class-based methods."
msgstr ""
#: ../../api/bot.rst:14
msgid ""
"A full list of methods can be found in the appropriate section of the "
"documentation"
msgstr ""
#: aiogram.client.bot.Bot:1 of
msgid "Bases: :py:class:`object`"
msgstr ""
#: aiogram.client.bot.Bot.__init__:1 of
msgid "Bot class"
msgstr ""
#: aiogram.client.bot.Bot.__init__ aiogram.client.bot.Bot.context
#: aiogram.client.bot.Bot.download aiogram.client.bot.Bot.download_file of
msgid "Parameters"
msgstr ""
#: aiogram.client.bot.Bot.__init__:3 of
msgid "Telegram Bot token `Obtained from @BotFather <https://t.me/BotFather>`_"
msgstr ""
#: aiogram.client.bot.Bot.__init__:4 of
msgid ""
"HTTP Client session (For example AiohttpSession). If not specified it "
"will be automatically created."
msgstr ""
#: aiogram.client.bot.Bot.__init__:6 of
msgid ""
"Default parse mode. If specified it will be propagated into the API "
"methods at runtime."
msgstr ""
#: aiogram.client.bot.Bot.__init__:8 of
msgid ""
"Default disable_web_page_preview mode. If specified it will be propagated"
" into the API methods at runtime."
msgstr ""
#: aiogram.client.bot.Bot.__init__:10 of
msgid ""
"Default protect_content mode. If specified it will be propagated into the"
" API methods at runtime."
msgstr ""
#: aiogram.client.bot.Bot.__init__ of
msgid "Raises"
msgstr ""
#: aiogram.client.bot.Bot.__init__:12 of
msgid "When token has invalid format this exception will be raised"
msgstr ""
#: aiogram.client.bot.Bot.id:1 of
msgid "Get bot ID from token"
msgstr ""
#: aiogram.client.bot.Bot.context aiogram.client.bot.Bot.id
#: aiogram.client.bot.Bot.me of
msgid "Returns"
msgstr ""
#: aiogram.client.bot.Bot.context:1 of
msgid "Generate bot context"
msgstr ""
#: aiogram.client.bot.Bot.context:3 of
msgid "close session on exit"
msgstr ""
#: aiogram.client.bot.Bot.me:1 of
msgid "Cached alias for getMe method"
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_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 ""
#: 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 ""
#~ msgid ""
#~ "Bases: :py:class:`~aiogram.utils.mixins.ContextInstanceMixin`\\"
#~ " [:py:class:`Bot`]"
#~ msgstr ""

View file

@ -1,187 +0,0 @@
# 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-12-30 22:28+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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.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 ""
#~ msgid "Bot class"
#~ msgstr ""

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,30 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-06 16:52+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.12.1\n"
#: ../../api/enums/currency.rst:3
msgid "Currency"
msgstr ""
#: aiogram.enums.currency.Currency:1 of
msgid "Currencies supported by Telegram Bot API"
msgstr ""
#: aiogram.enums.currency.Currency:3 of
msgid "Source: https://core.telegram.org/bots/payments#supported-currencies"
msgstr ""

View file

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

View file

@ -1,30 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-07-30 18:31+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.12.1\n"
#: ../../api/enums/encrypted_passport_element.rst:3
msgid "EncryptedPassportElement"
msgstr ""
#: aiogram.enums.encrypted_passport_element.EncryptedPassportElement:1 of
msgid "This object represents type of encrypted passport element."
msgstr ""
#: aiogram.enums.encrypted_passport_element.EncryptedPassportElement:3 of
msgid "Source: https://core.telegram.org/bots/api#encryptedpassportelement"
msgstr ""

View file

@ -1,29 +0,0 @@
# 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-12-30 22:28+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/enums/index.rst:3
msgid "Enums"
msgstr ""
#: ../../api/enums/index.rst:5
msgid "Here is list of all available enums:"
msgstr ""
#~ msgid "Types"
#~ msgstr ""

View file

@ -1,36 +0,0 @@
# 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: 2023-03-11 01:52+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.11.0\n"
#: ../../api/enums/inline_query_result_type.rst:3
msgid "InlineQueryResultType"
msgstr ""
#: aiogram.enums.inline_query_result_type.InlineQueryResultType:1 of
msgid "Type of inline query result"
msgstr ""
#: aiogram.enums.inline_query_result_type.InlineQueryResultType:3 of
msgid "Source: https://core.telegram.org/bots/api#inlinequeryresult"
msgstr ""
#~ msgid "The part of the face relative to which the mask should be placed."
#~ msgstr ""
#~ msgid "Source: https://core.telegram.org/bots/api#maskposition"
#~ msgstr ""

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,30 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-07-30 18:31+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.12.1\n"
#: ../../api/enums/passport_element_error_type.rst:3
msgid "PassportElementErrorType"
msgstr ""
#: aiogram.enums.passport_element_error_type.PassportElementErrorType:1 of
msgid "This object represents a passport element error type."
msgstr ""
#: aiogram.enums.passport_element_error_type.PassportElementErrorType:3 of
msgid "Source: https://core.telegram.org/bots/api#passportelementerror"
msgstr ""

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,34 +0,0 @@
# 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

@ -1,149 +0,0 @@
# 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: 2023-03-11 01:52+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.11.0\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. The "
"format of the added sticker must match the format of the other stickers "
"in the set. Emoji sticker sets can have up to 200 stickers. Animated and "
"video 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.sticker:1
#: of
msgid ""
"A JSON-serialized object with information about the added sticker. If "
"exactly the same sticker had already been added to the set, then the set "
"isn't changed."
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 ""
#~ 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 ""
#~ msgid "One or more emoji corresponding to the sticker"
#~ msgstr ""
#~ 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 ""
#~ 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 ""
#~ 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 ""
#~ msgid ""
#~ "A JSON-serialized object for position"
#~ " where the mask should be placed "
#~ "on faces"
#~ msgstr ""

View file

@ -1,141 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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/features#inline-keyboards>`_. "
"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 ""
#: ../../api/methods/answer_callback_query.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/answer_callback_query.rst:50
msgid ":meth:`aiogram.types.callback_query.CallbackQuery.answer`"
msgstr ""
#~ msgid ""
#~ "Use this method to send answers to"
#~ " callback queries sent from `inline "
#~ "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 ""

View file

@ -1,164 +0,0 @@
# 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: 2023-07-02 15:10+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.12.1\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.button:1 of
msgid ""
"A JSON-serialized object describing a button to be shown above inline "
"query results"
msgstr ""
#: ../../docstring
#: aiogram.methods.answer_inline_query.AnswerInlineQuery.switch_pm_parameter:1
#: of
msgid ""
"`Deep-linking <https://core.telegram.org/bots/features#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 ""
#: ../../docstring
#: aiogram.methods.answer_inline_query.AnswerInlineQuery.switch_pm_parameter:3
#: aiogram.methods.answer_inline_query.AnswerInlineQuery.switch_pm_text:3 of
msgid "https://core.telegram.org/bots/api-changelog#april-21-2023"
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 ""
#: ../../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 ""
#: ../../api/methods/answer_inline_query.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/answer_inline_query.rst:50
msgid ":meth:`aiogram.types.inline_query.InlineQuery.answer`"
msgstr ""
#~ msgid ""
#~ "`Deep-linking <https://core.telegram.org/bots#deep-"
#~ "linking>`_ parameter for the /start "
#~ "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 ""
#~ 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 ""

View file

@ -1,108 +0,0 @@
# 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: 2023-08-06 16:52+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.12.1\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:15
msgid "Usage"
msgstr ""
#: ../../api/methods/answer_pre_checkout_query.rst:18
msgid "As bot method"
msgstr ""
#: ../../api/methods/answer_pre_checkout_query.rst:26
msgid "Method as object"
msgstr ""
#: ../../api/methods/answer_pre_checkout_query.rst:28
msgid "Imports:"
msgstr ""
#: ../../api/methods/answer_pre_checkout_query.rst:30
msgid ""
":code:`from aiogram.methods.answer_pre_checkout_query import "
"AnswerPreCheckoutQuery`"
msgstr ""
#: ../../api/methods/answer_pre_checkout_query.rst:31
msgid "alias: :code:`from aiogram.methods import AnswerPreCheckoutQuery`"
msgstr ""
#: ../../api/methods/answer_pre_checkout_query.rst:34
msgid "With specific bot"
msgstr ""
#: ../../api/methods/answer_pre_checkout_query.rst:41
msgid "As reply into Webhook in handler"
msgstr ""
#: ../../api/methods/answer_pre_checkout_query.rst:49
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/answer_pre_checkout_query.rst:51
msgid ":meth:`aiogram.types.pre_checkout_query.PreCheckoutQuery.answer`"
msgstr ""

View file

@ -1,112 +0,0 @@
# 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: 2023-08-06 16:52+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.12.1\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:15
msgid "Usage"
msgstr ""
#: ../../api/methods/answer_shipping_query.rst:18
msgid "As bot method"
msgstr ""
#: ../../api/methods/answer_shipping_query.rst:26
msgid "Method as object"
msgstr ""
#: ../../api/methods/answer_shipping_query.rst:28
msgid "Imports:"
msgstr ""
#: ../../api/methods/answer_shipping_query.rst:30
msgid ""
":code:`from aiogram.methods.answer_shipping_query import "
"AnswerShippingQuery`"
msgstr ""
#: ../../api/methods/answer_shipping_query.rst:31
msgid "alias: :code:`from aiogram.methods import AnswerShippingQuery`"
msgstr ""
#: ../../api/methods/answer_shipping_query.rst:34
msgid "With specific bot"
msgstr ""
#: ../../api/methods/answer_shipping_query.rst:41
msgid "As reply into Webhook in handler"
msgstr ""
#: ../../api/methods/answer_shipping_query.rst:49
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/answer_shipping_query.rst:51
msgid ":meth:`aiogram.types.shipping_query.ShippingQuery.answer`"
msgstr ""

View file

@ -1,82 +0,0 @@
# 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

@ -1,93 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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 ""
#: ../../api/methods/approve_chat_join_request.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/approve_chat_join_request.rst:50
msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.approve`"
msgstr ""

View file

@ -1,108 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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 ""
#: ../../api/methods/ban_chat_member.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/ban_chat_member.rst:50
msgid ":meth:`aiogram.types.chat.Chat.ban`"
msgstr ""

View file

@ -1,93 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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 ""
#: ../../api/methods/ban_chat_sender_chat.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/ban_chat_sender_chat.rst:50
msgid ":meth:`aiogram.types.chat.Chat.ban_sender_chat`"
msgstr ""

View file

@ -1,71 +0,0 @@
# 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

@ -1,82 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-06 14:18+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/methods/close_forum_topic.rst:3
msgid "closeForumTopic"
msgstr ""
#: ../../api/methods/close_forum_topic.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.close_forum_topic.CloseForumTopic:1 of
msgid ""
"Use this method to close an open topic in a forum supergroup chat. The "
"bot must be an administrator in the chat for this to work and must have "
"the *can_manage_topics* administrator rights, unless it is the creator of"
" the topic. Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.close_forum_topic.CloseForumTopic:3 of
msgid "Source: https://core.telegram.org/bots/api#closeforumtopic"
msgstr ""
#: ../../docstring aiogram.methods.close_forum_topic.CloseForumTopic.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.close_forum_topic.CloseForumTopic.message_thread_id:1 of
msgid "Unique identifier for the target message thread of the forum topic"
msgstr ""
#: ../../api/methods/close_forum_topic.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/close_forum_topic.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/close_forum_topic.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/close_forum_topic.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/close_forum_topic.rst:29
msgid ":code:`from aiogram.methods.close_forum_topic import CloseForumTopic`"
msgstr ""
#: ../../api/methods/close_forum_topic.rst:30
msgid "alias: :code:`from aiogram.methods import CloseForumTopic`"
msgstr ""
#: ../../api/methods/close_forum_topic.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/close_forum_topic.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -1,80 +0,0 @@
# 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-12-30 22:28+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/methods/close_general_forum_topic.rst:3
msgid "closeGeneralForumTopic"
msgstr ""
#: ../../api/methods/close_general_forum_topic.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.close_general_forum_topic.CloseGeneralForumTopic:1 of
msgid ""
"Use this method to close an open 'General' topic in a forum supergroup "
"chat. The bot must be an administrator in the chat for this to work and "
"must have the *can_manage_topics* administrator rights. Returns "
":code:`True` on success."
msgstr ""
#: aiogram.methods.close_general_forum_topic.CloseGeneralForumTopic:3 of
msgid "Source: https://core.telegram.org/bots/api#closegeneralforumtopic"
msgstr ""
#: ../../docstring
#: aiogram.methods.close_general_forum_topic.CloseGeneralForumTopic.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/close_general_forum_topic.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/close_general_forum_topic.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/close_general_forum_topic.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/close_general_forum_topic.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/close_general_forum_topic.rst:29
msgid ""
":code:`from aiogram.methods.close_general_forum_topic import "
"CloseGeneralForumTopic`"
msgstr ""
#: ../../api/methods/close_general_forum_topic.rst:30
msgid "alias: :code:`from aiogram.methods import CloseGeneralForumTopic`"
msgstr ""
#: ../../api/methods/close_general_forum_topic.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/close_general_forum_topic.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -1,169 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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.message_thread_id:1
#: of
msgid ""
"Unique identifier for the target message thread (topic) of the forum; for"
" forum supergroups only"
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/features#inline-keyboards>`_, "
"`custom reply keyboard "
"<https://core.telegram.org/bots/features#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 ""
#: ../../api/methods/copy_message.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/copy_message.rst:50
msgid ":meth:`aiogram.types.message.Message.copy_to`"
msgstr ""
#~ msgid ""
#~ "Additional interface options. A JSON-"
#~ "serialized object for an `inline "
#~ "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 ""

View file

@ -1,118 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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 ""
#: ../../api/methods/create_chat_invite_link.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/create_chat_invite_link.rst:50
msgid ":meth:`aiogram.types.chat.Chat.create_invite_link`"
msgstr ""

View file

@ -1,106 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/methods/create_forum_topic.rst:3
msgid "createForumTopic"
msgstr ""
#: ../../api/methods/create_forum_topic.rst:5
msgid "Returns: :obj:`ForumTopic`"
msgstr ""
#: aiogram.methods.create_forum_topic.CreateForumTopic:1 of
msgid ""
"Use this method to create a topic in a forum supergroup chat. The bot "
"must be an administrator in the chat for this to work and must have the "
"*can_manage_topics* administrator rights. Returns information about the "
"created topic as a :class:`aiogram.types.forum_topic.ForumTopic` object."
msgstr ""
#: aiogram.methods.create_forum_topic.CreateForumTopic:3 of
msgid "Source: https://core.telegram.org/bots/api#createforumtopic"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_forum_topic.CreateForumTopic.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.create_forum_topic.CreateForumTopic.name:1
#: of
msgid "Topic name, 1-128 characters"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_forum_topic.CreateForumTopic.icon_color:1 of
msgid ""
"Color of the topic icon in RGB format. Currently, must be one of 7322096 "
"(0x6FB9F0), 16766590 (0xFFD67E), 13338331 (0xCB86DB), 9367192 (0x8EEE98),"
" 16749490 (0xFF93B2), or 16478047 (0xFB6F5F)"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_forum_topic.CreateForumTopic.icon_custom_emoji_id:1
#: of
msgid ""
"Unique identifier of the custom emoji shown as the topic icon. Use "
":class:`aiogram.methods.get_forum_topic_icon_stickers.GetForumTopicIconStickers`"
" to get all allowed custom emoji identifiers."
msgstr ""
#: ../../api/methods/create_forum_topic.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/create_forum_topic.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/create_forum_topic.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/create_forum_topic.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/create_forum_topic.rst:29
msgid ":code:`from aiogram.methods.create_forum_topic import CreateForumTopic`"
msgstr ""
#: ../../api/methods/create_forum_topic.rst:30
msgid "alias: :code:`from aiogram.methods import CreateForumTopic`"
msgstr ""
#: ../../api/methods/create_forum_topic.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/create_forum_topic.rst:40
msgid "As reply into Webhook in handler"
msgstr ""
#~ msgid ""
#~ "Color of the topic icon in RGB "
#~ "format. Currently, must be one of "
#~ "0x6FB9F0, 0xFFD67E, 0xCB86DB, 0x8EEE98, "
#~ "0xFF93B2, or 0xFB6F5F"
#~ msgstr ""

View file

@ -1,207 +0,0 @@
# 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

@ -1,190 +0,0 @@
# 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: 2023-03-11 01:52+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.11.0\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. 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.stickers:1 of
msgid ""
"A JSON-serialized list of 1-50 initial stickers to be added to the "
"sticker set"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_new_sticker_set.CreateNewStickerSet.sticker_format:1
#: of
msgid ""
"Format of stickers in the set, must be one of 'static', 'animated', "
"'video'"
msgstr ""
#: ../../docstring
#: aiogram.methods.create_new_sticker_set.CreateNewStickerSet.sticker_type:1 of
msgid ""
"Type of stickers in the set, pass 'regular', 'mask', or 'custom_emoji'. "
"By default, a regular sticker set is created."
msgstr ""
#: ../../docstring
#: aiogram.methods.create_new_sticker_set.CreateNewStickerSet.needs_repainting:1
#: of
msgid ""
"Pass :code:`True` if stickers in the sticker set must be repainted to the"
" color of text when used in messages, the accent color if used as emoji "
"status, white on chat photos, or another appropriate color based on "
"context; for custom emoji sticker sets only"
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 ""
#~ 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 ""
#~ msgid "One or more emoji corresponding to the sticker"
#~ msgstr ""
#~ 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 ""
#~ 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 ""
#~ 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 ""
#~ 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 ""
#~ msgid ""
#~ "A JSON-serialized object for position"
#~ " where the mask should be placed "
#~ "on faces"
#~ msgstr ""

View file

@ -1,93 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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 ""
#: ../../api/methods/decline_chat_join_request.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/decline_chat_join_request.rst:50
msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.decline`"
msgstr ""

View file

@ -1,85 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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 ""
#: ../../api/methods/delete_chat_photo.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/delete_chat_photo.rst:50
msgid ":meth:`aiogram.types.chat.Chat.delete_photo`"
msgstr ""

View file

@ -1,89 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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 ""
#: ../../api/methods/delete_chat_sticker_set.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/delete_chat_sticker_set.rst:50
msgid ":meth:`aiogram.types.chat.Chat.delete_sticker_set`"
msgstr ""

View file

@ -1,82 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-06 14:18+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/methods/delete_forum_topic.rst:3
msgid "deleteForumTopic"
msgstr ""
#: ../../api/methods/delete_forum_topic.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.delete_forum_topic.DeleteForumTopic:1 of
msgid ""
"Use this method to delete a forum topic along with all its messages in a "
"forum supergroup chat. The bot must be an administrator in the chat for "
"this to work and must have the *can_delete_messages* administrator "
"rights. Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.delete_forum_topic.DeleteForumTopic:3 of
msgid "Source: https://core.telegram.org/bots/api#deleteforumtopic"
msgstr ""
#: ../../docstring
#: aiogram.methods.delete_forum_topic.DeleteForumTopic.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.delete_forum_topic.DeleteForumTopic.message_thread_id:1 of
msgid "Unique identifier for the target message thread of the forum topic"
msgstr ""
#: ../../api/methods/delete_forum_topic.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/delete_forum_topic.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/delete_forum_topic.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/delete_forum_topic.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/delete_forum_topic.rst:29
msgid ":code:`from aiogram.methods.delete_forum_topic import DeleteForumTopic`"
msgstr ""
#: ../../api/methods/delete_forum_topic.rst:30
msgid "alias: :code:`from aiogram.methods import DeleteForumTopic`"
msgstr ""
#: ../../api/methods/delete_forum_topic.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/delete_forum_topic.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -1,138 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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 ""
"Service messages about a supergroup, channel, or forum topic creation "
"can't be deleted."
msgstr ""
#: aiogram.methods.delete_message.DeleteMessage:7 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:9 of
msgid ""
"Bots can delete outgoing messages in private chats, groups, and "
"supergroups."
msgstr ""
#: aiogram.methods.delete_message.DeleteMessage:11 of
msgid "Bots can delete incoming messages in private chats."
msgstr ""
#: aiogram.methods.delete_message.DeleteMessage:13 of
msgid ""
"Bots granted *can_post_messages* permissions can delete outgoing messages"
" in channels."
msgstr ""
#: aiogram.methods.delete_message.DeleteMessage:15 of
msgid ""
"If the bot is an administrator of a group, it can delete any message "
"there."
msgstr ""
#: aiogram.methods.delete_message.DeleteMessage:17 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:19 of
msgid "Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.delete_message.DeleteMessage:21 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 ""
#: ../../api/methods/delete_message.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/delete_message.rst:50
msgid ":meth:`aiogram.types.message.Message.delete`"
msgstr ""
#: ../../api/methods/delete_message.rst:51
msgid ":meth:`aiogram.types.chat.Chat.delete_message`"
msgstr ""

View file

@ -1,86 +0,0 @@
# 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

@ -1,83 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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 ""
#: ../../api/methods/delete_sticker_from_set.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/delete_sticker_from_set.rst:50
msgid ":meth:`aiogram.types.sticker.Sticker.delete_from_set`"
msgstr ""

View file

@ -1,73 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-11 01:52+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.11.0\n"
#: ../../api/methods/delete_sticker_set.rst:3
msgid "deleteStickerSet"
msgstr ""
#: ../../api/methods/delete_sticker_set.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.delete_sticker_set.DeleteStickerSet:1 of
msgid ""
"Use this method to delete a sticker set that was created by the bot. "
"Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.delete_sticker_set.DeleteStickerSet:3 of
msgid "Source: https://core.telegram.org/bots/api#deletestickerset"
msgstr ""
#: ../../docstring aiogram.methods.delete_sticker_set.DeleteStickerSet.name:1
#: of
msgid "Sticker set name"
msgstr ""
#: ../../api/methods/delete_sticker_set.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/delete_sticker_set.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/delete_sticker_set.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/delete_sticker_set.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/delete_sticker_set.rst:29
msgid ":code:`from aiogram.methods.delete_sticker_set import DeleteStickerSet`"
msgstr ""
#: ../../api/methods/delete_sticker_set.rst:30
msgid "alias: :code:`from aiogram.methods import DeleteStickerSet`"
msgstr ""
#: ../../api/methods/delete_sticker_set.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/delete_sticker_set.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -1,74 +0,0 @@
# 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

@ -1,118 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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 ""
#: ../../api/methods/edit_chat_invite_link.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/edit_chat_invite_link.rst:50
msgid ":meth:`aiogram.types.chat.Chat.edit_invite_link`"
msgstr ""

View file

@ -1,96 +0,0 @@
# 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: 2023-01-07 23:01+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/methods/edit_forum_topic.rst:3
msgid "editForumTopic"
msgstr ""
#: ../../api/methods/edit_forum_topic.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.edit_forum_topic.EditForumTopic:1 of
msgid ""
"Use this method to edit name and icon of a topic in a forum supergroup "
"chat. The bot must be an administrator in the chat for this to work and "
"must have *can_manage_topics* administrator rights, unless it is the "
"creator of the topic. Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.edit_forum_topic.EditForumTopic:3 of
msgid "Source: https://core.telegram.org/bots/api#editforumtopic"
msgstr ""
#: ../../docstring aiogram.methods.edit_forum_topic.EditForumTopic.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.edit_forum_topic.EditForumTopic.message_thread_id:1 of
msgid "Unique identifier for the target message thread of the forum topic"
msgstr ""
#: ../../docstring aiogram.methods.edit_forum_topic.EditForumTopic.name:1 of
msgid ""
"New topic name, 0-128 characters. If not specified or empty, the current "
"name of the topic will be kept"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_forum_topic.EditForumTopic.icon_custom_emoji_id:1 of
msgid ""
"New unique identifier of the custom emoji shown as the topic icon. Use "
":class:`aiogram.methods.get_forum_topic_icon_stickers.GetForumTopicIconStickers`"
" to get all allowed custom emoji identifiers. Pass an empty string to "
"remove the icon. If not specified, the current icon will be kept"
msgstr ""
#: ../../api/methods/edit_forum_topic.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/edit_forum_topic.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/edit_forum_topic.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/edit_forum_topic.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/edit_forum_topic.rst:29
msgid ":code:`from aiogram.methods.edit_forum_topic import EditForumTopic`"
msgstr ""
#: ../../api/methods/edit_forum_topic.rst:30
msgid "alias: :code:`from aiogram.methods import EditForumTopic`"
msgstr ""
#: ../../api/methods/edit_forum_topic.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/edit_forum_topic.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -1,84 +0,0 @@
# 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-12-30 22:28+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/methods/edit_general_forum_topic.rst:3
msgid "editGeneralForumTopic"
msgstr ""
#: ../../api/methods/edit_general_forum_topic.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.edit_general_forum_topic.EditGeneralForumTopic:1 of
msgid ""
"Use this method to edit the name of the 'General' topic in a forum "
"supergroup chat. The bot must be an administrator in the chat for this to"
" work and must have *can_manage_topics* administrator rights. Returns "
":code:`True` on success."
msgstr ""
#: aiogram.methods.edit_general_forum_topic.EditGeneralForumTopic:3 of
msgid "Source: https://core.telegram.org/bots/api#editgeneralforumtopic"
msgstr ""
#: ../../docstring
#: aiogram.methods.edit_general_forum_topic.EditGeneralForumTopic.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.edit_general_forum_topic.EditGeneralForumTopic.name:1 of
msgid "New topic name, 1-128 characters"
msgstr ""
#: ../../api/methods/edit_general_forum_topic.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/edit_general_forum_topic.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/edit_general_forum_topic.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/edit_general_forum_topic.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/edit_general_forum_topic.rst:29
msgid ""
":code:`from aiogram.methods.edit_general_forum_topic import "
"EditGeneralForumTopic`"
msgstr ""
#: ../../api/methods/edit_general_forum_topic.rst:30
msgid "alias: :code:`from aiogram.methods import EditGeneralForumTopic`"
msgstr ""
#: ../../api/methods/edit_general_forum_topic.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/edit_general_forum_topic.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -1,138 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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/features#inline-keyboards>`_."
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 ""
#: ../../api/methods/edit_message_caption.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/edit_message_caption.rst:50
msgid ":meth:`aiogram.types.message.Message.edit_caption`"
msgstr ""
#~ msgid ""
#~ "A JSON-serialized object for an "
#~ "`inline keyboard <https://core.telegram.org/bots"
#~ "#inline-keyboards-and-on-the-fly-"
#~ "updating>`_."
#~ msgstr ""

View file

@ -1,160 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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/features#inline-keyboards>`_."
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 ""
#: ../../api/methods/edit_message_live_location.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/edit_message_live_location.rst:50
msgid ":meth:`aiogram.types.message.Message.edit_live_location`"
msgstr ""
#~ msgid ""
#~ "A JSON-serialized object for a new"
#~ " `inline keyboard <https://core.telegram.org/bots"
#~ "#inline-keyboards-and-on-the-fly-"
#~ "updating>`_."
#~ msgstr ""
#~ msgid "As message method"
#~ msgstr ""

View file

@ -1,126 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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/features#inline-keyboards>`_."
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 ""
#: ../../api/methods/edit_message_media.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/edit_message_media.rst:50
msgid ":meth:`aiogram.types.message.Message.edit_media`"
msgstr ""
#~ msgid ""
#~ "A JSON-serialized object for a new"
#~ " `inline keyboard <https://core.telegram.org/bots"
#~ "#inline-keyboards-and-on-the-fly-"
#~ "updating>`_."
#~ msgstr ""
#~ msgid "As message method"
#~ msgstr ""

View file

@ -1,124 +0,0 @@
# 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: 2023-08-06 16:52+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.12.1\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/features#inline-keyboards>`_."
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:15
msgid "Usage"
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:18
msgid "As bot method"
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:26
msgid "Method as object"
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:28
msgid "Imports:"
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:30
msgid ""
":code:`from aiogram.methods.edit_message_reply_markup import "
"EditMessageReplyMarkup`"
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:31
msgid "alias: :code:`from aiogram.methods import EditMessageReplyMarkup`"
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:34
msgid "With specific bot"
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:41
msgid "As reply into Webhook in handler"
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:49
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:51
msgid ":meth:`aiogram.types.message.Message.edit_reply_markup`"
msgstr ""
#: ../../api/methods/edit_message_reply_markup.rst:52
msgid ":meth:`aiogram.types.message.Message.delete_reply_markup`"
msgstr ""
#~ msgid ""
#~ "A JSON-serialized object for an "
#~ "`inline keyboard <https://core.telegram.org/bots"
#~ "#inline-keyboards-and-on-the-fly-"
#~ "updating>`_."
#~ msgstr ""

View file

@ -1,140 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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/features#inline-keyboards>`_."
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 ""
#: ../../api/methods/edit_message_text.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/edit_message_text.rst:50
msgid ":meth:`aiogram.types.message.Message.edit_text`"
msgstr ""
#~ msgid ""
#~ "A JSON-serialized object for an "
#~ "`inline keyboard <https://core.telegram.org/bots"
#~ "#inline-keyboards-and-on-the-fly-"
#~ "updating>`_."
#~ msgstr ""

View file

@ -1,101 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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 ""
#: ../../api/methods/export_chat_invite_link.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/export_chat_invite_link.rst:50
msgid ":meth:`aiogram.types.chat.Chat.export_invite_link`"
msgstr ""

View file

@ -1,117 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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.message_thread_id:1 of
msgid ""
"Unique identifier for the target message thread (topic) of the forum; for"
" forum supergroups only"
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 ""
#: ../../api/methods/forward_message.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/forward_message.rst:50
msgid ":meth:`aiogram.types.message.Message.forward`"
msgstr ""
#~ msgid "As message method"
#~ msgstr ""

View file

@ -1,72 +0,0 @@
# 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

@ -1,85 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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 ""
#: ../../api/methods/get_chat_administrators.rst:43
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/get_chat_administrators.rst:45
msgid ":meth:`aiogram.types.chat.Chat.get_administrators`"
msgstr ""

View file

@ -1,97 +0,0 @@
# 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: 2023-03-11 01:52+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.11.0\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. The method "
"is only guaranteed to work for other users if the bot is an administrator"
" in the 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 ""
#: ../../api/methods/get_chat_member.rst:43
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/get_chat_member.rst:45
msgid ":meth:`aiogram.types.chat.Chat.get_member`"
msgstr ""
#~ msgid ""
#~ "Use this method to get information "
#~ "about a member of a chat. The "
#~ "method is guaranteed to work for "
#~ "other users, only if the bot is"
#~ " an administrator in the chat. "
#~ "Returns a :class:`aiogram.types.chat_member.ChatMember`"
#~ " object on success."
#~ msgstr ""

View file

@ -1,81 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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 ""
#: ../../api/methods/get_chat_member_count.rst:43
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/get_chat_member_count.rst:45
msgid ":meth:`aiogram.types.chat.Chat.get_member_count`"
msgstr ""

View file

@ -1,72 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/methods/get_chat_members_count.rst:3
msgid "getChatMembersCount"
msgstr ""
#: ../../api/methods/get_chat_members_count.rst:5
msgid "Returns: :obj:`int`"
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 ""
#~ msgid ""
#~ "Use this method to get the number"
#~ " of members in a chat. Returns "
#~ "*Int* on success."
#~ msgstr ""
#~ msgid "Source: https://core.telegram.org/bots/api#getchatmembercount"
#~ msgstr ""
#~ msgid ""
#~ "Unique identifier for the target chat"
#~ " or username of the target supergroup"
#~ " or channel (in the format "
#~ ":code:`@channelusername`)"
#~ msgstr ""

View file

@ -1,77 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-06 14:18+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/methods/get_chat_menu_button.rst:3
msgid "getChatMenuButton"
msgstr ""
#: ../../api/methods/get_chat_menu_button.rst:5
msgid ""
"Returns: :obj:`Union[MenuButtonDefault, MenuButtonWebApp, "
"MenuButtonCommands]`"
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 ""
#~ msgid "Returns: :obj:`MenuButton`"
#~ msgstr ""

View file

@ -1,75 +0,0 @@
# 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

@ -1,77 +0,0 @@
# 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

@ -1,67 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-06 14:18+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/methods/get_forum_topic_icon_stickers.rst:3
msgid "getForumTopicIconStickers"
msgstr ""
#: ../../api/methods/get_forum_topic_icon_stickers.rst:5
msgid "Returns: :obj:`List[Sticker]`"
msgstr ""
#: aiogram.methods.get_forum_topic_icon_stickers.GetForumTopicIconStickers:1 of
msgid ""
"Use this method to get custom emoji stickers, which can be used as a "
"forum topic icon by any user. Requires no parameters. Returns an Array of"
" :class:`aiogram.types.sticker.Sticker` objects."
msgstr ""
#: aiogram.methods.get_forum_topic_icon_stickers.GetForumTopicIconStickers:3 of
msgid "Source: https://core.telegram.org/bots/api#getforumtopiciconstickers"
msgstr ""
#: ../../api/methods/get_forum_topic_icon_stickers.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_forum_topic_icon_stickers.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_forum_topic_icon_stickers.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_forum_topic_icon_stickers.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_forum_topic_icon_stickers.rst:29
msgid ""
":code:`from aiogram.methods.get_forum_topic_icon_stickers import "
"GetForumTopicIconStickers`"
msgstr ""
#: ../../api/methods/get_forum_topic_icon_stickers.rst:30
msgid "alias: :code:`from aiogram.methods import GetForumTopicIconStickers`"
msgstr ""
#: ../../api/methods/get_forum_topic_icon_stickers.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -1,100 +0,0 @@
# 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

@ -1,65 +0,0 @@
# 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

@ -1,77 +0,0 @@
# 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

@ -1,79 +0,0 @@
# 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

@ -1,70 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-11 01:52+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.11.0\n"
#: ../../api/methods/get_my_description.rst:3
msgid "getMyDescription"
msgstr ""
#: ../../api/methods/get_my_description.rst:5
msgid "Returns: :obj:`BotDescription`"
msgstr ""
#: aiogram.methods.get_my_description.GetMyDescription:1 of
msgid ""
"Use this method to get the current bot description for the given user "
"language. Returns :class:`aiogram.types.bot_description.BotDescription` "
"on success."
msgstr ""
#: aiogram.methods.get_my_description.GetMyDescription:3 of
msgid "Source: https://core.telegram.org/bots/api#getmydescription"
msgstr ""
#: ../../docstring
#: aiogram.methods.get_my_description.GetMyDescription.language_code:1 of
msgid "A two-letter ISO 639-1 language code or an empty string"
msgstr ""
#: ../../api/methods/get_my_description.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_my_description.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_my_description.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_my_description.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_my_description.rst:29
msgid ":code:`from aiogram.methods.get_my_description import GetMyDescription`"
msgstr ""
#: ../../api/methods/get_my_description.rst:30
msgid "alias: :code:`from aiogram.methods import GetMyDescription`"
msgstr ""
#: ../../api/methods/get_my_description.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -1,68 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-07-02 15:10+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.12.1\n"
#: ../../api/methods/get_my_name.rst:3
msgid "getMyName"
msgstr ""
#: ../../api/methods/get_my_name.rst:5
msgid "Returns: :obj:`BotName`"
msgstr ""
#: aiogram.methods.get_my_name.GetMyName:1 of
msgid ""
"Use this method to get the current bot name for the given user language. "
"Returns :class:`aiogram.types.bot_name.BotName` on success."
msgstr ""
#: aiogram.methods.get_my_name.GetMyName:3 of
msgid "Source: https://core.telegram.org/bots/api#getmyname"
msgstr ""
#: ../../docstring aiogram.methods.get_my_name.GetMyName.language_code:1 of
msgid "A two-letter ISO 639-1 language code or an empty string"
msgstr ""
#: ../../api/methods/get_my_name.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_my_name.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_my_name.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_my_name.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_my_name.rst:29
msgid ":code:`from aiogram.methods.get_my_name import GetMyName`"
msgstr ""
#: ../../api/methods/get_my_name.rst:30
msgid "alias: :code:`from aiogram.methods import GetMyName`"
msgstr ""
#: ../../api/methods/get_my_name.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -1,74 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-11 01:52+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.11.0\n"
#: ../../api/methods/get_my_short_description.rst:3
msgid "getMyShortDescription"
msgstr ""
#: ../../api/methods/get_my_short_description.rst:5
msgid "Returns: :obj:`BotShortDescription`"
msgstr ""
#: aiogram.methods.get_my_short_description.GetMyShortDescription:1 of
msgid ""
"Use this method to get the current bot short description for the given "
"user language. Returns "
":class:`aiogram.types.bot_short_description.BotShortDescription` on "
"success."
msgstr ""
#: aiogram.methods.get_my_short_description.GetMyShortDescription:3 of
msgid "Source: https://core.telegram.org/bots/api#getmyshortdescription"
msgstr ""
#: ../../docstring
#: aiogram.methods.get_my_short_description.GetMyShortDescription.language_code:1
#: of
msgid "A two-letter ISO 639-1 language code or an empty string"
msgstr ""
#: ../../api/methods/get_my_short_description.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/get_my_short_description.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/get_my_short_description.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/get_my_short_description.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/get_my_short_description.rst:29
msgid ""
":code:`from aiogram.methods.get_my_short_description import "
"GetMyShortDescription`"
msgstr ""
#: ../../api/methods/get_my_short_description.rst:30
msgid "alias: :code:`from aiogram.methods import GetMyShortDescription`"
msgstr ""
#: ../../api/methods/get_my_short_description.rst:33
msgid "With specific bot"
msgstr ""

View file

@ -1,68 +0,0 @@
# 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

@ -1,133 +0,0 @@
# 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: 2023-07-02 15:10+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.12.1\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 be 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 ""
#~ 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 ""

View file

@ -1,93 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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 ""
#: ../../api/methods/get_user_profile_photos.rst:43
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/get_user_profile_photos.rst:45
msgid ":meth:`aiogram.types.user.User.get_profile_photos`"
msgstr ""

View file

@ -1,67 +0,0 @@
# 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

@ -1,79 +0,0 @@
# 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-12-30 22:28+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/methods/hide_general_forum_topic.rst:3
msgid "hideGeneralForumTopic"
msgstr ""
#: ../../api/methods/hide_general_forum_topic.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.hide_general_forum_topic.HideGeneralForumTopic:1 of
msgid ""
"Use this method to hide the 'General' topic in a forum supergroup chat. "
"The bot must be an administrator in the chat for this to work and must "
"have the *can_manage_topics* administrator rights. The topic will be "
"automatically closed if it was open. Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.hide_general_forum_topic.HideGeneralForumTopic:3 of
msgid "Source: https://core.telegram.org/bots/api#hidegeneralforumtopic"
msgstr ""
#: ../../docstring
#: aiogram.methods.hide_general_forum_topic.HideGeneralForumTopic.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/hide_general_forum_topic.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/hide_general_forum_topic.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/hide_general_forum_topic.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/hide_general_forum_topic.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/hide_general_forum_topic.rst:29
msgid ""
":code:`from aiogram.methods.hide_general_forum_topic import "
"HideGeneralForumTopic`"
msgstr ""
#: ../../api/methods/hide_general_forum_topic.rst:30
msgid "alias: :code:`from aiogram.methods import HideGeneralForumTopic`"
msgstr ""
#: ../../api/methods/hide_general_forum_topic.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/hide_general_forum_topic.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -1,58 +0,0 @@
# 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

@ -1,108 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/methods/kick_chat_member.rst:3
msgid "kickChatMember"
msgstr ""
#: ../../api/methods/kick_chat_member.rst:5
msgid "Returns: :obj:`bool`"
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 ""
#~ 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 ""
#~ msgid "Source: https://core.telegram.org/bots/api#banchatmember"
#~ msgstr ""
#~ msgid ""
#~ "Unique identifier for the target group"
#~ " or username of the target supergroup"
#~ " or channel (in the format "
#~ ":code:`@channelusername`)"
#~ msgstr ""
#~ msgid "Unique identifier of the target user"
#~ msgstr ""
#~ 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 ""
#~ 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 ""

View file

@ -1,82 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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 ""
#: ../../api/methods/leave_chat.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/leave_chat.rst:50
msgid ":meth:`aiogram.types.chat.Chat.leave`"
msgstr ""

View file

@ -1,72 +0,0 @@
# 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

@ -1,105 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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 ""
#: ../../api/methods/pin_chat_message.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/pin_chat_message.rst:50
msgid ":meth:`aiogram.types.message.Message.pin`"
msgstr ""
#: ../../api/methods/pin_chat_message.rst:51
msgid ":meth:`aiogram.types.chat.Chat.pin_message`"
msgstr ""
#~ msgid "As message method"
#~ msgstr ""

View file

@ -1,182 +0,0 @@
# 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: 2023-03-11 01:52+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.11.0\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 they have "
"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 ""
#: ../../docstring
#: aiogram.methods.promote_chat_member.PromoteChatMember.can_manage_topics:1 of
msgid ""
"Pass :code:`True` if the user is allowed to create, rename, close, and "
"reopen forum topics, 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 ""
#: ../../api/methods/promote_chat_member.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/promote_chat_member.rst:50
msgid ":meth:`aiogram.types.chat.Chat.promote`"
msgstr ""
#~ 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 ""

View file

@ -1,82 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-06 14:18+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/methods/reopen_forum_topic.rst:3
msgid "reopenForumTopic"
msgstr ""
#: ../../api/methods/reopen_forum_topic.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.reopen_forum_topic.ReopenForumTopic:1 of
msgid ""
"Use this method to reopen a closed topic in a forum supergroup chat. The "
"bot must be an administrator in the chat for this to work and must have "
"the *can_manage_topics* administrator rights, unless it is the creator of"
" the topic. Returns :code:`True` on success."
msgstr ""
#: aiogram.methods.reopen_forum_topic.ReopenForumTopic:3 of
msgid "Source: https://core.telegram.org/bots/api#reopenforumtopic"
msgstr ""
#: ../../docstring
#: aiogram.methods.reopen_forum_topic.ReopenForumTopic.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.reopen_forum_topic.ReopenForumTopic.message_thread_id:1 of
msgid "Unique identifier for the target message thread of the forum topic"
msgstr ""
#: ../../api/methods/reopen_forum_topic.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/reopen_forum_topic.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/reopen_forum_topic.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/reopen_forum_topic.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/reopen_forum_topic.rst:29
msgid ":code:`from aiogram.methods.reopen_forum_topic import ReopenForumTopic`"
msgstr ""
#: ../../api/methods/reopen_forum_topic.rst:30
msgid "alias: :code:`from aiogram.methods import ReopenForumTopic`"
msgstr ""
#: ../../api/methods/reopen_forum_topic.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/reopen_forum_topic.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -1,81 +0,0 @@
# 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-12-30 22:28+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/methods/reopen_general_forum_topic.rst:3
msgid "reopenGeneralForumTopic"
msgstr ""
#: ../../api/methods/reopen_general_forum_topic.rst:5
msgid "Returns: :obj:`bool`"
msgstr ""
#: aiogram.methods.reopen_general_forum_topic.ReopenGeneralForumTopic:1 of
msgid ""
"Use this method to reopen a closed 'General' topic in a forum supergroup "
"chat. The bot must be an administrator in the chat for this to work and "
"must have the *can_manage_topics* administrator rights. The topic will be"
" automatically unhidden if it was hidden. Returns :code:`True` on "
"success."
msgstr ""
#: aiogram.methods.reopen_general_forum_topic.ReopenGeneralForumTopic:3 of
msgid "Source: https://core.telegram.org/bots/api#reopengeneralforumtopic"
msgstr ""
#: ../../docstring
#: aiogram.methods.reopen_general_forum_topic.ReopenGeneralForumTopic.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/reopen_general_forum_topic.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/reopen_general_forum_topic.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/reopen_general_forum_topic.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/reopen_general_forum_topic.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/reopen_general_forum_topic.rst:29
msgid ""
":code:`from aiogram.methods.reopen_general_forum_topic import "
"ReopenGeneralForumTopic`"
msgstr ""
#: ../../api/methods/reopen_general_forum_topic.rst:30
msgid "alias: :code:`from aiogram.methods import ReopenGeneralForumTopic`"
msgstr ""
#: ../../api/methods/reopen_general_forum_topic.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/reopen_general_forum_topic.rst:40
msgid "As reply into Webhook in handler"
msgstr ""

View file

@ -1,118 +0,0 @@
# 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: 2023-03-11 01:52+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.11.0\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.use_independent_chat_permissions:1
#: of
msgid ""
"Pass :code:`True` if chat permissions are set independently. Otherwise, "
"the *can_send_other_messages* and *can_add_web_page_previews* permissions"
" will imply the *can_send_messages*, *can_send_audios*, "
"*can_send_documents*, *can_send_photos*, *can_send_videos*, "
"*can_send_video_notes*, and *can_send_voice_notes* permissions; the "
"*can_send_polls* permission will imply the *can_send_messages* "
"permission."
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 ""
#: ../../api/methods/restrict_chat_member.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/restrict_chat_member.rst:50
msgid ":meth:`aiogram.types.chat.Chat.restrict`"
msgstr ""

View file

@ -1,94 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-23 00:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/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 ""
#: ../../api/methods/revoke_chat_invite_link.rst:48
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/revoke_chat_invite_link.rst:50
msgid ":meth:`aiogram.types.chat.Chat.revoke_invite_link`"
msgstr ""

View file

@ -1,214 +0,0 @@
# 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: 2023-07-30 18:31+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.12.1\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.message_thread_id:1 of
msgid ""
"Unique identifier for the target message thread (topic) of the forum; for"
" forum supergroups only"
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.thumbnail: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.has_spoiler:1
#: of
msgid ""
"Pass :code:`True` if the animation needs to be covered with a spoiler "
"animation"
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/features#inline-keyboards>`_, "
"`custom reply keyboard "
"<https://core.telegram.org/bots/features#keyboards>`_, instructions to "
"remove reply keyboard or to force a reply from the user."
msgstr ""
#: ../../api/methods/send_animation.rst:15
msgid "Usage"
msgstr ""
#: ../../api/methods/send_animation.rst:18
msgid "As bot method"
msgstr ""
#: ../../api/methods/send_animation.rst:26
msgid "Method as object"
msgstr ""
#: ../../api/methods/send_animation.rst:28
msgid "Imports:"
msgstr ""
#: ../../api/methods/send_animation.rst:30
msgid ":code:`from aiogram.methods.send_animation import SendAnimation`"
msgstr ""
#: ../../api/methods/send_animation.rst:31
msgid "alias: :code:`from aiogram.methods import SendAnimation`"
msgstr ""
#: ../../api/methods/send_animation.rst:34
msgid "With specific bot"
msgstr ""
#: ../../api/methods/send_animation.rst:41
msgid "As reply into Webhook in handler"
msgstr ""
#: ../../api/methods/send_animation.rst:49
msgid "As shortcut from received object"
msgstr ""
#: ../../api/methods/send_animation.rst:51
msgid ":meth:`aiogram.types.message.Message.answer_animation`"
msgstr ""
#: ../../api/methods/send_animation.rst:52
msgid ":meth:`aiogram.types.message.Message.reply_animation`"
msgstr ""
#: ../../api/methods/send_animation.rst:53
msgid ":meth:`aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation`"
msgstr ""
#: ../../api/methods/send_animation.rst:54
msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_animation`"
msgstr ""
#: ../../api/methods/send_animation.rst:55
msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm`"
msgstr ""
#~ 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 ""

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