From f681afb879ea83c19847b697094485f43e198d30 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Sun, 8 Oct 2023 18:00:50 +0300 Subject: [PATCH 1/6] Bump version --- aiogram/__meta__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiogram/__meta__.py b/aiogram/__meta__.py index b591b842..d20e16db 100644 --- a/aiogram/__meta__.py +++ b/aiogram/__meta__.py @@ -1,2 +1,2 @@ -__version__ = "3.1.1" +__version__ = "3.2.0" __api_version__ = "6.9" From cad42580dd8183a0369ff9b76abe590cc5cdb0b6 Mon Sep 17 00:00:00 2001 From: Sergey Akentev Date: Sun, 8 Oct 2023 18:13:06 +0300 Subject: [PATCH 2/6] Prevent update handling task pointers from being garbage collected, backport of #1328 (#1331) * Preserve update handling task pointers, backport of #1328 * Changelog * Typing improvements --- CHANGES/1331.misc | 1 + aiogram/dispatcher/dispatcher.py | 7 +++++-- aiogram/webhook/aiohttp_server.py | 7 +++++-- 3 files changed, 11 insertions(+), 4 deletions(-) create mode 100644 CHANGES/1331.misc diff --git a/CHANGES/1331.misc b/CHANGES/1331.misc new file mode 100644 index 00000000..375f975c --- /dev/null +++ b/CHANGES/1331.misc @@ -0,0 +1 @@ +Prevent update handling task pointers from being garbage collected, backport from 2.x \ No newline at end of file diff --git a/aiogram/dispatcher/dispatcher.py b/aiogram/dispatcher/dispatcher.py index 827b300a..e3eb654a 100644 --- a/aiogram/dispatcher/dispatcher.py +++ b/aiogram/dispatcher/dispatcher.py @@ -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: diff --git a/aiogram/webhook/aiohttp_server.py b/aiogram/webhook/aiohttp_server.py index bf9f2aaf..7caa0e15 100644 --- a/aiogram/webhook/aiohttp_server.py +++ b/aiogram/webhook/aiohttp_server.py @@ -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( From 564292dd79ac9aed292acdf99ef0ec0c2f02ab28 Mon Sep 17 00:00:00 2001 From: Suren Khorenyan Date: Sun, 8 Oct 2023 18:56:30 +0300 Subject: [PATCH 3/6] Fix send_copy helper parse mode (#1332) * Fix send_copy helper parse mode * Add changelog for bugfix 1332 --- CHANGES/1332.bugfix.rst | 1 + aiogram/types/message.py | 5 +++ tests/test_api/test_types/test_message.py | 40 +++++++++++++++++++++-- 3 files changed, 44 insertions(+), 2 deletions(-) create mode 100644 CHANGES/1332.bugfix.rst diff --git a/CHANGES/1332.bugfix.rst b/CHANGES/1332.bugfix.rst new file mode 100644 index 00000000..004cfd1d --- /dev/null +++ b/CHANGES/1332.bugfix.rst @@ -0,0 +1 @@ + Fixed ``parse_mode`` in ``send_copy`` helper. Disable by default. diff --git a/aiogram/types/message.py b/aiogram/types/message.py index da3e1f98..87798b7e 100644 --- a/aiogram/types/message.py +++ b/aiogram/types/message.py @@ -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: diff --git a/tests/test_api/test_types/test_message.py b/tests/test_api/test_types/test_message.py index 0b600146..4e893d20 100644 --- a/tests/test_api/test_types/test_message.py +++ b/tests/test_api/test_types/test_message.py @@ -3,6 +3,7 @@ from typing import Any, Dict, Optional, Type, Union import pytest +from aiogram.enums import ParseMode from aiogram.methods import ( CopyMessage, DeleteMessage, @@ -74,6 +75,7 @@ from aiogram.types import ( VideoNote, Voice, WebAppData, + UNSET_PARSE_MODE, ) from aiogram.types.message import ContentType, Message @@ -688,10 +690,44 @@ class TestMessage: return method = message.send_copy(chat_id=42) - if method: - assert isinstance(method, expected_method) + assert isinstance(method, expected_method) + if hasattr(method, "parse_mode"): + # default parse mode in send_copy + assert method.parse_mode is None # TODO: Check additional fields + @pytest.mark.parametrize( + "custom_parse_mode", + [ + UNSET_PARSE_MODE, + *list(ParseMode), + ], + ) + @pytest.mark.parametrize( + "message,expected_method", + [ + [TEST_MESSAGE_TEXT, SendMessage], + [TEST_MESSAGE_AUDIO, SendAudio], + [TEST_MESSAGE_ANIMATION, SendAnimation], + [TEST_MESSAGE_DOCUMENT, SendDocument], + [TEST_MESSAGE_PHOTO, SendPhoto], + [TEST_MESSAGE_VIDEO, SendVideo], + [TEST_MESSAGE_VOICE, SendVoice], + ], + ) + def test_send_copy_custom_parse_mode( + self, + message: Message, + expected_method: Optional[Type[TelegramMethod]], + custom_parse_mode: Optional[str], + ): + method = message.send_copy( + chat_id=42, + parse_mode=custom_parse_mode, + ) + assert isinstance(method, expected_method) + assert method.parse_mode == custom_parse_mode + def test_edit_text(self): message = Message( message_id=42, chat=Chat(id=42, type="private"), date=datetime.datetime.now() From d180fd7a46462373970f2298b2d436c49365a055 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Sun, 8 Oct 2023 19:14:12 +0300 Subject: [PATCH 4/6] Update texts, remove dummy translation files --- Makefile | 5 +- docs/locale/en/LC_MESSAGES/api/bot.po | 167 - .../en/LC_MESSAGES/api/download_file.po | 187 - .../api/enums/bot_command_scope_type.po | 30 - .../en/LC_MESSAGES/api/enums/chat_action.po | 66 - .../api/enums/chat_member_status.po | 30 - .../en/LC_MESSAGES/api/enums/chat_type.po | 30 - .../en/LC_MESSAGES/api/enums/content_type.po | 26 - .../en/LC_MESSAGES/api/enums/currency.po | 30 - .../en/LC_MESSAGES/api/enums/dice_emoji.po | 30 - .../api/enums/encrypted_passport_element.po | 30 - docs/locale/en/LC_MESSAGES/api/enums/index.po | 29 - .../api/enums/inline_query_result_type.po | 36 - .../LC_MESSAGES/api/enums/input_media_type.po | 30 - .../api/enums/mask_position_point.po | 30 - .../LC_MESSAGES/api/enums/menu_button_type.po | 30 - .../api/enums/message_entity_type.po | 30 - .../en/LC_MESSAGES/api/enums/parse_mode.po | 30 - .../api/enums/passport_element_error_type.po | 30 - .../en/LC_MESSAGES/api/enums/poll_type.po | 30 - .../LC_MESSAGES/api/enums/sticker_format.po | 30 - .../en/LC_MESSAGES/api/enums/sticker_type.po | 30 - .../LC_MESSAGES/api/enums/topic_icon_color.po | 32 - .../en/LC_MESSAGES/api/enums/update_type.po | 30 - docs/locale/en/LC_MESSAGES/api/index.po | 34 - .../api/methods/add_sticker_to_set.po | 149 - .../api/methods/answer_callback_query.po | 141 - .../api/methods/answer_inline_query.po | 164 - .../api/methods/answer_pre_checkout_query.po | 108 - .../api/methods/answer_shipping_query.po | 112 - .../api/methods/answer_web_app_query.po | 82 - .../api/methods/approve_chat_join_request.po | 93 - .../api/methods/ban_chat_member.po | 108 - .../api/methods/ban_chat_sender_chat.po | 93 - .../en/LC_MESSAGES/api/methods/close.po | 71 - .../api/methods/close_forum_topic.po | 82 - .../api/methods/close_general_forum_topic.po | 80 - .../LC_MESSAGES/api/methods/copy_message.po | 169 - .../api/methods/create_chat_invite_link.po | 118 - .../api/methods/create_forum_topic.po | 106 - .../api/methods/create_invoice_link.po | 207 -- .../api/methods/create_new_sticker_set.po | 190 - .../api/methods/decline_chat_join_request.po | 93 - .../api/methods/delete_chat_photo.po | 85 - .../api/methods/delete_chat_sticker_set.po | 89 - .../api/methods/delete_forum_topic.po | 82 - .../LC_MESSAGES/api/methods/delete_message.po | 138 - .../api/methods/delete_my_commands.po | 86 - .../api/methods/delete_sticker_from_set.po | 83 - .../api/methods/delete_sticker_set.po | 73 - .../LC_MESSAGES/api/methods/delete_webhook.po | 74 - .../api/methods/edit_chat_invite_link.po | 118 - .../api/methods/edit_forum_topic.po | 96 - .../api/methods/edit_general_forum_topic.po | 84 - .../api/methods/edit_message_caption.po | 138 - .../api/methods/edit_message_live_location.po | 160 - .../api/methods/edit_message_media.po | 126 - .../api/methods/edit_message_reply_markup.po | 124 - .../api/methods/edit_message_text.po | 140 - .../api/methods/export_chat_invite_link.po | 101 - .../api/methods/forward_message.po | 117 - .../en/LC_MESSAGES/api/methods/get_chat.po | 72 - .../api/methods/get_chat_administrators.po | 85 - .../api/methods/get_chat_member.po | 97 - .../api/methods/get_chat_member_count.po | 81 - .../api/methods/get_chat_members_count.po | 72 - .../api/methods/get_chat_menu_button.po | 77 - .../api/methods/get_custom_emoji_stickers.po | 75 - .../en/LC_MESSAGES/api/methods/get_file.po | 77 - .../methods/get_forum_topic_icon_stickers.po | 67 - .../api/methods/get_game_high_scores.po | 100 - .../en/LC_MESSAGES/api/methods/get_me.po | 65 - .../api/methods/get_my_commands.po | 77 - .../get_my_default_administrator_rights.po | 79 - .../api/methods/get_my_description.po | 70 - .../en/LC_MESSAGES/api/methods/get_my_name.po | 68 - .../api/methods/get_my_short_description.po | 74 - .../api/methods/get_sticker_set.po | 68 - .../en/LC_MESSAGES/api/methods/get_updates.po | 133 - .../api/methods/get_user_profile_photos.po | 93 - .../api/methods/get_webhook_info.po | 67 - .../api/methods/hide_general_forum_topic.po | 79 - .../en/LC_MESSAGES/api/methods/index.po | 58 - .../api/methods/kick_chat_member.po | 108 - .../en/LC_MESSAGES/api/methods/leave_chat.po | 82 - .../en/LC_MESSAGES/api/methods/log_out.po | 72 - .../api/methods/pin_chat_message.po | 105 - .../api/methods/promote_chat_member.po | 182 - .../api/methods/reopen_forum_topic.po | 82 - .../api/methods/reopen_general_forum_topic.po | 81 - .../api/methods/restrict_chat_member.po | 118 - .../api/methods/revoke_chat_invite_link.po | 94 - .../LC_MESSAGES/api/methods/send_animation.po | 214 -- .../en/LC_MESSAGES/api/methods/send_audio.po | 201 -- .../api/methods/send_chat_action.po | 122 - .../LC_MESSAGES/api/methods/send_contact.po | 167 - .../en/LC_MESSAGES/api/methods/send_dice.po | 154 - .../LC_MESSAGES/api/methods/send_document.po | 199 -- .../en/LC_MESSAGES/api/methods/send_game.po | 147 - .../LC_MESSAGES/api/methods/send_invoice.po | 277 -- .../LC_MESSAGES/api/methods/send_location.po | 183 - .../api/methods/send_media_group.po | 139 - .../LC_MESSAGES/api/methods/send_message.po | 171 - .../en/LC_MESSAGES/api/methods/send_photo.po | 183 - .../en/LC_MESSAGES/api/methods/send_poll.po | 216 -- .../LC_MESSAGES/api/methods/send_sticker.po | 178 - .../en/LC_MESSAGES/api/methods/send_venue.po | 184 - .../en/LC_MESSAGES/api/methods/send_video.po | 213 -- .../api/methods/send_video_note.po | 182 - .../en/LC_MESSAGES/api/methods/send_voice.po | 183 - .../set_chat_administrator_custom_title.po | 102 - .../api/methods/set_chat_description.po | 92 - .../api/methods/set_chat_menu_button.po | 82 - .../api/methods/set_chat_permissions.po | 105 - .../LC_MESSAGES/api/methods/set_chat_photo.po | 84 - .../api/methods/set_chat_sticker_set.po | 92 - .../LC_MESSAGES/api/methods/set_chat_title.po | 91 - .../set_custom_emoji_sticker_set_thumbnail.po | 90 - .../LC_MESSAGES/api/methods/set_game_score.po | 112 - .../api/methods/set_my_commands.po | 100 - .../set_my_default_administrator_rights.po | 102 - .../api/methods/set_my_description.po | 83 - .../en/LC_MESSAGES/api/methods/set_my_name.po | 78 - .../api/methods/set_my_short_description.po | 88 - .../api/methods/set_passport_data_errors.po | 87 - .../api/methods/set_sticker_emoji_list.po | 81 - .../api/methods/set_sticker_keywords.po | 83 - .../api/methods/set_sticker_mask_position.po | 86 - .../methods/set_sticker_position_in_set.po | 90 - .../api/methods/set_sticker_set_thumb.po | 114 - .../api/methods/set_sticker_set_thumbnail.po | 108 - .../api/methods/set_sticker_set_title.po | 80 - .../en/LC_MESSAGES/api/methods/set_webhook.po | 152 - .../api/methods/stop_message_live_location.po | 123 - .../en/LC_MESSAGES/api/methods/stop_poll.po | 91 - .../api/methods/unban_chat_member.po | 99 - .../api/methods/unban_chat_sender_chat.po | 93 - .../api/methods/unhide_general_forum_topic.po | 80 - .../api/methods/unpin_all_chat_messages.po | 88 - .../methods/unpin_all_forum_topic_messages.po | 88 - .../unpin_all_general_forum_topic_messages.po | 94 - .../api/methods/unpin_chat_message.po | 101 - .../api/methods/upload_sticker_file.po | 105 - .../en/LC_MESSAGES/api/session/aiohttp.po | 97 - .../locale/en/LC_MESSAGES/api/session/base.po | 81 - .../LC_MESSAGES/api/session/custom_server.po | 96 - .../en/LC_MESSAGES/api/session/index.po | 26 - .../en/LC_MESSAGES/api/session/middleware.po | 87 - .../en/LC_MESSAGES/api/types/animation.po | 74 - docs/locale/en/LC_MESSAGES/api/types/audio.po | 74 - .../en/LC_MESSAGES/api/types/bot_command.po | 40 - .../api/types/bot_command_scope.po | 60 - ...t_command_scope_all_chat_administrators.po | 43 - .../bot_command_scope_all_group_chats.po | 41 - .../bot_command_scope_all_private_chats.po | 41 - .../api/types/bot_command_scope_chat.po | 45 - .../bot_command_scope_chat_administrators.po | 51 - .../types/bot_command_scope_chat_member.po | 53 - .../api/types/bot_command_scope_default.po | 40 - .../LC_MESSAGES/api/types/bot_description.po | 35 - .../en/LC_MESSAGES/api/types/bot_name.po | 34 - .../api/types/bot_short_description.po | 36 - .../en/LC_MESSAGES/api/types/callback_game.po | 32 - .../LC_MESSAGES/api/types/callback_query.po | 191 - docs/locale/en/LC_MESSAGES/api/types/chat.po | 1326 ------- .../api/types/chat_administrator_rights.po | 130 - .../LC_MESSAGES/api/types/chat_invite_link.po | 82 - .../api/types/chat_join_request.po | 1618 --------- .../en/LC_MESSAGES/api/types/chat_location.po | 40 - .../en/LC_MESSAGES/api/types/chat_member.po | 223 -- .../api/types/chat_member_administrator.po | 157 - .../api/types/chat_member_banned.po | 49 - .../LC_MESSAGES/api/types/chat_member_left.po | 41 - .../api/types/chat_member_member.po | 42 - .../api/types/chat_member_owner.po | 51 - .../api/types/chat_member_restricted.po | 161 - .../api/types/chat_member_updated.po | 1232 ------- .../LC_MESSAGES/api/types/chat_permissions.po | 150 - .../en/LC_MESSAGES/api/types/chat_photo.po | 56 - .../en/LC_MESSAGES/api/types/chat_shared.po | 49 - .../api/types/chosen_inline_result.po | 69 - .../en/LC_MESSAGES/api/types/contact.po | 57 - docs/locale/en/LC_MESSAGES/api/types/dice.po | 40 - .../en/LC_MESSAGES/api/types/document.po | 64 - .../api/types/encrypted_credentials.po | 56 - .../api/types/encrypted_passport_element.po | 126 - .../en/LC_MESSAGES/api/types/error_event.po | 40 - docs/locale/en/LC_MESSAGES/api/types/file.po | 65 - .../en/LC_MESSAGES/api/types/force_reply.po | 98 - .../en/LC_MESSAGES/api/types/forum_topic.po | 47 - .../api/types/forum_topic_closed.po | 32 - .../api/types/forum_topic_created.po | 48 - .../api/types/forum_topic_edited.po | 41 - .../api/types/forum_topic_reopened.po | 32 - docs/locale/en/LC_MESSAGES/api/types/game.po | 66 - .../LC_MESSAGES/api/types/game_high_score.po | 51 - .../api/types/general_forum_topic_hidden.po | 32 - .../api/types/general_forum_topic_unhidden.po | 32 - docs/locale/en/LC_MESSAGES/api/types/index.po | 60 - .../api/types/inline_keyboard_button.po | 115 - .../api/types/inline_keyboard_markup.po | 56 - .../en/LC_MESSAGES/api/types/inline_query.po | 155 - .../api/types/inline_query_result.po | 118 - .../api/types/inline_query_result_article.po | 104 - .../api/types/inline_query_result_audio.po | 111 - .../types/inline_query_result_cached_audio.po | 99 - .../inline_query_result_cached_document.po | 114 - .../types/inline_query_result_cached_gif.po | 104 - .../inline_query_result_cached_mpeg4_gif.po | 109 - .../types/inline_query_result_cached_photo.po | 112 - .../inline_query_result_cached_sticker.po | 78 - .../types/inline_query_result_cached_video.po | 112 - .../types/inline_query_result_cached_voice.po | 106 - .../api/types/inline_query_result_contact.po | 110 - .../api/types/inline_query_result_document.po | 128 - .../api/types/inline_query_result_game.po | 65 - .../api/types/inline_query_result_gif.po | 127 - .../api/types/inline_query_result_location.po | 136 - .../types/inline_query_result_mpeg4_gif.po | 140 - .../api/types/inline_query_result_photo.po | 126 - .../api/types/inline_query_result_venue.po | 134 - .../api/types/inline_query_result_video.po | 145 - .../api/types/inline_query_result_voice.po | 108 - .../api/types/inline_query_results_button.po | 59 - .../types/input_contact_message_content.po | 59 - .../en/LC_MESSAGES/api/types/input_file.po | 63 - .../types/input_invoice_message_content.po | 192 - .../types/input_location_message_content.po | 80 - .../en/LC_MESSAGES/api/types/input_media.po | 52 - .../api/types/input_media_animation.po | 106 - .../api/types/input_media_audio.po | 91 - .../api/types/input_media_document.po | 90 - .../api/types/input_media_photo.po | 71 - .../api/types/input_media_video.po | 104 - .../api/types/input_message_content.po | 53 - .../en/LC_MESSAGES/api/types/input_sticker.po | 72 - .../api/types/input_text_message_content.po | 62 - .../api/types/input_venue_message_content.po | 86 - .../en/LC_MESSAGES/api/types/invoice.po | 60 - .../LC_MESSAGES/api/types/keyboard_button.po | 124 - .../api/types/keyboard_button_poll_type.po | 41 - .../api/types/keyboard_button_request_chat.po | 113 - .../api/types/keyboard_button_request_user.po | 69 - .../en/LC_MESSAGES/api/types/labeled_price.po | 46 - .../en/LC_MESSAGES/api/types/location.po | 62 - .../en/LC_MESSAGES/api/types/login_url.po | 72 - .../en/LC_MESSAGES/api/types/mask_position.po | 56 - .../en/LC_MESSAGES/api/types/menu_button.po | 72 - .../api/types/menu_button_commands.po | 35 - .../api/types/menu_button_default.po | 35 - .../api/types/menu_button_web_app.po | 49 - .../en/LC_MESSAGES/api/types/message.po | 2591 -------------- .../message_auto_delete_timer_changed.po | 40 - .../LC_MESSAGES/api/types/message_entity.po | 87 - .../en/LC_MESSAGES/api/types/message_id.po | 34 - .../en/LC_MESSAGES/api/types/order_info.po | 46 - .../en/LC_MESSAGES/api/types/passport_data.po | 40 - .../api/types/passport_element_error.po | 68 - .../passport_element_error_data_field.po | 67 - .../api/types/passport_element_error_file.po | 58 - .../api/types/passport_element_error_files.po | 59 - .../passport_element_error_front_side.po | 61 - .../passport_element_error_reverse_side.po | 61 - .../types/passport_element_error_selfie.po | 58 - ...passport_element_error_translation_file.po | 64 - ...assport_element_error_translation_files.po | 64 - .../passport_element_error_unspecified.po | 58 - .../en/LC_MESSAGES/api/types/passport_file.po | 51 - .../en/LC_MESSAGES/api/types/photo_size.po | 55 - docs/locale/en/LC_MESSAGES/api/types/poll.po | 93 - .../en/LC_MESSAGES/api/types/poll_answer.po | 61 - .../en/LC_MESSAGES/api/types/poll_option.po | 38 - .../api/types/pre_checkout_query.po | 128 - .../api/types/proximity_alert_triggered.po | 49 - .../api/types/reply_keyboard_markup.po | 96 - .../api/types/reply_keyboard_remove.po | 55 - .../api/types/response_parameters.po | 48 - .../api/types/sent_web_app_message.po | 41 - .../LC_MESSAGES/api/types/shipping_address.po | 58 - .../LC_MESSAGES/api/types/shipping_option.po | 42 - .../LC_MESSAGES/api/types/shipping_query.po | 107 - .../en/LC_MESSAGES/api/types/sticker.po | 173 - .../en/LC_MESSAGES/api/types/sticker_set.po | 64 - docs/locale/en/LC_MESSAGES/api/types/story.po | 32 - .../api/types/successful_payment.po | 75 - .../types/switch_inline_query_chosen_chat.po | 66 - .../locale/en/LC_MESSAGES/api/types/update.po | 148 - docs/locale/en/LC_MESSAGES/api/types/user.po | 157 - .../api/types/user_profile_photos.po | 40 - .../en/LC_MESSAGES/api/types/user_shared.po | 49 - docs/locale/en/LC_MESSAGES/api/types/venue.po | 63 - docs/locale/en/LC_MESSAGES/api/types/video.po | 72 - .../LC_MESSAGES/api/types/video_chat_ended.po | 36 - .../types/video_chat_participants_invited.po | 40 - .../api/types/video_chat_scheduled.po | 39 - .../api/types/video_chat_started.po | 32 - .../en/LC_MESSAGES/api/types/video_note.po | 61 - docs/locale/en/LC_MESSAGES/api/types/voice.po | 56 - .../en/LC_MESSAGES/api/types/web_app_data.po | 44 - .../en/LC_MESSAGES/api/types/web_app_info.po | 37 - .../en/LC_MESSAGES/api/types/webhook_info.po | 82 - .../api/types/write_access_allowed.po | 46 - docs/locale/en/LC_MESSAGES/api/upload_file.po | 195 - docs/locale/en/LC_MESSAGES/changelog.po | 3159 ----------------- docs/locale/en/LC_MESSAGES/contributing.po | 358 -- .../locale/en/LC_MESSAGES/deployment/index.po | 22 - .../dispatcher/class_based_handlers/base.po | 56 - .../class_based_handlers/callback_query.po | 42 - .../class_based_handlers/chat_member.po | 44 - .../chosen_inline_result.po | 48 - .../dispatcher/class_based_handlers/error.po | 50 - .../dispatcher/class_based_handlers/index.po | 42 - .../class_based_handlers/inline_query.po | 48 - .../class_based_handlers/message.po | 48 - .../dispatcher/class_based_handlers/poll.po | 48 - .../pre_checkout_query.po | 44 - .../class_based_handlers/shipping_query.po | 44 - .../dispatcher/dependency_injection.po | 96 - .../en/LC_MESSAGES/dispatcher/dispatcher.po | 184 - .../en/LC_MESSAGES/dispatcher/errors.po | 159 - .../dispatcher/filters/callback_data.po | 160 - .../dispatcher/filters/chat_member_updated.po | 228 -- .../LC_MESSAGES/dispatcher/filters/command.po | 156 - .../dispatcher/filters/exception.po | 46 - .../LC_MESSAGES/dispatcher/filters/index.po | 178 - .../dispatcher/filters/magic_data.po | 122 - .../dispatcher/filters/magic_filters.po | 175 - .../en/LC_MESSAGES/dispatcher/filters/text.po | 130 - .../dispatcher/finite_state_machine/index.po | 130 - .../finite_state_machine/storages.po | 225 -- .../locale/en/LC_MESSAGES/dispatcher/flags.po | 129 - .../locale/en/LC_MESSAGES/dispatcher/index.po | 76 - .../en/LC_MESSAGES/dispatcher/long_polling.po | 62 - .../en/LC_MESSAGES/dispatcher/middlewares.po | 181 - .../en/LC_MESSAGES/dispatcher/observer.po | 109 - .../en/LC_MESSAGES/dispatcher/router.po | 270 -- .../en/LC_MESSAGES/dispatcher/webhook.po | 303 -- docs/locale/en/LC_MESSAGES/index.po | 249 -- docs/locale/en/LC_MESSAGES/install.po | 44 - .../locale/en/LC_MESSAGES/migration_2_to_3.po | 305 -- .../en/LC_MESSAGES/utils/callback_answer.po | 204 -- .../en/LC_MESSAGES/utils/chat_action.po | 149 - .../locale/en/LC_MESSAGES/utils/formatting.po | 449 --- docs/locale/en/LC_MESSAGES/utils/i18n.po | 339 -- docs/locale/en/LC_MESSAGES/utils/index.po | 22 - docs/locale/en/LC_MESSAGES/utils/keyboard.po | 178 - docs/locale/en/LC_MESSAGES/utils/web_app.po | 228 -- .../api/methods/ban_chat_member.po | 26 +- .../api/methods/restrict_chat_member.po | 34 +- .../uk_UA/LC_MESSAGES/api/types/chat.po | 34 +- .../api/types/chat_administrator_rights.po | 53 +- .../api/types/chat_member_administrator.po | 53 +- .../api/types/chat_member_banned.po | 12 +- .../api/types/chat_member_restricted.po | 12 +- .../api/types/inline_query_results_button.po | 16 +- .../uk_UA/LC_MESSAGES/api/types/message.po | 15 +- .../LC_MESSAGES/api/types/web_app_info.po | 14 +- .../api/types/write_access_allowed.po | 39 +- docs/locale/uk_UA/LC_MESSAGES/changelog.po | 813 ++--- .../class_based_handlers/message.po | 17 +- docs/locale/uk_UA/LC_MESSAGES/index.po | 4 +- .../uk_UA/LC_MESSAGES/migration_2_to_3.po | 419 ++- 362 files changed, 895 insertions(+), 42773 deletions(-) delete mode 100644 docs/locale/en/LC_MESSAGES/api/bot.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/download_file.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/bot_command_scope_type.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/chat_action.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/chat_member_status.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/chat_type.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/content_type.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/currency.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/dice_emoji.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/encrypted_passport_element.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/index.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/inline_query_result_type.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/input_media_type.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/mask_position_point.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/menu_button_type.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/message_entity_type.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/parse_mode.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/passport_element_error_type.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/poll_type.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/sticker_format.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/sticker_type.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/topic_icon_color.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/enums/update_type.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/index.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/add_sticker_to_set.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/answer_callback_query.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/answer_inline_query.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/answer_pre_checkout_query.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/answer_shipping_query.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/answer_web_app_query.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/approve_chat_join_request.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/ban_chat_member.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/ban_chat_sender_chat.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/close.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/close_forum_topic.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/close_general_forum_topic.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/copy_message.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/create_chat_invite_link.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/create_forum_topic.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/create_invoice_link.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/create_new_sticker_set.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/decline_chat_join_request.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/delete_chat_photo.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/delete_chat_sticker_set.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/delete_forum_topic.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/delete_message.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/delete_my_commands.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/delete_sticker_from_set.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/delete_sticker_set.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/delete_webhook.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/edit_chat_invite_link.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/edit_forum_topic.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/edit_general_forum_topic.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/edit_message_caption.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/edit_message_live_location.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/edit_message_media.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/edit_message_reply_markup.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/edit_message_text.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/export_chat_invite_link.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/forward_message.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_chat.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_chat_administrators.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_chat_member.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_chat_member_count.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_chat_members_count.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_chat_menu_button.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_custom_emoji_stickers.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_file.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_forum_topic_icon_stickers.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_game_high_scores.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_me.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_my_commands.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_my_default_administrator_rights.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_my_description.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_my_name.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_my_short_description.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_sticker_set.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_updates.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_user_profile_photos.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/get_webhook_info.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/hide_general_forum_topic.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/index.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/kick_chat_member.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/leave_chat.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/log_out.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/pin_chat_message.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/promote_chat_member.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/reopen_forum_topic.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/reopen_general_forum_topic.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/restrict_chat_member.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/revoke_chat_invite_link.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/send_animation.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/send_audio.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/send_chat_action.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/send_contact.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/send_dice.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/send_document.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/send_game.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/send_invoice.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/send_location.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/send_media_group.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/send_message.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/send_photo.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/send_poll.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/send_sticker.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/send_venue.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/send_video.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/send_video_note.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/send_voice.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_chat_administrator_custom_title.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_chat_description.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_chat_menu_button.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_chat_permissions.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_chat_photo.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_chat_sticker_set.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_chat_title.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_custom_emoji_sticker_set_thumbnail.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_game_score.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_my_commands.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_my_default_administrator_rights.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_my_description.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_my_name.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_my_short_description.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_passport_data_errors.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_sticker_emoji_list.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_sticker_keywords.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_sticker_mask_position.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_sticker_position_in_set.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_sticker_set_thumb.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_sticker_set_thumbnail.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_sticker_set_title.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/set_webhook.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/stop_message_live_location.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/stop_poll.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/unban_chat_member.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/unban_chat_sender_chat.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/unhide_general_forum_topic.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/unpin_all_chat_messages.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/unpin_all_forum_topic_messages.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/unpin_all_general_forum_topic_messages.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/unpin_chat_message.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/methods/upload_sticker_file.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/session/aiohttp.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/session/base.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/session/custom_server.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/session/index.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/session/middleware.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/animation.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/audio.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/bot_command.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/bot_command_scope.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_all_chat_administrators.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_all_group_chats.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_all_private_chats.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_chat.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_chat_administrators.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_chat_member.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_default.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/bot_description.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/bot_name.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/bot_short_description.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/callback_game.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/callback_query.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/chat.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/chat_administrator_rights.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/chat_invite_link.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/chat_join_request.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/chat_location.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/chat_member.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/chat_member_administrator.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/chat_member_banned.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/chat_member_left.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/chat_member_member.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/chat_member_owner.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/chat_member_restricted.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/chat_member_updated.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/chat_permissions.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/chat_photo.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/chat_shared.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/chosen_inline_result.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/contact.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/dice.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/document.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/encrypted_credentials.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/encrypted_passport_element.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/error_event.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/file.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/force_reply.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/forum_topic.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/forum_topic_closed.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/forum_topic_created.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/forum_topic_edited.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/forum_topic_reopened.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/game.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/game_high_score.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/general_forum_topic_hidden.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/general_forum_topic_unhidden.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/index.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_keyboard_button.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_keyboard_markup.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_article.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_audio.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_audio.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_document.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_gif.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_mpeg4_gif.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_photo.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_sticker.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_video.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_voice.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_contact.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_document.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_game.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_gif.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_location.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_mpeg4_gif.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_photo.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_venue.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_video.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_result_voice.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/inline_query_results_button.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/input_contact_message_content.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/input_file.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/input_invoice_message_content.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/input_location_message_content.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/input_media.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/input_media_animation.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/input_media_audio.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/input_media_document.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/input_media_photo.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/input_media_video.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/input_message_content.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/input_sticker.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/input_text_message_content.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/input_venue_message_content.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/invoice.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/keyboard_button.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/keyboard_button_poll_type.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/keyboard_button_request_chat.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/keyboard_button_request_user.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/labeled_price.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/location.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/login_url.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/mask_position.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/menu_button.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/menu_button_commands.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/menu_button_default.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/menu_button_web_app.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/message.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/message_auto_delete_timer_changed.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/message_entity.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/message_id.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/order_info.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/passport_data.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/passport_element_error.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/passport_element_error_data_field.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/passport_element_error_file.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/passport_element_error_files.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/passport_element_error_front_side.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/passport_element_error_reverse_side.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/passport_element_error_selfie.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/passport_element_error_translation_file.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/passport_element_error_translation_files.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/passport_element_error_unspecified.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/passport_file.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/photo_size.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/poll.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/poll_answer.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/poll_option.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/pre_checkout_query.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/proximity_alert_triggered.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/reply_keyboard_markup.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/reply_keyboard_remove.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/response_parameters.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/sent_web_app_message.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/shipping_address.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/shipping_option.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/shipping_query.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/sticker.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/sticker_set.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/story.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/successful_payment.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/switch_inline_query_chosen_chat.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/update.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/user.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/user_profile_photos.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/user_shared.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/venue.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/video.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/video_chat_ended.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/video_chat_participants_invited.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/video_chat_scheduled.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/video_chat_started.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/video_note.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/voice.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/web_app_data.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/web_app_info.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/webhook_info.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/types/write_access_allowed.po delete mode 100644 docs/locale/en/LC_MESSAGES/api/upload_file.po delete mode 100644 docs/locale/en/LC_MESSAGES/changelog.po delete mode 100644 docs/locale/en/LC_MESSAGES/contributing.po delete mode 100644 docs/locale/en/LC_MESSAGES/deployment/index.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/base.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/callback_query.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/chat_member.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/chosen_inline_result.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/error.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/index.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/inline_query.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/message.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/poll.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/pre_checkout_query.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/shipping_query.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/dependency_injection.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/dispatcher.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/errors.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/filters/callback_data.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/filters/chat_member_updated.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/filters/command.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/filters/exception.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/filters/index.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/filters/magic_data.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/filters/magic_filters.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/filters/text.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/finite_state_machine/index.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/finite_state_machine/storages.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/flags.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/index.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/long_polling.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/middlewares.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/observer.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/router.po delete mode 100644 docs/locale/en/LC_MESSAGES/dispatcher/webhook.po delete mode 100644 docs/locale/en/LC_MESSAGES/index.po delete mode 100644 docs/locale/en/LC_MESSAGES/install.po delete mode 100644 docs/locale/en/LC_MESSAGES/migration_2_to_3.po delete mode 100644 docs/locale/en/LC_MESSAGES/utils/callback_answer.po delete mode 100644 docs/locale/en/LC_MESSAGES/utils/chat_action.po delete mode 100644 docs/locale/en/LC_MESSAGES/utils/formatting.po delete mode 100644 docs/locale/en/LC_MESSAGES/utils/i18n.po delete mode 100644 docs/locale/en/LC_MESSAGES/utils/index.po delete mode 100644 docs/locale/en/LC_MESSAGES/utils/keyboard.po delete mode 100644 docs/locale/en/LC_MESSAGES/utils/web_app.po diff --git a/Makefile b/Makefile index f1557451..327f94df 100644 --- a/Makefile +++ b/Makefile @@ -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-%: diff --git a/docs/locale/en/LC_MESSAGES/api/bot.po b/docs/locale/en/LC_MESSAGES/api/bot.po deleted file mode 100644 index d14cbae4..00000000 --- a/docs/locale/en/LC_MESSAGES/api/bot.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 `_" -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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/download_file.po b/docs/locale/en/LC_MESSAGES/api/download_file.po deleted file mode 100644 index bcd3ec0f..00000000 --- a/docs/locale/en/LC_MESSAGES/api/download_file.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 " -"`__." -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 `__ 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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/bot_command_scope_type.po b/docs/locale/en/LC_MESSAGES/api/enums/bot_command_scope_type.po deleted file mode 100644 index 2d7153f4..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/bot_command_scope_type.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/chat_action.po b/docs/locale/en/LC_MESSAGES/api/enums/chat_action.po deleted file mode 100644 index 0ba8fec1..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/chat_action.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/chat_member_status.po b/docs/locale/en/LC_MESSAGES/api/enums/chat_member_status.po deleted file mode 100644 index d5455e57..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/chat_member_status.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/chat_type.po b/docs/locale/en/LC_MESSAGES/api/enums/chat_type.po deleted file mode 100644 index daa15092..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/chat_type.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/content_type.po b/docs/locale/en/LC_MESSAGES/api/enums/content_type.po deleted file mode 100644 index b8d27ec9..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/content_type.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/currency.po b/docs/locale/en/LC_MESSAGES/api/enums/currency.po deleted file mode 100644 index b7a6d732..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/currency.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/dice_emoji.po b/docs/locale/en/LC_MESSAGES/api/enums/dice_emoji.po deleted file mode 100644 index eacb9567..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/dice_emoji.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/encrypted_passport_element.po b/docs/locale/en/LC_MESSAGES/api/enums/encrypted_passport_element.po deleted file mode 100644 index c9fd2760..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/encrypted_passport_element.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/index.po b/docs/locale/en/LC_MESSAGES/api/enums/index.po deleted file mode 100644 index ad64f7f1..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/index.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/inline_query_result_type.po b/docs/locale/en/LC_MESSAGES/api/enums/inline_query_result_type.po deleted file mode 100644 index b5a7a240..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/inline_query_result_type.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/input_media_type.po b/docs/locale/en/LC_MESSAGES/api/enums/input_media_type.po deleted file mode 100644 index 2115e592..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/input_media_type.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/mask_position_point.po b/docs/locale/en/LC_MESSAGES/api/enums/mask_position_point.po deleted file mode 100644 index fde3a771..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/mask_position_point.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/menu_button_type.po b/docs/locale/en/LC_MESSAGES/api/enums/menu_button_type.po deleted file mode 100644 index d7c0adc8..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/menu_button_type.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/message_entity_type.po b/docs/locale/en/LC_MESSAGES/api/enums/message_entity_type.po deleted file mode 100644 index 3704373b..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/message_entity_type.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/parse_mode.po b/docs/locale/en/LC_MESSAGES/api/enums/parse_mode.po deleted file mode 100644 index cc565d5d..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/parse_mode.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/passport_element_error_type.po b/docs/locale/en/LC_MESSAGES/api/enums/passport_element_error_type.po deleted file mode 100644 index 285d6c8a..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/passport_element_error_type.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/poll_type.po b/docs/locale/en/LC_MESSAGES/api/enums/poll_type.po deleted file mode 100644 index 42d2ab15..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/poll_type.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/sticker_format.po b/docs/locale/en/LC_MESSAGES/api/enums/sticker_format.po deleted file mode 100644 index 57a8b198..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/sticker_format.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/sticker_type.po b/docs/locale/en/LC_MESSAGES/api/enums/sticker_type.po deleted file mode 100644 index 41da8cbb..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/sticker_type.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/topic_icon_color.po b/docs/locale/en/LC_MESSAGES/api/enums/topic_icon_color.po deleted file mode 100644 index f1a6c288..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/topic_icon_color.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/enums/update_type.po b/docs/locale/en/LC_MESSAGES/api/enums/update_type.po deleted file mode 100644 index 1a191276..00000000 --- a/docs/locale/en/LC_MESSAGES/api/enums/update_type.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/index.po b/docs/locale/en/LC_MESSAGES/api/index.po deleted file mode 100644 index 25f384d5..00000000 --- a/docs/locale/en/LC_MESSAGES/api/index.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 " -"`_" -msgstr "" - -#: ../../api/index.rst:7 -msgid "" -"All methods and types is fully autogenerated from Telegram Bot API docs " -"by parser with code-generator." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/add_sticker_to_set.po b/docs/locale/en/LC_MESSAGES/api/methods/add_sticker_to_set.po deleted file mode 100644 index 483b44cd..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/add_sticker_to_set.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 " -#~ "» `" -#~ 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 " -#~ "`_ 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 " -#~ "`_ for technical requirements" -#~ msgstr "" - -#~ msgid "" -#~ "A JSON-serialized object for position" -#~ " where the mask should be placed " -#~ "on faces" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/answer_callback_query.po b/docs/locale/en/LC_MESSAGES/api/methods/answer_callback_query.po deleted file mode 100644 index 2370aa3c..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/answer_callback_query.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 `_. " -"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 `_ 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 `_, 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 " -"`_ " -"*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 `_. " -#~ "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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/answer_inline_query.po b/docs/locale/en/LC_MESSAGES/api/methods/answer_inline_query.po deleted file mode 100644 index 329640c8..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/answer_inline_query.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 `_ " -"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 `_ 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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/answer_pre_checkout_query.po b/docs/locale/en/LC_MESSAGES/api/methods/answer_pre_checkout_query.po deleted file mode 100644 index 0686720e..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/answer_pre_checkout_query.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/answer_shipping_query.po b/docs/locale/en/LC_MESSAGES/api/methods/answer_shipping_query.po deleted file mode 100644 index 418b9c67..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/answer_shipping_query.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/answer_web_app_query.po b/docs/locale/en/LC_MESSAGES/api/methods/answer_web_app_query.po deleted file mode 100644 index 8fd685be..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/answer_web_app_query.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 " -"`_ 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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/approve_chat_join_request.po b/docs/locale/en/LC_MESSAGES/api/methods/approve_chat_join_request.po deleted file mode 100644 index 93504319..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/approve_chat_join_request.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/ban_chat_member.po b/docs/locale/en/LC_MESSAGES/api/methods/ban_chat_member.po deleted file mode 100644 index 487b0d38..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/ban_chat_member.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 " -"`_ 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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/ban_chat_sender_chat.po b/docs/locale/en/LC_MESSAGES/api/methods/ban_chat_sender_chat.po deleted file mode 100644 index 410a0c8e..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/ban_chat_sender_chat.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 " -"`_, 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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/close.po b/docs/locale/en/LC_MESSAGES/api/methods/close.po deleted file mode 100644 index cfdf34fc..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/close.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/close_forum_topic.po b/docs/locale/en/LC_MESSAGES/api/methods/close_forum_topic.po deleted file mode 100644 index cf6aa076..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/close_forum_topic.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/close_general_forum_topic.po b/docs/locale/en/LC_MESSAGES/api/methods/close_general_forum_topic.po deleted file mode 100644 index f67c10fd..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/close_general_forum_topic.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/copy_message.po b/docs/locale/en/LC_MESSAGES/api/methods/copy_message.po deleted file mode 100644 index f30e9b73..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/copy_message.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 " -"`_ 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 `_. 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 `_, " -"`custom reply keyboard " -"`_, 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 `_, " -#~ "`custom reply keyboard " -#~ "`_, instructions " -#~ "to remove reply keyboard or to " -#~ "force a reply from the user." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/create_chat_invite_link.po b/docs/locale/en/LC_MESSAGES/api/methods/create_chat_invite_link.po deleted file mode 100644 index 7099e1d3..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/create_chat_invite_link.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/create_forum_topic.po b/docs/locale/en/LC_MESSAGES/api/methods/create_forum_topic.po deleted file mode 100644 index 20e71139..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/create_forum_topic.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/create_invoice_link.po b/docs/locale/en/LC_MESSAGES/api/methods/create_invoice_link.po deleted file mode 100644 index ca18a308..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/create_invoice_link.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 `_" -msgstr "" - -#: ../../docstring -#: aiogram.methods.create_invoice_link.CreateInvoiceLink.currency:1 of -msgid "" -"Three-letter ISO 4217 currency code, see `more on 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 " -"`_, 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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/create_new_sticker_set.po b/docs/locale/en/LC_MESSAGES/api/methods/create_new_sticker_set.po deleted file mode 100644 index 045ca8f0..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/create_new_sticker_set.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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_\"`. " -":code:`` 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 " -#~ "» `" -#~ 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 " -#~ "`_ 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 " -#~ "`_ 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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/decline_chat_join_request.po b/docs/locale/en/LC_MESSAGES/api/methods/decline_chat_join_request.po deleted file mode 100644 index 9d632f5d..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/decline_chat_join_request.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/delete_chat_photo.po b/docs/locale/en/LC_MESSAGES/api/methods/delete_chat_photo.po deleted file mode 100644 index 758102ab..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/delete_chat_photo.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/delete_chat_sticker_set.po b/docs/locale/en/LC_MESSAGES/api/methods/delete_chat_sticker_set.po deleted file mode 100644 index 3b5e8332..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/delete_chat_sticker_set.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/delete_forum_topic.po b/docs/locale/en/LC_MESSAGES/api/methods/delete_forum_topic.po deleted file mode 100644 index 4d2c0306..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/delete_forum_topic.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/delete_message.po b/docs/locale/en/LC_MESSAGES/api/methods/delete_message.po deleted file mode 100644 index d2a793d3..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/delete_message.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/delete_my_commands.po b/docs/locale/en/LC_MESSAGES/api/methods/delete_my_commands.po deleted file mode 100644 index aaf9cc3a..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/delete_my_commands.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 " -"`_ 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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/delete_sticker_from_set.po b/docs/locale/en/LC_MESSAGES/api/methods/delete_sticker_from_set.po deleted file mode 100644 index e14f9081..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/delete_sticker_from_set.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/delete_sticker_set.po b/docs/locale/en/LC_MESSAGES/api/methods/delete_sticker_set.po deleted file mode 100644 index b0d56a23..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/delete_sticker_set.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/delete_webhook.po b/docs/locale/en/LC_MESSAGES/api/methods/delete_webhook.po deleted file mode 100644 index bdd1e2ec..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/delete_webhook.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/edit_chat_invite_link.po b/docs/locale/en/LC_MESSAGES/api/methods/edit_chat_invite_link.po deleted file mode 100644 index 6efd01b1..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/edit_chat_invite_link.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/edit_forum_topic.po b/docs/locale/en/LC_MESSAGES/api/methods/edit_forum_topic.po deleted file mode 100644 index bf582c84..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/edit_forum_topic.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/edit_general_forum_topic.po b/docs/locale/en/LC_MESSAGES/api/methods/edit_general_forum_topic.po deleted file mode 100644 index 75700ab7..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/edit_general_forum_topic.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/edit_message_caption.po b/docs/locale/en/LC_MESSAGES/api/methods/edit_message_caption.po deleted file mode 100644 index a566ee5e..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/edit_message_caption.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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" -" `_ 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 " -"`_." -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 `_." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/edit_message_live_location.po b/docs/locale/en/LC_MESSAGES/api/methods/edit_message_live_location.po deleted file mode 100644 index 2e129074..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/edit_message_live_location.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 " -"`_." -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 `_." -#~ msgstr "" - -#~ msgid "As message method" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/edit_message_media.po b/docs/locale/en/LC_MESSAGES/api/methods/edit_message_media.po deleted file mode 100644 index afb32662..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/edit_message_media.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 " -"`_." -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 `_." -#~ msgstr "" - -#~ msgid "As message method" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/edit_message_reply_markup.po b/docs/locale/en/LC_MESSAGES/api/methods/edit_message_reply_markup.po deleted file mode 100644 index b704dd6d..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/edit_message_reply_markup.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 " -"`_." -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 `_." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/edit_message_text.po b/docs/locale/en/LC_MESSAGES/api/methods/edit_message_text.po deleted file mode 100644 index a4662b9b..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/edit_message_text.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 " -"`_ 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 " -"`_ 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 " -"`_." -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 `_." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/export_chat_invite_link.po b/docs/locale/en/LC_MESSAGES/api/methods/export_chat_invite_link.po deleted file mode 100644 index 3615e48d..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/export_chat_invite_link.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/forward_message.po b/docs/locale/en/LC_MESSAGES/api/methods/forward_message.po deleted file mode 100644 index 43f90fbf..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/forward_message.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 `_. 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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_chat.po b/docs/locale/en/LC_MESSAGES/api/methods/get_chat.po deleted file mode 100644 index 9097c834..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_chat.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_chat_administrators.po b/docs/locale/en/LC_MESSAGES/api/methods/get_chat_administrators.po deleted file mode 100644 index 7700abdc..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_chat_administrators.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_chat_member.po b/docs/locale/en/LC_MESSAGES/api/methods/get_chat_member.po deleted file mode 100644 index 0f6b9c1b..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_chat_member.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_chat_member_count.po b/docs/locale/en/LC_MESSAGES/api/methods/get_chat_member_count.po deleted file mode 100644 index 6fc48c9f..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_chat_member_count.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_chat_members_count.po b/docs/locale/en/LC_MESSAGES/api/methods/get_chat_members_count.po deleted file mode 100644 index e747a5f4..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_chat_members_count.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_chat_menu_button.po b/docs/locale/en/LC_MESSAGES/api/methods/get_chat_menu_button.po deleted file mode 100644 index 0f5e608b..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_chat_menu_button.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_custom_emoji_stickers.po b/docs/locale/en/LC_MESSAGES/api/methods/get_custom_emoji_stickers.po deleted file mode 100644 index 421e077e..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_custom_emoji_stickers.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_file.po b/docs/locale/en/LC_MESSAGES/api/methods/get_file.po deleted file mode 100644 index bb0d8947..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_file.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/`, where " -":code:`` 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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_forum_topic_icon_stickers.po b/docs/locale/en/LC_MESSAGES/api/methods/get_forum_topic_icon_stickers.po deleted file mode 100644 index 7719981e..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_forum_topic_icon_stickers.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_game_high_scores.po b/docs/locale/en/LC_MESSAGES/api/methods/get_game_high_scores.po deleted file mode 100644 index 192b0486..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_game_high_scores.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_me.po b/docs/locale/en/LC_MESSAGES/api/methods/get_me.po deleted file mode 100644 index 5bcb644a..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_me.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_my_commands.po b/docs/locale/en/LC_MESSAGES/api/methods/get_my_commands.po deleted file mode 100644 index 1f59318d..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_my_commands.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_my_default_administrator_rights.po b/docs/locale/en/LC_MESSAGES/api/methods/get_my_default_administrator_rights.po deleted file mode 100644 index 58861170..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_my_default_administrator_rights.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_my_description.po b/docs/locale/en/LC_MESSAGES/api/methods/get_my_description.po deleted file mode 100644 index b7ae81ab..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_my_description.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_my_name.po b/docs/locale/en/LC_MESSAGES/api/methods/get_my_name.po deleted file mode 100644 index 0437b444..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_my_name.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_my_short_description.po b/docs/locale/en/LC_MESSAGES/api/methods/get_my_short_description.po deleted file mode 100644 index 0d4e2e77..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_my_short_description.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_sticker_set.po b/docs/locale/en/LC_MESSAGES/api/methods/get_sticker_set.po deleted file mode 100644 index 3b71c37d..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_sticker_set.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_updates.po b/docs/locale/en/LC_MESSAGES/api/methods/get_updates.po deleted file mode 100644 index 39a54f54..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_updates.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 " -"`_). 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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_user_profile_photos.po b/docs/locale/en/LC_MESSAGES/api/methods/get_user_profile_photos.po deleted file mode 100644 index bbbeffbc..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_user_profile_photos.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/get_webhook_info.po b/docs/locale/en/LC_MESSAGES/api/methods/get_webhook_info.po deleted file mode 100644 index da85d1b4..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/get_webhook_info.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/hide_general_forum_topic.po b/docs/locale/en/LC_MESSAGES/api/methods/hide_general_forum_topic.po deleted file mode 100644 index 500edf6d..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/hide_general_forum_topic.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/index.po b/docs/locale/en/LC_MESSAGES/api/methods/index.po deleted file mode 100644 index eb6e82bb..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/index.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/kick_chat_member.po b/docs/locale/en/LC_MESSAGES/api/methods/kick_chat_member.po deleted file mode 100644 index d61507e4..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/kick_chat_member.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 " -#~ "`_ 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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/leave_chat.po b/docs/locale/en/LC_MESSAGES/api/methods/leave_chat.po deleted file mode 100644 index bef135f1..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/leave_chat.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/log_out.po b/docs/locale/en/LC_MESSAGES/api/methods/log_out.po deleted file mode 100644 index 49f02be5..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/log_out.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/pin_chat_message.po b/docs/locale/en/LC_MESSAGES/api/methods/pin_chat_message.po deleted file mode 100644 index 9a1e84e4..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/pin_chat_message.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/promote_chat_member.po b/docs/locale/en/LC_MESSAGES/api/methods/promote_chat_member.po deleted file mode 100644 index 04ff8a9f..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/promote_chat_member.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/reopen_forum_topic.po b/docs/locale/en/LC_MESSAGES/api/methods/reopen_forum_topic.po deleted file mode 100644 index 09b013b4..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/reopen_forum_topic.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/reopen_general_forum_topic.po b/docs/locale/en/LC_MESSAGES/api/methods/reopen_general_forum_topic.po deleted file mode 100644 index cd6c41db..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/reopen_general_forum_topic.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/restrict_chat_member.po b/docs/locale/en/LC_MESSAGES/api/methods/restrict_chat_member.po deleted file mode 100644 index 5bc53fcb..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/restrict_chat_member.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/revoke_chat_invite_link.po b/docs/locale/en/LC_MESSAGES/api/methods/revoke_chat_invite_link.po deleted file mode 100644 index b7fee507..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/revoke_chat_invite_link.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/send_animation.po b/docs/locale/en/LC_MESSAGES/api/methods/send_animation.po deleted file mode 100644 index a67de7cf..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/send_animation.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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 » `" -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://' if the thumbnail was " -"uploaded using multipart/form-data under . :ref:`More " -"information on 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 `_ 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 `_. 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 `_, " -"`custom reply keyboard " -"`_, 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 `_, " -#~ "`custom reply keyboard " -#~ "`_, instructions " -#~ "to remove reply keyboard or to " -#~ "force a reply from the user." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/send_audio.po b/docs/locale/en/LC_MESSAGES/api/methods/send_audio.po deleted file mode 100644 index 63d6e0fc..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/send_audio.po +++ /dev/null @@ -1,201 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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_audio.rst:3 -msgid "sendAudio" -msgstr "" - -#: ../../api/methods/send_audio.rst:5 -msgid "Returns: :obj:`Message`" -msgstr "" - -#: aiogram.methods.send_audio.SendAudio:1 of -msgid "" -"Use this method to send audio files, if you want Telegram clients to " -"display them in the music player. Your audio must be in the .MP3 or .M4A " -"format. On success, the sent :class:`aiogram.types.message.Message` is " -"returned. Bots can currently send audio files of up to 50 MB in size, " -"this limit may be changed in the future. For sending voice messages, use " -"the :class:`aiogram.methods.send_voice.SendVoice` method instead." -msgstr "" - -#: aiogram.methods.send_audio.SendAudio:4 of -msgid "Source: https://core.telegram.org/bots/api#sendaudio" -msgstr "" - -#: ../../docstring aiogram.methods.send_audio.SendAudio.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: ../../docstring aiogram.methods.send_audio.SendAudio.audio:1 of -msgid "" -"Audio file to send. Pass a file_id as String to send an audio file that " -"exists on the Telegram servers (recommended), pass an HTTP URL as a " -"String for Telegram to get an audio file from the Internet, or upload a " -"new one using multipart/form-data. :ref:`More information on Sending " -"Files » `" -msgstr "" - -#: ../../docstring aiogram.methods.send_audio.SendAudio.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_audio.SendAudio.caption:1 of -msgid "Audio caption, 0-1024 characters after entities parsing" -msgstr "" - -#: ../../docstring aiogram.methods.send_audio.SendAudio.parse_mode:1 of -msgid "" -"Mode for parsing entities in the audio caption. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: ../../docstring aiogram.methods.send_audio.SendAudio.caption_entities:1 of -msgid "" -"A JSON-serialized list of special entities that appear in the caption, " -"which can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring aiogram.methods.send_audio.SendAudio.duration:1 of -msgid "Duration of the audio in seconds" -msgstr "" - -#: ../../docstring aiogram.methods.send_audio.SendAudio.performer:1 of -msgid "Performer" -msgstr "" - -#: ../../docstring aiogram.methods.send_audio.SendAudio.title:1 of -msgid "Track name" -msgstr "" - -#: ../../docstring aiogram.methods.send_audio.SendAudio.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://' if the thumbnail was " -"uploaded using multipart/form-data under . :ref:`More " -"information on Sending Files » `" -msgstr "" - -#: ../../docstring aiogram.methods.send_audio.SendAudio.disable_notification:1 -#: of -msgid "" -"Sends the message `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: ../../docstring aiogram.methods.send_audio.SendAudio.protect_content:1 of -msgid "Protects the contents of the sent message from forwarding and saving" -msgstr "" - -#: ../../docstring aiogram.methods.send_audio.SendAudio.reply_to_message_id:1 -#: of -msgid "If the message is a reply, ID of the original message" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_audio.SendAudio.allow_sending_without_reply:1 of -msgid "" -"Pass :code:`True` if the message should be sent even if the specified " -"replied-to message is not found" -msgstr "" - -#: ../../docstring aiogram.methods.send_audio.SendAudio.reply_markup:1 of -msgid "" -"Additional interface options. A JSON-serialized object for an `inline " -"keyboard `_, " -"`custom reply keyboard " -"`_, instructions to " -"remove reply keyboard or to force a reply from the user." -msgstr "" - -#: ../../api/methods/send_audio.rst:15 -msgid "Usage" -msgstr "" - -#: ../../api/methods/send_audio.rst:18 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/send_audio.rst:26 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/send_audio.rst:28 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/send_audio.rst:30 -msgid ":code:`from aiogram.methods.send_audio import SendAudio`" -msgstr "" - -#: ../../api/methods/send_audio.rst:31 -msgid "alias: :code:`from aiogram.methods import SendAudio`" -msgstr "" - -#: ../../api/methods/send_audio.rst:34 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/send_audio.rst:41 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/send_audio.rst:49 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/send_audio.rst:51 -msgid ":meth:`aiogram.types.message.Message.answer_audio`" -msgstr "" - -#: ../../api/methods/send_audio.rst:52 -msgid ":meth:`aiogram.types.message.Message.reply_audio`" -msgstr "" - -#: ../../api/methods/send_audio.rst:53 -msgid ":meth:`aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio`" -msgstr "" - -#: ../../api/methods/send_audio.rst:54 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_audio`" -msgstr "" - -#: ../../api/methods/send_audio.rst:55 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm`" -msgstr "" - -#~ msgid "" -#~ "Additional interface options. A JSON-" -#~ "serialized object for an `inline " -#~ "keyboard `_, " -#~ "`custom reply keyboard " -#~ "`_, instructions " -#~ "to remove reply keyboard or to " -#~ "force a reply from the user." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/send_chat_action.po b/docs/locale/en/LC_MESSAGES/api/methods/send_chat_action.po deleted file mode 100644 index b379f03c..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/send_chat_action.po +++ /dev/null @@ -1,122 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.10.3\n" - -#: ../../api/methods/send_chat_action.rst:3 -msgid "sendChatAction" -msgstr "" - -#: ../../api/methods/send_chat_action.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.send_chat_action.SendChatAction:1 of -msgid "" -"Use this method when you need to tell the user that something is " -"happening on the bot's side. The status is set for 5 seconds or less " -"(when a message arrives from your bot, Telegram clients clear its typing " -"status). Returns :code:`True` on success." -msgstr "" - -#: aiogram.methods.send_chat_action.SendChatAction:3 of -msgid "" -"Example: The `ImageBot `_ needs some time to " -"process a request and upload the image. Instead of sending a text message" -" along the lines of 'Retrieving image, please wait…', the bot may use " -":class:`aiogram.methods.send_chat_action.SendChatAction` with *action* = " -"*upload_photo*. The user will see a 'sending photo' status for the bot." -msgstr "" - -#: aiogram.methods.send_chat_action.SendChatAction:5 of -msgid "" -"We only recommend using this method when a response from the bot will " -"take a **noticeable** amount of time to arrive." -msgstr "" - -#: aiogram.methods.send_chat_action.SendChatAction:7 of -msgid "Source: https://core.telegram.org/bots/api#sendchataction" -msgstr "" - -#: ../../docstring aiogram.methods.send_chat_action.SendChatAction.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: ../../docstring aiogram.methods.send_chat_action.SendChatAction.action:1 of -msgid "" -"Type of action to broadcast. Choose one, depending on what the user is " -"about to receive: *typing* for `text messages " -"`_, *upload_photo* for " -"`photos `_, *record_video* " -"or *upload_video* for `videos " -"`_, *record_voice* or " -"*upload_voice* for `voice notes " -"`_, *upload_document* for " -"`general files `_, " -"*choose_sticker* for `stickers " -"`_, *find_location* for " -"`location data `_, " -"*record_video_note* or *upload_video_note* for `video notes " -"`_." -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_chat_action.SendChatAction.message_thread_id:1 of -msgid "Unique identifier for the target message thread; supergroups only" -msgstr "" - -#: ../../api/methods/send_chat_action.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/send_chat_action.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/send_chat_action.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/send_chat_action.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/send_chat_action.rst:29 -msgid ":code:`from aiogram.methods.send_chat_action import SendChatAction`" -msgstr "" - -#: ../../api/methods/send_chat_action.rst:30 -msgid "alias: :code:`from aiogram.methods import SendChatAction`" -msgstr "" - -#: ../../api/methods/send_chat_action.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/send_chat_action.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/send_chat_action.rst:48 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/send_chat_action.rst:50 -msgid ":meth:`aiogram.types.chat.Chat.do`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/send_contact.po b/docs/locale/en/LC_MESSAGES/api/methods/send_contact.po deleted file mode 100644 index 927d96ba..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/send_contact.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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_contact.rst:3 -msgid "sendContact" -msgstr "" - -#: ../../api/methods/send_contact.rst:5 -msgid "Returns: :obj:`Message`" -msgstr "" - -#: aiogram.methods.send_contact.SendContact:1 of -msgid "" -"Use this method to send phone contacts. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.methods.send_contact.SendContact:3 of -msgid "Source: https://core.telegram.org/bots/api#sendcontact" -msgstr "" - -#: ../../docstring aiogram.methods.send_contact.SendContact.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: ../../docstring aiogram.methods.send_contact.SendContact.phone_number:1 of -msgid "Contact's phone number" -msgstr "" - -#: ../../docstring aiogram.methods.send_contact.SendContact.first_name:1 of -msgid "Contact's first name" -msgstr "" - -#: ../../docstring aiogram.methods.send_contact.SendContact.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_contact.SendContact.last_name:1 of -msgid "Contact's last name" -msgstr "" - -#: ../../docstring aiogram.methods.send_contact.SendContact.vcard:1 of -msgid "" -"Additional data about the contact in the form of a `vCard " -"`_, 0-2048 bytes" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_contact.SendContact.disable_notification:1 of -msgid "" -"Sends the message `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: ../../docstring aiogram.methods.send_contact.SendContact.protect_content:1 -#: of -msgid "Protects the contents of the sent message from forwarding and saving" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_contact.SendContact.reply_to_message_id:1 of -msgid "If the message is a reply, ID of the original message" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_contact.SendContact.allow_sending_without_reply:1 of -msgid "" -"Pass :code:`True` if the message should be sent even if the specified " -"replied-to message is not found" -msgstr "" - -#: ../../docstring aiogram.methods.send_contact.SendContact.reply_markup:1 of -msgid "" -"Additional interface options. A JSON-serialized object for an `inline " -"keyboard `_, " -"`custom reply keyboard " -"`_, instructions to " -"remove reply keyboard or to force a reply from the user." -msgstr "" - -#: ../../api/methods/send_contact.rst:15 -msgid "Usage" -msgstr "" - -#: ../../api/methods/send_contact.rst:18 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/send_contact.rst:26 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/send_contact.rst:28 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/send_contact.rst:30 -msgid ":code:`from aiogram.methods.send_contact import SendContact`" -msgstr "" - -#: ../../api/methods/send_contact.rst:31 -msgid "alias: :code:`from aiogram.methods import SendContact`" -msgstr "" - -#: ../../api/methods/send_contact.rst:34 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/send_contact.rst:41 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/send_contact.rst:49 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/send_contact.rst:51 -msgid ":meth:`aiogram.types.message.Message.answer_contact`" -msgstr "" - -#: ../../api/methods/send_contact.rst:52 -msgid ":meth:`aiogram.types.message.Message.reply_contact`" -msgstr "" - -#: ../../api/methods/send_contact.rst:53 -msgid ":meth:`aiogram.types.chat_member_updated.ChatMemberUpdated.answer_contact`" -msgstr "" - -#: ../../api/methods/send_contact.rst:54 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_contact`" -msgstr "" - -#: ../../api/methods/send_contact.rst:55 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_contact_pm`" -msgstr "" - -#~ msgid "" -#~ "Additional interface options. A JSON-" -#~ "serialized object for an `inline " -#~ "keyboard `_, " -#~ "`custom reply keyboard " -#~ "`_, instructions " -#~ "to remove keyboard or to force a" -#~ " reply from the user." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/send_dice.po b/docs/locale/en/LC_MESSAGES/api/methods/send_dice.po deleted file mode 100644 index 9e9cdd1f..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/send_dice.po +++ /dev/null @@ -1,154 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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_dice.rst:3 -msgid "sendDice" -msgstr "" - -#: ../../api/methods/send_dice.rst:5 -msgid "Returns: :obj:`Message`" -msgstr "" - -#: aiogram.methods.send_dice.SendDice:1 of -msgid "" -"Use this method to send an animated emoji that will display a random " -"value. On success, the sent :class:`aiogram.types.message.Message` is " -"returned." -msgstr "" - -#: aiogram.methods.send_dice.SendDice:3 of -msgid "Source: https://core.telegram.org/bots/api#senddice" -msgstr "" - -#: ../../docstring aiogram.methods.send_dice.SendDice.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: ../../docstring aiogram.methods.send_dice.SendDice.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_dice.SendDice.emoji:1 of -msgid "" -"Emoji on which the dice throw animation is based. Currently, must be one " -"of '🎲', '🎯', '🏀', '⚽', '🎳', or '🎰'. Dice can have values 1-6 for '🎲', '🎯'" -" and '🎳', values 1-5 for '🏀' and '⚽', and values 1-64 for '🎰'. Defaults " -"to '🎲'" -msgstr "" - -#: ../../docstring aiogram.methods.send_dice.SendDice.disable_notification:1 of -msgid "" -"Sends the message `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: ../../docstring aiogram.methods.send_dice.SendDice.protect_content:1 of -msgid "Protects the contents of the sent message from forwarding" -msgstr "" - -#: ../../docstring aiogram.methods.send_dice.SendDice.reply_to_message_id:1 of -msgid "If the message is a reply, ID of the original message" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_dice.SendDice.allow_sending_without_reply:1 of -msgid "" -"Pass :code:`True` if the message should be sent even if the specified " -"replied-to message is not found" -msgstr "" - -#: ../../docstring aiogram.methods.send_dice.SendDice.reply_markup:1 of -msgid "" -"Additional interface options. A JSON-serialized object for an `inline " -"keyboard `_, " -"`custom reply keyboard " -"`_, instructions to " -"remove reply keyboard or to force a reply from the user." -msgstr "" - -#: ../../api/methods/send_dice.rst:15 -msgid "Usage" -msgstr "" - -#: ../../api/methods/send_dice.rst:18 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/send_dice.rst:26 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/send_dice.rst:28 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/send_dice.rst:30 -msgid ":code:`from aiogram.methods.send_dice import SendDice`" -msgstr "" - -#: ../../api/methods/send_dice.rst:31 -msgid "alias: :code:`from aiogram.methods import SendDice`" -msgstr "" - -#: ../../api/methods/send_dice.rst:34 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/send_dice.rst:41 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/send_dice.rst:49 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/send_dice.rst:51 -msgid ":meth:`aiogram.types.message.Message.answer_dice`" -msgstr "" - -#: ../../api/methods/send_dice.rst:52 -msgid ":meth:`aiogram.types.message.Message.reply_dice`" -msgstr "" - -#: ../../api/methods/send_dice.rst:53 -msgid ":meth:`aiogram.types.chat_member_updated.ChatMemberUpdated.answer_dice`" -msgstr "" - -#: ../../api/methods/send_dice.rst:54 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_dice`" -msgstr "" - -#: ../../api/methods/send_dice.rst:55 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_dice_pm`" -msgstr "" - -#~ msgid "" -#~ "Additional interface options. A JSON-" -#~ "serialized object for an `inline " -#~ "keyboard `_, " -#~ "`custom reply keyboard " -#~ "`_, instructions " -#~ "to remove reply keyboard or to " -#~ "force a reply from the user." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/send_document.po b/docs/locale/en/LC_MESSAGES/api/methods/send_document.po deleted file mode 100644 index b5b89591..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/send_document.po +++ /dev/null @@ -1,199 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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_document.rst:3 -msgid "sendDocument" -msgstr "" - -#: ../../api/methods/send_document.rst:5 -msgid "Returns: :obj:`Message`" -msgstr "" - -#: aiogram.methods.send_document.SendDocument:1 of -msgid "" -"Use this method to send general files. On success, the sent " -":class:`aiogram.types.message.Message` is returned. Bots can currently " -"send files of any type of up to 50 MB in size, this limit may be changed " -"in the future." -msgstr "" - -#: aiogram.methods.send_document.SendDocument:3 of -msgid "Source: https://core.telegram.org/bots/api#senddocument" -msgstr "" - -#: ../../docstring aiogram.methods.send_document.SendDocument.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: ../../docstring aiogram.methods.send_document.SendDocument.document:1 of -msgid "" -"File to send. Pass a file_id as String to send a file that exists on the " -"Telegram servers (recommended), pass an HTTP URL as a String for Telegram" -" to get a file from the Internet, or upload a new one using multipart" -"/form-data. :ref:`More information on Sending Files » `" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_document.SendDocument.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_document.SendDocument.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://' if the thumbnail was " -"uploaded using multipart/form-data under . :ref:`More " -"information on Sending Files » `" -msgstr "" - -#: ../../docstring aiogram.methods.send_document.SendDocument.caption:1 of -msgid "" -"Document caption (may also be used when resending documents by " -"*file_id*), 0-1024 characters after entities parsing" -msgstr "" - -#: ../../docstring aiogram.methods.send_document.SendDocument.parse_mode:1 of -msgid "" -"Mode for parsing entities in the document caption. See `formatting " -"options `_ for " -"more details." -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_document.SendDocument.caption_entities:1 of -msgid "" -"A JSON-serialized list of special entities that appear in the caption, " -"which can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_document.SendDocument.disable_content_type_detection:1 -#: of -msgid "" -"Disables automatic server-side content type detection for files uploaded " -"using multipart/form-data" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_document.SendDocument.disable_notification:1 of -msgid "" -"Sends the message `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: ../../docstring aiogram.methods.send_document.SendDocument.protect_content:1 -#: of -msgid "Protects the contents of the sent message from forwarding and saving" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_document.SendDocument.reply_to_message_id:1 of -msgid "If the message is a reply, ID of the original message" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_document.SendDocument.allow_sending_without_reply:1 of -msgid "" -"Pass :code:`True` if the message should be sent even if the specified " -"replied-to message is not found" -msgstr "" - -#: ../../docstring aiogram.methods.send_document.SendDocument.reply_markup:1 of -msgid "" -"Additional interface options. A JSON-serialized object for an `inline " -"keyboard `_, " -"`custom reply keyboard " -"`_, instructions to " -"remove reply keyboard or to force a reply from the user." -msgstr "" - -#: ../../api/methods/send_document.rst:15 -msgid "Usage" -msgstr "" - -#: ../../api/methods/send_document.rst:18 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/send_document.rst:26 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/send_document.rst:28 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/send_document.rst:30 -msgid ":code:`from aiogram.methods.send_document import SendDocument`" -msgstr "" - -#: ../../api/methods/send_document.rst:31 -msgid "alias: :code:`from aiogram.methods import SendDocument`" -msgstr "" - -#: ../../api/methods/send_document.rst:34 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/send_document.rst:41 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/send_document.rst:49 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/send_document.rst:51 -msgid ":meth:`aiogram.types.message.Message.answer_document`" -msgstr "" - -#: ../../api/methods/send_document.rst:52 -msgid ":meth:`aiogram.types.message.Message.reply_document`" -msgstr "" - -#: ../../api/methods/send_document.rst:53 -msgid ":meth:`aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document`" -msgstr "" - -#: ../../api/methods/send_document.rst:54 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_document`" -msgstr "" - -#: ../../api/methods/send_document.rst:55 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm`" -msgstr "" - -#~ msgid "" -#~ "Additional interface options. A JSON-" -#~ "serialized object for an `inline " -#~ "keyboard `_, " -#~ "`custom reply keyboard " -#~ "`_, instructions " -#~ "to remove reply keyboard or to " -#~ "force a reply from the user." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/send_game.po b/docs/locale/en/LC_MESSAGES/api/methods/send_game.po deleted file mode 100644 index 17feaa58..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/send_game.po +++ /dev/null @@ -1,147 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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_game.rst:3 -msgid "sendGame" -msgstr "" - -#: ../../api/methods/send_game.rst:5 -msgid "Returns: :obj:`Message`" -msgstr "" - -#: aiogram.methods.send_game.SendGame:1 of -msgid "" -"Use this method to send a game. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.methods.send_game.SendGame:3 of -msgid "Source: https://core.telegram.org/bots/api#sendgame" -msgstr "" - -#: ../../docstring aiogram.methods.send_game.SendGame.chat_id:1 of -msgid "Unique identifier for the target chat" -msgstr "" - -#: ../../docstring aiogram.methods.send_game.SendGame.game_short_name:1 of -msgid "" -"Short name of the game, serves as the unique identifier for the game. Set" -" up your games via `@BotFather `_." -msgstr "" - -#: ../../docstring aiogram.methods.send_game.SendGame.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_game.SendGame.disable_notification:1 of -msgid "" -"Sends the message `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: ../../docstring aiogram.methods.send_game.SendGame.protect_content:1 of -msgid "Protects the contents of the sent message from forwarding and saving" -msgstr "" - -#: ../../docstring aiogram.methods.send_game.SendGame.reply_to_message_id:1 of -msgid "If the message is a reply, ID of the original message" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_game.SendGame.allow_sending_without_reply:1 of -msgid "" -"Pass :code:`True` if the message should be sent even if the specified " -"replied-to message is not found" -msgstr "" - -#: ../../docstring aiogram.methods.send_game.SendGame.reply_markup:1 of -msgid "" -"A JSON-serialized object for an `inline keyboard " -"`_. If empty, " -"one 'Play game_title' button will be shown. If not empty, the first " -"button must launch the game." -msgstr "" - -#: ../../api/methods/send_game.rst:15 -msgid "Usage" -msgstr "" - -#: ../../api/methods/send_game.rst:18 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/send_game.rst:26 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/send_game.rst:28 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/send_game.rst:30 -msgid ":code:`from aiogram.methods.send_game import SendGame`" -msgstr "" - -#: ../../api/methods/send_game.rst:31 -msgid "alias: :code:`from aiogram.methods import SendGame`" -msgstr "" - -#: ../../api/methods/send_game.rst:34 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/send_game.rst:41 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/send_game.rst:49 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/send_game.rst:51 -msgid ":meth:`aiogram.types.message.Message.answer_game`" -msgstr "" - -#: ../../api/methods/send_game.rst:52 -msgid ":meth:`aiogram.types.message.Message.reply_game`" -msgstr "" - -#: ../../api/methods/send_game.rst:53 -msgid ":meth:`aiogram.types.chat_member_updated.ChatMemberUpdated.answer_game`" -msgstr "" - -#: ../../api/methods/send_game.rst:54 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_game`" -msgstr "" - -#: ../../api/methods/send_game.rst:55 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_game_pm`" -msgstr "" - -#~ msgid "" -#~ "A JSON-serialized object for an " -#~ "`inline keyboard `_. If empty, one 'Play " -#~ "game_title' button will be shown. If " -#~ "not empty, the first button must " -#~ "launch the game." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/send_invoice.po b/docs/locale/en/LC_MESSAGES/api/methods/send_invoice.po deleted file mode 100644 index 52234411..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/send_invoice.po +++ /dev/null @@ -1,277 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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_invoice.rst:3 -msgid "sendInvoice" -msgstr "" - -#: ../../api/methods/send_invoice.rst:5 -msgid "Returns: :obj:`Message`" -msgstr "" - -#: aiogram.methods.send_invoice.SendInvoice:1 of -msgid "" -"Use this method to send invoices. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.methods.send_invoice.SendInvoice:3 of -msgid "Source: https://core.telegram.org/bots/api#sendinvoice" -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.title:1 of -msgid "Product name, 1-32 characters" -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.description:1 of -msgid "Product description, 1-255 characters" -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.payload:1 of -msgid "" -"Bot-defined invoice payload, 1-128 bytes. This will not be displayed to " -"the user, use for your internal processes." -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.provider_token:1 of -msgid "" -"Payment provider token, obtained via `@BotFather " -"`_" -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.currency:1 of -msgid "" -"Three-letter ISO 4217 currency code, see `more on currencies " -"`_" -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.prices:1 of -msgid "" -"Price breakdown, a JSON-serialized list of components (e.g. product " -"price, tax, discount, delivery cost, delivery tax, bonus, etc.)" -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.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_invoice.SendInvoice.max_tip_amount:1 of -msgid "" -"The maximum accepted amount for tips in the *smallest units* of the " -"currency (integer, **not** float/double). For example, for a maximum tip " -"of :code:`US$ 1.45` pass :code:`max_tip_amount = 145`. See the *exp* " -"parameter in `currencies.json " -"`_, it shows the" -" number of digits past the decimal point for each currency (2 for the " -"majority of currencies). Defaults to 0" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_invoice.SendInvoice.suggested_tip_amounts:1 of -msgid "" -"A JSON-serialized array of suggested amounts of tips in the *smallest " -"units* of the currency (integer, **not** float/double). At most 4 " -"suggested tip amounts can be specified. The suggested tip amounts must be" -" positive, passed in a strictly increased order and must not exceed " -"*max_tip_amount*." -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.start_parameter:1 -#: of -msgid "" -"Unique deep-linking parameter. If left empty, **forwarded copies** of the" -" sent message will have a *Pay* button, allowing multiple users to pay " -"directly from the forwarded message, using the same invoice. If non-" -"empty, forwarded copies of the sent message will have a *URL* button with" -" a deep link to the bot (instead of a *Pay* button), with the value used " -"as the start parameter" -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.provider_data:1 of -msgid "" -"JSON-serialized data about the invoice, which will be shared with the " -"payment provider. A detailed description of required fields should be " -"provided by the payment provider." -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.photo_url:1 of -msgid "" -"URL of the product photo for the invoice. Can be a photo of the goods or " -"a marketing image for a service. People like it better when they see what" -" they are paying for." -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.photo_size:1 of -msgid "Photo size in bytes" -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.photo_width:1 of -msgid "Photo width" -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.photo_height:1 of -msgid "Photo height" -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.need_name:1 of -msgid "" -"Pass :code:`True` if you require the user's full name to complete the " -"order" -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.need_phone_number:1 -#: of -msgid "" -"Pass :code:`True` if you require the user's phone number to complete the " -"order" -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.need_email:1 of -msgid "" -"Pass :code:`True` if you require the user's email address to complete the" -" order" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_invoice.SendInvoice.need_shipping_address:1 of -msgid "" -"Pass :code:`True` if you require the user's shipping address to complete " -"the order" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_invoice.SendInvoice.send_phone_number_to_provider:1 of -msgid "Pass :code:`True` if the user's phone number should be sent to provider" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_invoice.SendInvoice.send_email_to_provider:1 of -msgid "Pass :code:`True` if the user's email address should be sent to provider" -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.is_flexible:1 of -msgid "Pass :code:`True` if the final price depends on the shipping method" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_invoice.SendInvoice.disable_notification:1 of -msgid "" -"Sends the message `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.protect_content:1 -#: of -msgid "Protects the contents of the sent message from forwarding and saving" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_invoice.SendInvoice.reply_to_message_id:1 of -msgid "If the message is a reply, ID of the original message" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_invoice.SendInvoice.allow_sending_without_reply:1 of -msgid "" -"Pass :code:`True` if the message should be sent even if the specified " -"replied-to message is not found" -msgstr "" - -#: ../../docstring aiogram.methods.send_invoice.SendInvoice.reply_markup:1 of -msgid "" -"A JSON-serialized object for an `inline keyboard " -"`_. If empty, " -"one 'Pay :code:`total price`' button will be shown. If not empty, the " -"first button must be a Pay button." -msgstr "" - -#: ../../api/methods/send_invoice.rst:15 -msgid "Usage" -msgstr "" - -#: ../../api/methods/send_invoice.rst:18 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/send_invoice.rst:26 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/send_invoice.rst:28 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/send_invoice.rst:30 -msgid ":code:`from aiogram.methods.send_invoice import SendInvoice`" -msgstr "" - -#: ../../api/methods/send_invoice.rst:31 -msgid "alias: :code:`from aiogram.methods import SendInvoice`" -msgstr "" - -#: ../../api/methods/send_invoice.rst:34 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/send_invoice.rst:41 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/send_invoice.rst:49 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/send_invoice.rst:51 -msgid ":meth:`aiogram.types.message.Message.answer_invoice`" -msgstr "" - -#: ../../api/methods/send_invoice.rst:52 -msgid ":meth:`aiogram.types.message.Message.reply_invoice`" -msgstr "" - -#: ../../api/methods/send_invoice.rst:53 -msgid ":meth:`aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice`" -msgstr "" - -#: ../../api/methods/send_invoice.rst:54 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice`" -msgstr "" - -#: ../../api/methods/send_invoice.rst:55 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm`" -msgstr "" - -#~ msgid "" -#~ "A JSON-serialized object for an " -#~ "`inline keyboard `_. If empty, one 'Pay " -#~ ":code:`total price`' button will be " -#~ "shown. If not empty, the first " -#~ "button must be a Pay button." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/send_location.po b/docs/locale/en/LC_MESSAGES/api/methods/send_location.po deleted file mode 100644 index d16be5e2..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/send_location.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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_location.rst:3 -msgid "sendLocation" -msgstr "" - -#: ../../api/methods/send_location.rst:5 -msgid "Returns: :obj:`Message`" -msgstr "" - -#: aiogram.methods.send_location.SendLocation:1 of -msgid "" -"Use this method to send point on the map. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.methods.send_location.SendLocation:3 of -msgid "Source: https://core.telegram.org/bots/api#sendlocation" -msgstr "" - -#: ../../docstring aiogram.methods.send_location.SendLocation.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: ../../docstring aiogram.methods.send_location.SendLocation.latitude:1 of -msgid "Latitude of the location" -msgstr "" - -#: ../../docstring aiogram.methods.send_location.SendLocation.longitude:1 of -msgid "Longitude of the location" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_location.SendLocation.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_location.SendLocation.horizontal_accuracy:1 of -msgid "The radius of uncertainty for the location, measured in meters; 0-1500" -msgstr "" - -#: ../../docstring aiogram.methods.send_location.SendLocation.live_period:1 of -msgid "" -"Period in seconds for which the location will be updated (see `Live " -"Locations `_, should be between" -" 60 and 86400." -msgstr "" - -#: ../../docstring aiogram.methods.send_location.SendLocation.heading:1 of -msgid "" -"For live locations, a direction in which the user is moving, in degrees. " -"Must be between 1 and 360 if specified." -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_location.SendLocation.proximity_alert_radius:1 of -msgid "" -"For live locations, a maximum distance for proximity alerts about " -"approaching another chat member, in meters. Must be between 1 and 100000 " -"if specified." -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_location.SendLocation.disable_notification:1 of -msgid "" -"Sends the message `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: ../../docstring aiogram.methods.send_location.SendLocation.protect_content:1 -#: of -msgid "Protects the contents of the sent message from forwarding and saving" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_location.SendLocation.reply_to_message_id:1 of -msgid "If the message is a reply, ID of the original message" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_location.SendLocation.allow_sending_without_reply:1 of -msgid "" -"Pass :code:`True` if the message should be sent even if the specified " -"replied-to message is not found" -msgstr "" - -#: ../../docstring aiogram.methods.send_location.SendLocation.reply_markup:1 of -msgid "" -"Additional interface options. A JSON-serialized object for an `inline " -"keyboard `_, " -"`custom reply keyboard " -"`_, instructions to " -"remove reply keyboard or to force a reply from the user." -msgstr "" - -#: ../../api/methods/send_location.rst:15 -msgid "Usage" -msgstr "" - -#: ../../api/methods/send_location.rst:18 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/send_location.rst:26 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/send_location.rst:28 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/send_location.rst:30 -msgid ":code:`from aiogram.methods.send_location import SendLocation`" -msgstr "" - -#: ../../api/methods/send_location.rst:31 -msgid "alias: :code:`from aiogram.methods import SendLocation`" -msgstr "" - -#: ../../api/methods/send_location.rst:34 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/send_location.rst:41 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/send_location.rst:49 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/send_location.rst:51 -msgid ":meth:`aiogram.types.message.Message.answer_location`" -msgstr "" - -#: ../../api/methods/send_location.rst:52 -msgid ":meth:`aiogram.types.message.Message.reply_location`" -msgstr "" - -#: ../../api/methods/send_location.rst:53 -msgid ":meth:`aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location`" -msgstr "" - -#: ../../api/methods/send_location.rst:54 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_location`" -msgstr "" - -#: ../../api/methods/send_location.rst:55 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm`" -msgstr "" - -#~ msgid "" -#~ "Additional interface options. A JSON-" -#~ "serialized object for an `inline " -#~ "keyboard `_, " -#~ "`custom reply keyboard " -#~ "`_, instructions " -#~ "to remove reply keyboard or to " -#~ "force a reply from the user." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/send_media_group.po b/docs/locale/en/LC_MESSAGES/api/methods/send_media_group.po deleted file mode 100644 index 8d271fef..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/send_media_group.po +++ /dev/null @@ -1,139 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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_media_group.rst:3 -msgid "sendMediaGroup" -msgstr "" - -#: ../../api/methods/send_media_group.rst:5 -msgid "Returns: :obj:`List[Message]`" -msgstr "" - -#: aiogram.methods.send_media_group.SendMediaGroup:1 of -msgid "" -"Use this method to send a group of photos, videos, documents or audios as" -" an album. Documents and audio files can be only grouped in an album with" -" messages of the same type. On success, an array of `Messages " -"`_ that were sent is " -"returned." -msgstr "" - -#: aiogram.methods.send_media_group.SendMediaGroup:3 of -msgid "Source: https://core.telegram.org/bots/api#sendmediagroup" -msgstr "" - -#: ../../docstring aiogram.methods.send_media_group.SendMediaGroup.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: ../../docstring aiogram.methods.send_media_group.SendMediaGroup.media:1 of -msgid "" -"A JSON-serialized array describing messages to be sent, must include 2-10" -" items" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_media_group.SendMediaGroup.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_media_group.SendMediaGroup.disable_notification:1 of -msgid "" -"Sends messages `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_media_group.SendMediaGroup.protect_content:1 of -msgid "Protects the contents of the sent messages from forwarding and saving" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_media_group.SendMediaGroup.reply_to_message_id:1 of -msgid "If the messages are a reply, ID of the original message" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_media_group.SendMediaGroup.allow_sending_without_reply:1 -#: of -msgid "" -"Pass :code:`True` if the message should be sent even if the specified " -"replied-to message is not found" -msgstr "" - -#: ../../api/methods/send_media_group.rst:15 -msgid "Usage" -msgstr "" - -#: ../../api/methods/send_media_group.rst:18 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/send_media_group.rst:26 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/send_media_group.rst:28 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/send_media_group.rst:30 -msgid ":code:`from aiogram.methods.send_media_group import SendMediaGroup`" -msgstr "" - -#: ../../api/methods/send_media_group.rst:31 -msgid "alias: :code:`from aiogram.methods import SendMediaGroup`" -msgstr "" - -#: ../../api/methods/send_media_group.rst:34 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/send_media_group.rst:41 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/send_media_group.rst:49 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/send_media_group.rst:51 -msgid ":meth:`aiogram.types.message.Message.answer_media_group`" -msgstr "" - -#: ../../api/methods/send_media_group.rst:52 -msgid ":meth:`aiogram.types.message.Message.reply_media_group`" -msgstr "" - -#: ../../api/methods/send_media_group.rst:53 -msgid ":meth:`aiogram.types.chat_member_updated.ChatMemberUpdated.answer_media_group`" -msgstr "" - -#: ../../api/methods/send_media_group.rst:54 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group`" -msgstr "" - -#: ../../api/methods/send_media_group.rst:55 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group_pm`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/send_message.po b/docs/locale/en/LC_MESSAGES/api/methods/send_message.po deleted file mode 100644 index fb028b0d..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/send_message.po +++ /dev/null @@ -1,171 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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_message.rst:3 -msgid "sendMessage" -msgstr "" - -#: ../../api/methods/send_message.rst:5 -msgid "Returns: :obj:`Message`" -msgstr "" - -#: aiogram.methods.send_message.SendMessage:1 of -msgid "" -"Use this method to send text messages. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.methods.send_message.SendMessage:3 of -msgid "Source: https://core.telegram.org/bots/api#sendmessage" -msgstr "" - -#: ../../docstring aiogram.methods.send_message.SendMessage.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: ../../docstring aiogram.methods.send_message.SendMessage.text:1 of -msgid "Text of the message to be sent, 1-4096 characters after entities parsing" -msgstr "" - -#: ../../docstring aiogram.methods.send_message.SendMessage.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_message.SendMessage.parse_mode:1 of -msgid "" -"Mode for parsing entities in the message text. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: ../../docstring aiogram.methods.send_message.SendMessage.entities:1 of -msgid "" -"A JSON-serialized list of special entities that appear in message text, " -"which can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_message.SendMessage.disable_web_page_preview:1 of -msgid "Disables link previews for links in this message" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_message.SendMessage.disable_notification:1 of -msgid "" -"Sends the message `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: ../../docstring aiogram.methods.send_message.SendMessage.protect_content:1 -#: of -msgid "Protects the contents of the sent message from forwarding and saving" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_message.SendMessage.reply_to_message_id:1 of -msgid "If the message is a reply, ID of the original message" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_message.SendMessage.allow_sending_without_reply:1 of -msgid "" -"Pass :code:`True` if the message should be sent even if the specified " -"replied-to message is not found" -msgstr "" - -#: ../../docstring aiogram.methods.send_message.SendMessage.reply_markup:1 of -msgid "" -"Additional interface options. A JSON-serialized object for an `inline " -"keyboard `_, " -"`custom reply keyboard " -"`_, instructions to " -"remove reply keyboard or to force a reply from the user." -msgstr "" - -#: ../../api/methods/send_message.rst:15 -msgid "Usage" -msgstr "" - -#: ../../api/methods/send_message.rst:18 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/send_message.rst:26 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/send_message.rst:28 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/send_message.rst:30 -msgid ":code:`from aiogram.methods.send_message import SendMessage`" -msgstr "" - -#: ../../api/methods/send_message.rst:31 -msgid "alias: :code:`from aiogram.methods import SendMessage`" -msgstr "" - -#: ../../api/methods/send_message.rst:34 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/send_message.rst:41 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/send_message.rst:49 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/send_message.rst:51 -msgid ":meth:`aiogram.types.message.Message.answer`" -msgstr "" - -#: ../../api/methods/send_message.rst:52 -msgid ":meth:`aiogram.types.message.Message.reply`" -msgstr "" - -#: ../../api/methods/send_message.rst:53 -msgid ":meth:`aiogram.types.chat_member_updated.ChatMemberUpdated.answer`" -msgstr "" - -#: ../../api/methods/send_message.rst:54 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer`" -msgstr "" - -#: ../../api/methods/send_message.rst:55 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_pm`" -msgstr "" - -#~ msgid "" -#~ "Additional interface options. A JSON-" -#~ "serialized object for an `inline " -#~ "keyboard `_, " -#~ "`custom reply keyboard " -#~ "`_, instructions " -#~ "to remove reply keyboard or to " -#~ "force a reply from the user." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/send_photo.po b/docs/locale/en/LC_MESSAGES/api/methods/send_photo.po deleted file mode 100644 index f733d653..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/send_photo.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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_photo.rst:3 -msgid "sendPhoto" -msgstr "" - -#: ../../api/methods/send_photo.rst:5 -msgid "Returns: :obj:`Message`" -msgstr "" - -#: aiogram.methods.send_photo.SendPhoto:1 of -msgid "" -"Use this method to send photos. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.methods.send_photo.SendPhoto:3 of -msgid "Source: https://core.telegram.org/bots/api#sendphoto" -msgstr "" - -#: ../../docstring aiogram.methods.send_photo.SendPhoto.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: ../../docstring aiogram.methods.send_photo.SendPhoto.photo:1 of -msgid "" -"Photo to send. Pass a file_id as String to send a photo that exists on " -"the Telegram servers (recommended), pass an HTTP URL as a String for " -"Telegram to get a photo from the Internet, or upload a new photo using " -"multipart/form-data. The photo must be at most 10 MB in size. The photo's" -" width and height must not exceed 10000 in total. Width and height ratio " -"must be at most 20. :ref:`More information on Sending Files » `" -msgstr "" - -#: ../../docstring aiogram.methods.send_photo.SendPhoto.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_photo.SendPhoto.caption:1 of -msgid "" -"Photo caption (may also be used when resending photos by *file_id*), " -"0-1024 characters after entities parsing" -msgstr "" - -#: ../../docstring aiogram.methods.send_photo.SendPhoto.parse_mode:1 of -msgid "" -"Mode for parsing entities in the photo caption. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: ../../docstring aiogram.methods.send_photo.SendPhoto.caption_entities:1 of -msgid "" -"A JSON-serialized list of special entities that appear in the caption, " -"which can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring aiogram.methods.send_photo.SendPhoto.has_spoiler:1 of -msgid "" -"Pass :code:`True` if the photo needs to be covered with a spoiler " -"animation" -msgstr "" - -#: ../../docstring aiogram.methods.send_photo.SendPhoto.disable_notification:1 -#: of -msgid "" -"Sends the message `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: ../../docstring aiogram.methods.send_photo.SendPhoto.protect_content:1 of -msgid "Protects the contents of the sent message from forwarding and saving" -msgstr "" - -#: ../../docstring aiogram.methods.send_photo.SendPhoto.reply_to_message_id:1 -#: of -msgid "If the message is a reply, ID of the original message" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_photo.SendPhoto.allow_sending_without_reply:1 of -msgid "" -"Pass :code:`True` if the message should be sent even if the specified " -"replied-to message is not found" -msgstr "" - -#: ../../docstring aiogram.methods.send_photo.SendPhoto.reply_markup:1 of -msgid "" -"Additional interface options. A JSON-serialized object for an `inline " -"keyboard `_, " -"`custom reply keyboard " -"`_, instructions to " -"remove reply keyboard or to force a reply from the user." -msgstr "" - -#: ../../api/methods/send_photo.rst:15 -msgid "Usage" -msgstr "" - -#: ../../api/methods/send_photo.rst:18 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/send_photo.rst:26 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/send_photo.rst:28 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/send_photo.rst:30 -msgid ":code:`from aiogram.methods.send_photo import SendPhoto`" -msgstr "" - -#: ../../api/methods/send_photo.rst:31 -msgid "alias: :code:`from aiogram.methods import SendPhoto`" -msgstr "" - -#: ../../api/methods/send_photo.rst:34 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/send_photo.rst:41 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/send_photo.rst:49 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/send_photo.rst:51 -msgid ":meth:`aiogram.types.message.Message.answer_photo`" -msgstr "" - -#: ../../api/methods/send_photo.rst:52 -msgid ":meth:`aiogram.types.message.Message.reply_photo`" -msgstr "" - -#: ../../api/methods/send_photo.rst:53 -msgid ":meth:`aiogram.types.chat_member_updated.ChatMemberUpdated.answer_photo`" -msgstr "" - -#: ../../api/methods/send_photo.rst:54 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_photo`" -msgstr "" - -#: ../../api/methods/send_photo.rst:55 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm`" -msgstr "" - -#~ msgid "" -#~ "Additional interface options. A JSON-" -#~ "serialized object for an `inline " -#~ "keyboard `_, " -#~ "`custom reply keyboard " -#~ "`_, instructions " -#~ "to remove reply keyboard or to " -#~ "force a reply from the user." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/send_poll.po b/docs/locale/en/LC_MESSAGES/api/methods/send_poll.po deleted file mode 100644 index f7a0573a..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/send_poll.po +++ /dev/null @@ -1,216 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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_poll.rst:3 -msgid "sendPoll" -msgstr "" - -#: ../../api/methods/send_poll.rst:5 -msgid "Returns: :obj:`Message`" -msgstr "" - -#: aiogram.methods.send_poll.SendPoll:1 of -msgid "" -"Use this method to send a native poll. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.methods.send_poll.SendPoll:3 of -msgid "Source: https://core.telegram.org/bots/api#sendpoll" -msgstr "" - -#: ../../docstring aiogram.methods.send_poll.SendPoll.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: ../../docstring aiogram.methods.send_poll.SendPoll.question:1 of -msgid "Poll question, 1-300 characters" -msgstr "" - -#: ../../docstring aiogram.methods.send_poll.SendPoll.options:1 of -msgid "" -"A JSON-serialized list of answer options, 2-10 strings 1-100 characters " -"each" -msgstr "" - -#: ../../docstring aiogram.methods.send_poll.SendPoll.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_poll.SendPoll.is_anonymous:1 of -msgid ":code:`True`, if the poll needs to be anonymous, defaults to :code:`True`" -msgstr "" - -#: ../../docstring aiogram.methods.send_poll.SendPoll.type:1 of -msgid "Poll type, 'quiz' or 'regular', defaults to 'regular'" -msgstr "" - -#: ../../docstring aiogram.methods.send_poll.SendPoll.allows_multiple_answers:1 -#: of -msgid "" -":code:`True`, if the poll allows multiple answers, ignored for polls in " -"quiz mode, defaults to :code:`False`" -msgstr "" - -#: ../../docstring aiogram.methods.send_poll.SendPoll.correct_option_id:1 of -msgid "" -"0-based identifier of the correct answer option, required for polls in " -"quiz mode" -msgstr "" - -#: ../../docstring aiogram.methods.send_poll.SendPoll.explanation:1 of -msgid "" -"Text that is shown when a user chooses an incorrect answer or taps on the" -" lamp icon in a quiz-style poll, 0-200 characters with at most 2 line " -"feeds after entities parsing" -msgstr "" - -#: ../../docstring aiogram.methods.send_poll.SendPoll.explanation_parse_mode:1 -#: of -msgid "" -"Mode for parsing entities in the explanation. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: ../../docstring aiogram.methods.send_poll.SendPoll.explanation_entities:1 of -msgid "" -"A JSON-serialized list of special entities that appear in the poll " -"explanation, which can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring aiogram.methods.send_poll.SendPoll.open_period:1 of -msgid "" -"Amount of time in seconds the poll will be active after creation, 5-600. " -"Can't be used together with *close_date*." -msgstr "" - -#: ../../docstring aiogram.methods.send_poll.SendPoll.close_date:1 of -msgid "" -"Point in time (Unix timestamp) when the poll will be automatically " -"closed. Must be at least 5 and no more than 600 seconds in the future. " -"Can't be used together with *open_period*." -msgstr "" - -#: ../../docstring aiogram.methods.send_poll.SendPoll.is_closed:1 of -msgid "" -"Pass :code:`True` if the poll needs to be immediately closed. This can be" -" useful for poll preview." -msgstr "" - -#: ../../docstring aiogram.methods.send_poll.SendPoll.disable_notification:1 of -msgid "" -"Sends the message `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: ../../docstring aiogram.methods.send_poll.SendPoll.protect_content:1 of -msgid "Protects the contents of the sent message from forwarding and saving" -msgstr "" - -#: ../../docstring aiogram.methods.send_poll.SendPoll.reply_to_message_id:1 of -msgid "If the message is a reply, ID of the original message" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_poll.SendPoll.allow_sending_without_reply:1 of -msgid "" -"Pass :code:`True` if the message should be sent even if the specified " -"replied-to message is not found" -msgstr "" - -#: ../../docstring aiogram.methods.send_poll.SendPoll.reply_markup:1 of -msgid "" -"Additional interface options. A JSON-serialized object for an `inline " -"keyboard `_, " -"`custom reply keyboard " -"`_, instructions to " -"remove reply keyboard or to force a reply from the user." -msgstr "" - -#: ../../api/methods/send_poll.rst:15 -msgid "Usage" -msgstr "" - -#: ../../api/methods/send_poll.rst:18 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/send_poll.rst:26 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/send_poll.rst:28 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/send_poll.rst:30 -msgid ":code:`from aiogram.methods.send_poll import SendPoll`" -msgstr "" - -#: ../../api/methods/send_poll.rst:31 -msgid "alias: :code:`from aiogram.methods import SendPoll`" -msgstr "" - -#: ../../api/methods/send_poll.rst:34 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/send_poll.rst:41 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/send_poll.rst:49 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/send_poll.rst:51 -msgid ":meth:`aiogram.types.message.Message.answer_poll`" -msgstr "" - -#: ../../api/methods/send_poll.rst:52 -msgid ":meth:`aiogram.types.message.Message.reply_poll`" -msgstr "" - -#: ../../api/methods/send_poll.rst:53 -msgid ":meth:`aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll`" -msgstr "" - -#: ../../api/methods/send_poll.rst:54 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_poll`" -msgstr "" - -#: ../../api/methods/send_poll.rst:55 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm`" -msgstr "" - -#~ msgid "" -#~ "Additional interface options. A JSON-" -#~ "serialized object for an `inline " -#~ "keyboard `_, " -#~ "`custom reply keyboard " -#~ "`_, instructions " -#~ "to remove reply keyboard or to " -#~ "force a reply from the user." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/send_sticker.po b/docs/locale/en/LC_MESSAGES/api/methods/send_sticker.po deleted file mode 100644 index 96a8c342..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/send_sticker.po +++ /dev/null @@ -1,178 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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_sticker.rst:3 -msgid "sendSticker" -msgstr "" - -#: ../../api/methods/send_sticker.rst:5 -msgid "Returns: :obj:`Message`" -msgstr "" - -#: aiogram.methods.send_sticker.SendSticker:1 of -msgid "" -"Use this method to send static .WEBP, `animated " -"`_ .TGS, or `video " -"`_ .WEBM " -"stickers. On success, the sent :class:`aiogram.types.message.Message` is " -"returned." -msgstr "" - -#: aiogram.methods.send_sticker.SendSticker:3 of -msgid "Source: https://core.telegram.org/bots/api#sendsticker" -msgstr "" - -#: ../../docstring aiogram.methods.send_sticker.SendSticker.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: ../../docstring aiogram.methods.send_sticker.SendSticker.sticker:1 of -msgid "" -"Sticker to send. Pass a file_id as String to send a file that exists on " -"the Telegram servers (recommended), pass an HTTP URL as a String for " -"Telegram to get a .WEBP sticker from the Internet, or upload a new .WEBP " -"or .TGS sticker using multipart/form-data. :ref:`More information on " -"Sending Files » `. Video stickers can only be sent by a " -"file_id. Animated stickers can't be sent via an HTTP URL." -msgstr "" - -#: ../../docstring aiogram.methods.send_sticker.SendSticker.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_sticker.SendSticker.emoji:1 of -msgid "Emoji associated with the sticker; only for just uploaded stickers" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_sticker.SendSticker.disable_notification:1 of -msgid "" -"Sends the message `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: ../../docstring aiogram.methods.send_sticker.SendSticker.protect_content:1 -#: of -msgid "Protects the contents of the sent message from forwarding and saving" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_sticker.SendSticker.reply_to_message_id:1 of -msgid "If the message is a reply, ID of the original message" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_sticker.SendSticker.allow_sending_without_reply:1 of -msgid "" -"Pass :code:`True` if the message should be sent even if the specified " -"replied-to message is not found" -msgstr "" - -#: ../../docstring aiogram.methods.send_sticker.SendSticker.reply_markup:1 of -msgid "" -"Additional interface options. A JSON-serialized object for an `inline " -"keyboard `_, " -"`custom reply keyboard " -"`_, instructions to " -"remove reply keyboard or to force a reply from the user." -msgstr "" - -#: ../../api/methods/send_sticker.rst:15 -msgid "Usage" -msgstr "" - -#: ../../api/methods/send_sticker.rst:18 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/send_sticker.rst:26 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/send_sticker.rst:28 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/send_sticker.rst:30 -msgid ":code:`from aiogram.methods.send_sticker import SendSticker`" -msgstr "" - -#: ../../api/methods/send_sticker.rst:31 -msgid "alias: :code:`from aiogram.methods import SendSticker`" -msgstr "" - -#: ../../api/methods/send_sticker.rst:34 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/send_sticker.rst:41 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/send_sticker.rst:49 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/send_sticker.rst:51 -msgid ":meth:`aiogram.types.message.Message.answer_sticker`" -msgstr "" - -#: ../../api/methods/send_sticker.rst:52 -msgid ":meth:`aiogram.types.message.Message.reply_sticker`" -msgstr "" - -#: ../../api/methods/send_sticker.rst:53 -msgid ":meth:`aiogram.types.chat_member_updated.ChatMemberUpdated.answer_sticker`" -msgstr "" - -#: ../../api/methods/send_sticker.rst:54 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker`" -msgstr "" - -#: ../../api/methods/send_sticker.rst:55 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker_pm`" -msgstr "" - -#~ msgid "" -#~ "Additional interface options. A JSON-" -#~ "serialized object for an `inline " -#~ "keyboard `_, " -#~ "`custom reply keyboard " -#~ "`_, instructions " -#~ "to remove reply keyboard or to " -#~ "force a reply from the user." -#~ msgstr "" - -#~ msgid "" -#~ "Sticker to send. Pass a file_id as" -#~ " String to send a file that " -#~ "exists on the Telegram servers " -#~ "(recommended), pass an HTTP URL as " -#~ "a String for Telegram to get a " -#~ ".WEBP file from the Internet, or " -#~ "upload a new one using multipart" -#~ "/form-data. :ref:`More information on " -#~ "Sending Files » `" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/send_venue.po b/docs/locale/en/LC_MESSAGES/api/methods/send_venue.po deleted file mode 100644 index ea79ba2d..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/send_venue.po +++ /dev/null @@ -1,184 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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_venue.rst:3 -msgid "sendVenue" -msgstr "" - -#: ../../api/methods/send_venue.rst:5 -msgid "Returns: :obj:`Message`" -msgstr "" - -#: aiogram.methods.send_venue.SendVenue:1 of -msgid "" -"Use this method to send information about a venue. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.methods.send_venue.SendVenue:3 of -msgid "Source: https://core.telegram.org/bots/api#sendvenue" -msgstr "" - -#: ../../docstring aiogram.methods.send_venue.SendVenue.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: ../../docstring aiogram.methods.send_venue.SendVenue.latitude:1 of -msgid "Latitude of the venue" -msgstr "" - -#: ../../docstring aiogram.methods.send_venue.SendVenue.longitude:1 of -msgid "Longitude of the venue" -msgstr "" - -#: ../../docstring aiogram.methods.send_venue.SendVenue.title:1 of -msgid "Name of the venue" -msgstr "" - -#: ../../docstring aiogram.methods.send_venue.SendVenue.address:1 of -msgid "Address of the venue" -msgstr "" - -#: ../../docstring aiogram.methods.send_venue.SendVenue.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_venue.SendVenue.foursquare_id:1 of -msgid "Foursquare identifier of the venue" -msgstr "" - -#: ../../docstring aiogram.methods.send_venue.SendVenue.foursquare_type:1 of -msgid "" -"Foursquare type of the venue, if known. (For example, " -"'arts_entertainment/default', 'arts_entertainment/aquarium' or " -"'food/icecream'.)" -msgstr "" - -#: ../../docstring aiogram.methods.send_venue.SendVenue.google_place_id:1 of -msgid "Google Places identifier of the venue" -msgstr "" - -#: ../../docstring aiogram.methods.send_venue.SendVenue.google_place_type:1 of -msgid "" -"Google Places type of the venue. (See `supported types " -"`_.)" -msgstr "" - -#: ../../docstring aiogram.methods.send_venue.SendVenue.disable_notification:1 -#: of -msgid "" -"Sends the message `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: ../../docstring aiogram.methods.send_venue.SendVenue.protect_content:1 of -msgid "Protects the contents of the sent message from forwarding and saving" -msgstr "" - -#: ../../docstring aiogram.methods.send_venue.SendVenue.reply_to_message_id:1 -#: of -msgid "If the message is a reply, ID of the original message" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_venue.SendVenue.allow_sending_without_reply:1 of -msgid "" -"Pass :code:`True` if the message should be sent even if the specified " -"replied-to message is not found" -msgstr "" - -#: ../../docstring aiogram.methods.send_venue.SendVenue.reply_markup:1 of -msgid "" -"Additional interface options. A JSON-serialized object for an `inline " -"keyboard `_, " -"`custom reply keyboard " -"`_, instructions to " -"remove reply keyboard or to force a reply from the user." -msgstr "" - -#: ../../api/methods/send_venue.rst:15 -msgid "Usage" -msgstr "" - -#: ../../api/methods/send_venue.rst:18 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/send_venue.rst:26 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/send_venue.rst:28 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/send_venue.rst:30 -msgid ":code:`from aiogram.methods.send_venue import SendVenue`" -msgstr "" - -#: ../../api/methods/send_venue.rst:31 -msgid "alias: :code:`from aiogram.methods import SendVenue`" -msgstr "" - -#: ../../api/methods/send_venue.rst:34 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/send_venue.rst:41 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/send_venue.rst:49 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/send_venue.rst:51 -msgid ":meth:`aiogram.types.message.Message.answer_venue`" -msgstr "" - -#: ../../api/methods/send_venue.rst:52 -msgid ":meth:`aiogram.types.message.Message.reply_venue`" -msgstr "" - -#: ../../api/methods/send_venue.rst:53 -msgid ":meth:`aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue`" -msgstr "" - -#: ../../api/methods/send_venue.rst:54 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_venue`" -msgstr "" - -#: ../../api/methods/send_venue.rst:55 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm`" -msgstr "" - -#~ msgid "" -#~ "Additional interface options. A JSON-" -#~ "serialized object for an `inline " -#~ "keyboard `_, " -#~ "`custom reply keyboard " -#~ "`_, instructions " -#~ "to remove reply keyboard or to " -#~ "force a reply from the user." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/send_video.po b/docs/locale/en/LC_MESSAGES/api/methods/send_video.po deleted file mode 100644 index 2e2b836f..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/send_video.po +++ /dev/null @@ -1,213 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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_video.rst:3 -msgid "sendVideo" -msgstr "" - -#: ../../api/methods/send_video.rst:5 -msgid "Returns: :obj:`Message`" -msgstr "" - -#: aiogram.methods.send_video.SendVideo:1 of -msgid "" -"Use this method to send video files, Telegram clients support MPEG4 " -"videos (other formats may be sent as " -":class:`aiogram.types.document.Document`). On success, the sent " -":class:`aiogram.types.message.Message` is returned. Bots can currently " -"send video files of up to 50 MB in size, this limit may be changed in the" -" future." -msgstr "" - -#: aiogram.methods.send_video.SendVideo:3 of -msgid "Source: https://core.telegram.org/bots/api#sendvideo" -msgstr "" - -#: ../../docstring aiogram.methods.send_video.SendVideo.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: ../../docstring aiogram.methods.send_video.SendVideo.video:1 of -msgid "" -"Video to send. Pass a file_id as String to send a video that exists on " -"the Telegram servers (recommended), pass an HTTP URL as a String for " -"Telegram to get a video from the Internet, or upload a new video using " -"multipart/form-data. :ref:`More information on Sending Files » `" -msgstr "" - -#: ../../docstring aiogram.methods.send_video.SendVideo.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_video.SendVideo.duration:1 of -msgid "Duration of sent video in seconds" -msgstr "" - -#: ../../docstring aiogram.methods.send_video.SendVideo.width:1 of -msgid "Video width" -msgstr "" - -#: ../../docstring aiogram.methods.send_video.SendVideo.height:1 of -msgid "Video height" -msgstr "" - -#: ../../docstring aiogram.methods.send_video.SendVideo.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://' if the thumbnail was " -"uploaded using multipart/form-data under . :ref:`More " -"information on Sending Files » `" -msgstr "" - -#: ../../docstring aiogram.methods.send_video.SendVideo.caption:1 of -msgid "" -"Video caption (may also be used when resending videos by *file_id*), " -"0-1024 characters after entities parsing" -msgstr "" - -#: ../../docstring aiogram.methods.send_video.SendVideo.parse_mode:1 of -msgid "" -"Mode for parsing entities in the video caption. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: ../../docstring aiogram.methods.send_video.SendVideo.caption_entities:1 of -msgid "" -"A JSON-serialized list of special entities that appear in the caption, " -"which can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring aiogram.methods.send_video.SendVideo.has_spoiler:1 of -msgid "" -"Pass :code:`True` if the video needs to be covered with a spoiler " -"animation" -msgstr "" - -#: ../../docstring aiogram.methods.send_video.SendVideo.supports_streaming:1 of -msgid "Pass :code:`True` if the uploaded video is suitable for streaming" -msgstr "" - -#: ../../docstring aiogram.methods.send_video.SendVideo.disable_notification:1 -#: of -msgid "" -"Sends the message `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: ../../docstring aiogram.methods.send_video.SendVideo.protect_content:1 of -msgid "Protects the contents of the sent message from forwarding and saving" -msgstr "" - -#: ../../docstring aiogram.methods.send_video.SendVideo.reply_to_message_id:1 -#: of -msgid "If the message is a reply, ID of the original message" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_video.SendVideo.allow_sending_without_reply:1 of -msgid "" -"Pass :code:`True` if the message should be sent even if the specified " -"replied-to message is not found" -msgstr "" - -#: ../../docstring aiogram.methods.send_video.SendVideo.reply_markup:1 of -msgid "" -"Additional interface options. A JSON-serialized object for an `inline " -"keyboard `_, " -"`custom reply keyboard " -"`_, instructions to " -"remove reply keyboard or to force a reply from the user." -msgstr "" - -#: ../../api/methods/send_video.rst:15 -msgid "Usage" -msgstr "" - -#: ../../api/methods/send_video.rst:18 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/send_video.rst:26 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/send_video.rst:28 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/send_video.rst:30 -msgid ":code:`from aiogram.methods.send_video import SendVideo`" -msgstr "" - -#: ../../api/methods/send_video.rst:31 -msgid "alias: :code:`from aiogram.methods import SendVideo`" -msgstr "" - -#: ../../api/methods/send_video.rst:34 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/send_video.rst:41 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/send_video.rst:49 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/send_video.rst:51 -msgid ":meth:`aiogram.types.message.Message.answer_video`" -msgstr "" - -#: ../../api/methods/send_video.rst:52 -msgid ":meth:`aiogram.types.message.Message.reply_video`" -msgstr "" - -#: ../../api/methods/send_video.rst:53 -msgid ":meth:`aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video`" -msgstr "" - -#: ../../api/methods/send_video.rst:54 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_video`" -msgstr "" - -#: ../../api/methods/send_video.rst:55 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm`" -msgstr "" - -#~ msgid "" -#~ "Additional interface options. A JSON-" -#~ "serialized object for an `inline " -#~ "keyboard `_, " -#~ "`custom reply keyboard " -#~ "`_, instructions " -#~ "to remove reply keyboard or to " -#~ "force a reply from the user." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/send_video_note.po b/docs/locale/en/LC_MESSAGES/api/methods/send_video_note.po deleted file mode 100644 index f9c80a5e..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/send_video_note.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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_video_note.rst:3 -msgid "sendVideoNote" -msgstr "" - -#: ../../api/methods/send_video_note.rst:5 -msgid "Returns: :obj:`Message`" -msgstr "" - -#: aiogram.methods.send_video_note.SendVideoNote:1 of -msgid "" -"As of `v.4.0 `_, " -"Telegram clients support rounded square MPEG4 videos of up to 1 minute " -"long. Use this method to send video messages. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.methods.send_video_note.SendVideoNote:3 of -msgid "Source: https://core.telegram.org/bots/api#sendvideonote" -msgstr "" - -#: ../../docstring aiogram.methods.send_video_note.SendVideoNote.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: ../../docstring aiogram.methods.send_video_note.SendVideoNote.video_note:1 -#: of -msgid "" -"Video note to send. Pass a file_id as String to send a video note that " -"exists on the Telegram servers (recommended) or upload a new video using " -"multipart/form-data. :ref:`More information on Sending Files » `. Sending video notes by a URL is currently unsupported" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_video_note.SendVideoNote.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_video_note.SendVideoNote.duration:1 of -msgid "Duration of sent video in seconds" -msgstr "" - -#: ../../docstring aiogram.methods.send_video_note.SendVideoNote.length:1 of -msgid "Video width and height, i.e. diameter of the video message" -msgstr "" - -#: ../../docstring aiogram.methods.send_video_note.SendVideoNote.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://' if the thumbnail was " -"uploaded using multipart/form-data under . :ref:`More " -"information on Sending Files » `" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_video_note.SendVideoNote.disable_notification:1 of -msgid "" -"Sends the message `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_video_note.SendVideoNote.protect_content:1 of -msgid "Protects the contents of the sent message from forwarding and saving" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_video_note.SendVideoNote.reply_to_message_id:1 of -msgid "If the message is a reply, ID of the original message" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_video_note.SendVideoNote.allow_sending_without_reply:1 -#: of -msgid "" -"Pass :code:`True` if the message should be sent even if the specified " -"replied-to message is not found" -msgstr "" - -#: ../../docstring aiogram.methods.send_video_note.SendVideoNote.reply_markup:1 -#: of -msgid "" -"Additional interface options. A JSON-serialized object for an `inline " -"keyboard `_, " -"`custom reply keyboard " -"`_, instructions to " -"remove reply keyboard or to force a reply from the user." -msgstr "" - -#: ../../api/methods/send_video_note.rst:15 -msgid "Usage" -msgstr "" - -#: ../../api/methods/send_video_note.rst:18 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/send_video_note.rst:26 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/send_video_note.rst:28 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/send_video_note.rst:30 -msgid ":code:`from aiogram.methods.send_video_note import SendVideoNote`" -msgstr "" - -#: ../../api/methods/send_video_note.rst:31 -msgid "alias: :code:`from aiogram.methods import SendVideoNote`" -msgstr "" - -#: ../../api/methods/send_video_note.rst:34 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/send_video_note.rst:41 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/send_video_note.rst:49 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/send_video_note.rst:51 -msgid ":meth:`aiogram.types.message.Message.answer_video_note`" -msgstr "" - -#: ../../api/methods/send_video_note.rst:52 -msgid ":meth:`aiogram.types.message.Message.reply_video_note`" -msgstr "" - -#: ../../api/methods/send_video_note.rst:53 -msgid ":meth:`aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video_note`" -msgstr "" - -#: ../../api/methods/send_video_note.rst:54 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note`" -msgstr "" - -#: ../../api/methods/send_video_note.rst:55 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note_pm`" -msgstr "" - -#~ msgid "" -#~ "Additional interface options. A JSON-" -#~ "serialized object for an `inline " -#~ "keyboard `_, " -#~ "`custom reply keyboard " -#~ "`_, instructions " -#~ "to remove reply keyboard or to " -#~ "force a reply from the user." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/send_voice.po b/docs/locale/en/LC_MESSAGES/api/methods/send_voice.po deleted file mode 100644 index d46ac20e..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/send_voice.po +++ /dev/null @@ -1,183 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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_voice.rst:3 -msgid "sendVoice" -msgstr "" - -#: ../../api/methods/send_voice.rst:5 -msgid "Returns: :obj:`Message`" -msgstr "" - -#: aiogram.methods.send_voice.SendVoice:1 of -msgid "" -"Use this method to send audio files, if you want Telegram clients to " -"display the file as a playable voice message. For this to work, your " -"audio must be in an .OGG file encoded with OPUS (other formats may be " -"sent as :class:`aiogram.types.audio.Audio` or " -":class:`aiogram.types.document.Document`). On success, the sent " -":class:`aiogram.types.message.Message` is returned. Bots can currently " -"send voice messages of up to 50 MB in size, this limit may be changed in " -"the future." -msgstr "" - -#: aiogram.methods.send_voice.SendVoice:3 of -msgid "Source: https://core.telegram.org/bots/api#sendvoice" -msgstr "" - -#: ../../docstring aiogram.methods.send_voice.SendVoice.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: ../../docstring aiogram.methods.send_voice.SendVoice.voice:1 of -msgid "" -"Audio file to send. Pass a file_id as String to send a file that exists " -"on the Telegram servers (recommended), pass an HTTP URL as a String for " -"Telegram to get a file from the Internet, or upload a new one using " -"multipart/form-data. :ref:`More information on Sending Files » `" -msgstr "" - -#: ../../docstring aiogram.methods.send_voice.SendVoice.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_voice.SendVoice.caption:1 of -msgid "Voice message caption, 0-1024 characters after entities parsing" -msgstr "" - -#: ../../docstring aiogram.methods.send_voice.SendVoice.parse_mode:1 of -msgid "" -"Mode for parsing entities in the voice message caption. See `formatting " -"options `_ for " -"more details." -msgstr "" - -#: ../../docstring aiogram.methods.send_voice.SendVoice.caption_entities:1 of -msgid "" -"A JSON-serialized list of special entities that appear in the caption, " -"which can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring aiogram.methods.send_voice.SendVoice.duration:1 of -msgid "Duration of the voice message in seconds" -msgstr "" - -#: ../../docstring aiogram.methods.send_voice.SendVoice.disable_notification:1 -#: of -msgid "" -"Sends the message `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: ../../docstring aiogram.methods.send_voice.SendVoice.protect_content:1 of -msgid "Protects the contents of the sent message from forwarding and saving" -msgstr "" - -#: ../../docstring aiogram.methods.send_voice.SendVoice.reply_to_message_id:1 -#: of -msgid "If the message is a reply, ID of the original message" -msgstr "" - -#: ../../docstring -#: aiogram.methods.send_voice.SendVoice.allow_sending_without_reply:1 of -msgid "" -"Pass :code:`True` if the message should be sent even if the specified " -"replied-to message is not found" -msgstr "" - -#: ../../docstring aiogram.methods.send_voice.SendVoice.reply_markup:1 of -msgid "" -"Additional interface options. A JSON-serialized object for an `inline " -"keyboard `_, " -"`custom reply keyboard " -"`_, instructions to " -"remove reply keyboard or to force a reply from the user." -msgstr "" - -#: ../../api/methods/send_voice.rst:15 -msgid "Usage" -msgstr "" - -#: ../../api/methods/send_voice.rst:18 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/send_voice.rst:26 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/send_voice.rst:28 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/send_voice.rst:30 -msgid ":code:`from aiogram.methods.send_voice import SendVoice`" -msgstr "" - -#: ../../api/methods/send_voice.rst:31 -msgid "alias: :code:`from aiogram.methods import SendVoice`" -msgstr "" - -#: ../../api/methods/send_voice.rst:34 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/send_voice.rst:41 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/send_voice.rst:49 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/send_voice.rst:51 -msgid ":meth:`aiogram.types.message.Message.answer_voice`" -msgstr "" - -#: ../../api/methods/send_voice.rst:52 -msgid ":meth:`aiogram.types.message.Message.reply_voice`" -msgstr "" - -#: ../../api/methods/send_voice.rst:53 -msgid ":meth:`aiogram.types.chat_member_updated.ChatMemberUpdated.answer_voice`" -msgstr "" - -#: ../../api/methods/send_voice.rst:54 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_voice`" -msgstr "" - -#: ../../api/methods/send_voice.rst:55 -msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_voice_pm`" -msgstr "" - -#~ msgid "" -#~ "Additional interface options. A JSON-" -#~ "serialized object for an `inline " -#~ "keyboard `_, " -#~ "`custom reply keyboard " -#~ "`_, instructions " -#~ "to remove reply keyboard or to " -#~ "force a reply from the user." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_chat_administrator_custom_title.po b/docs/locale/en/LC_MESSAGES/api/methods/set_chat_administrator_custom_title.po deleted file mode 100644 index ee28db9b..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_chat_administrator_custom_title.po +++ /dev/null @@ -1,102 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.10.3\n" - -#: ../../api/methods/set_chat_administrator_custom_title.rst:3 -msgid "setChatAdministratorCustomTitle" -msgstr "" - -#: ../../api/methods/set_chat_administrator_custom_title.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_chat_administrator_custom_title.SetChatAdministratorCustomTitle:1 -#: of -msgid "" -"Use this method to set a custom title for an administrator in a " -"supergroup promoted by the bot. Returns :code:`True` on success." -msgstr "" - -#: aiogram.methods.set_chat_administrator_custom_title.SetChatAdministratorCustomTitle:3 -#: of -msgid "Source: https://core.telegram.org/bots/api#setchatadministratorcustomtitle" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_chat_administrator_custom_title.SetChatAdministratorCustomTitle.chat_id:1 -#: of -msgid "" -"Unique identifier for the target chat or username of the target " -"supergroup (in the format :code:`@supergroupusername`)" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_chat_administrator_custom_title.SetChatAdministratorCustomTitle.user_id:1 -#: of -msgid "Unique identifier of the target user" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_chat_administrator_custom_title.SetChatAdministratorCustomTitle.custom_title:1 -#: of -msgid "" -"New custom title for the administrator; 0-16 characters, emoji are not " -"allowed" -msgstr "" - -#: ../../api/methods/set_chat_administrator_custom_title.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_chat_administrator_custom_title.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_chat_administrator_custom_title.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_chat_administrator_custom_title.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_chat_administrator_custom_title.rst:29 -msgid "" -":code:`from aiogram.methods.set_chat_administrator_custom_title import " -"SetChatAdministratorCustomTitle`" -msgstr "" - -#: ../../api/methods/set_chat_administrator_custom_title.rst:30 -msgid "alias: :code:`from aiogram.methods import SetChatAdministratorCustomTitle`" -msgstr "" - -#: ../../api/methods/set_chat_administrator_custom_title.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_chat_administrator_custom_title.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/set_chat_administrator_custom_title.rst:48 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/set_chat_administrator_custom_title.rst:50 -msgid ":meth:`aiogram.types.chat.Chat.set_administrator_custom_title`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_chat_description.po b/docs/locale/en/LC_MESSAGES/api/methods/set_chat_description.po deleted file mode 100644 index 3c42acee..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_chat_description.po +++ /dev/null @@ -1,92 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.10.3\n" - -#: ../../api/methods/set_chat_description.rst:3 -msgid "setChatDescription" -msgstr "" - -#: ../../api/methods/set_chat_description.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_chat_description.SetChatDescription:1 of -msgid "" -"Use this method to change the description of a group, a supergroup or a " -"channel. The bot must be an administrator in the chat for this to work " -"and must have the appropriate administrator rights. Returns :code:`True` " -"on success." -msgstr "" - -#: aiogram.methods.set_chat_description.SetChatDescription:3 of -msgid "Source: https://core.telegram.org/bots/api#setchatdescription" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_chat_description.SetChatDescription.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_chat_description.SetChatDescription.description:1 of -msgid "New chat description, 0-255 characters" -msgstr "" - -#: ../../api/methods/set_chat_description.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_chat_description.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_chat_description.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_chat_description.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_chat_description.rst:29 -msgid "" -":code:`from aiogram.methods.set_chat_description import " -"SetChatDescription`" -msgstr "" - -#: ../../api/methods/set_chat_description.rst:30 -msgid "alias: :code:`from aiogram.methods import SetChatDescription`" -msgstr "" - -#: ../../api/methods/set_chat_description.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_chat_description.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/set_chat_description.rst:48 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/set_chat_description.rst:50 -msgid ":meth:`aiogram.types.chat.Chat.set_description`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_chat_menu_button.po b/docs/locale/en/LC_MESSAGES/api/methods/set_chat_menu_button.po deleted file mode 100644 index b40236df..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_chat_menu_button.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.10.3\n" - -#: ../../api/methods/set_chat_menu_button.rst:3 -msgid "setChatMenuButton" -msgstr "" - -#: ../../api/methods/set_chat_menu_button.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_chat_menu_button.SetChatMenuButton:1 of -msgid "" -"Use this method to change the bot's menu button in a private chat, or the" -" default menu button. Returns :code:`True` on success." -msgstr "" - -#: aiogram.methods.set_chat_menu_button.SetChatMenuButton:3 of -msgid "Source: https://core.telegram.org/bots/api#setchatmenubutton" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_chat_menu_button.SetChatMenuButton.chat_id:1 of -msgid "" -"Unique identifier for the target private chat. If not specified, default " -"bot's menu button will be changed" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_chat_menu_button.SetChatMenuButton.menu_button:1 of -msgid "" -"A JSON-serialized object for the bot's new menu button. Defaults to " -":class:`aiogram.types.menu_button_default.MenuButtonDefault`" -msgstr "" - -#: ../../api/methods/set_chat_menu_button.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_chat_menu_button.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_chat_menu_button.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_chat_menu_button.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_chat_menu_button.rst:29 -msgid ":code:`from aiogram.methods.set_chat_menu_button import SetChatMenuButton`" -msgstr "" - -#: ../../api/methods/set_chat_menu_button.rst:30 -msgid "alias: :code:`from aiogram.methods import SetChatMenuButton`" -msgstr "" - -#: ../../api/methods/set_chat_menu_button.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_chat_menu_button.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_chat_permissions.po b/docs/locale/en/LC_MESSAGES/api/methods/set_chat_permissions.po deleted file mode 100644 index ff34fff6..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_chat_permissions.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/set_chat_permissions.rst:3 -msgid "setChatPermissions" -msgstr "" - -#: ../../api/methods/set_chat_permissions.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_chat_permissions.SetChatPermissions:1 of -msgid "" -"Use this method to set default chat permissions for all members. The bot " -"must be an administrator in the group or a supergroup for this to work " -"and must have the *can_restrict_members* administrator rights. Returns " -":code:`True` on success." -msgstr "" - -#: aiogram.methods.set_chat_permissions.SetChatPermissions:3 of -msgid "Source: https://core.telegram.org/bots/api#setchatpermissions" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_chat_permissions.SetChatPermissions.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target " -"supergroup (in the format :code:`@supergroupusername`)" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_chat_permissions.SetChatPermissions.permissions:1 of -msgid "A JSON-serialized object for new default chat permissions" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_chat_permissions.SetChatPermissions.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 "" - -#: ../../api/methods/set_chat_permissions.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_chat_permissions.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_chat_permissions.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_chat_permissions.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_chat_permissions.rst:29 -msgid "" -":code:`from aiogram.methods.set_chat_permissions import " -"SetChatPermissions`" -msgstr "" - -#: ../../api/methods/set_chat_permissions.rst:30 -msgid "alias: :code:`from aiogram.methods import SetChatPermissions`" -msgstr "" - -#: ../../api/methods/set_chat_permissions.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_chat_permissions.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/set_chat_permissions.rst:48 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/set_chat_permissions.rst:50 -msgid ":meth:`aiogram.types.chat.Chat.set_permissions`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_chat_photo.po b/docs/locale/en/LC_MESSAGES/api/methods/set_chat_photo.po deleted file mode 100644 index ab0cc9a7..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_chat_photo.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.10.3\n" - -#: ../../api/methods/set_chat_photo.rst:3 -msgid "setChatPhoto" -msgstr "" - -#: ../../api/methods/set_chat_photo.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_chat_photo.SetChatPhoto:1 of -msgid "" -"Use this method to set a new profile photo for the chat. Photos can't be " -"changed for private chats. The bot must be an administrator in the chat " -"for this to work and must have the appropriate administrator rights. " -"Returns :code:`True` on success." -msgstr "" - -#: aiogram.methods.set_chat_photo.SetChatPhoto:3 of -msgid "Source: https://core.telegram.org/bots/api#setchatphoto" -msgstr "" - -#: ../../docstring aiogram.methods.set_chat_photo.SetChatPhoto.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: ../../docstring aiogram.methods.set_chat_photo.SetChatPhoto.photo:1 of -msgid "New chat photo, uploaded using multipart/form-data" -msgstr "" - -#: ../../api/methods/set_chat_photo.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_chat_photo.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_chat_photo.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_chat_photo.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_chat_photo.rst:29 -msgid ":code:`from aiogram.methods.set_chat_photo import SetChatPhoto`" -msgstr "" - -#: ../../api/methods/set_chat_photo.rst:30 -msgid "alias: :code:`from aiogram.methods import SetChatPhoto`" -msgstr "" - -#: ../../api/methods/set_chat_photo.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_chat_photo.rst:43 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/set_chat_photo.rst:45 -msgid ":meth:`aiogram.types.chat.Chat.set_photo`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_chat_sticker_set.po b/docs/locale/en/LC_MESSAGES/api/methods/set_chat_sticker_set.po deleted file mode 100644 index b5441109..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_chat_sticker_set.po +++ /dev/null @@ -1,92 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.10.3\n" - -#: ../../api/methods/set_chat_sticker_set.rst:3 -msgid "setChatStickerSet" -msgstr "" - -#: ../../api/methods/set_chat_sticker_set.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_chat_sticker_set.SetChatStickerSet:1 of -msgid "" -"Use this method to set a new group sticker set for a supergroup. The bot " -"must be an administrator in the chat for this to work and must have the " -"appropriate administrator rights. Use the field *can_set_sticker_set* " -"optionally returned in :class:`aiogram.methods.get_chat.GetChat` requests" -" to check if the bot can use this method. Returns :code:`True` on " -"success." -msgstr "" - -#: aiogram.methods.set_chat_sticker_set.SetChatStickerSet:3 of -msgid "Source: https://core.telegram.org/bots/api#setchatstickerset" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_chat_sticker_set.SetChatStickerSet.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target " -"supergroup (in the format :code:`@supergroupusername`)" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_chat_sticker_set.SetChatStickerSet.sticker_set_name:1 of -msgid "Name of the sticker set to be set as the group sticker set" -msgstr "" - -#: ../../api/methods/set_chat_sticker_set.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_chat_sticker_set.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_chat_sticker_set.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_chat_sticker_set.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_chat_sticker_set.rst:29 -msgid ":code:`from aiogram.methods.set_chat_sticker_set import SetChatStickerSet`" -msgstr "" - -#: ../../api/methods/set_chat_sticker_set.rst:30 -msgid "alias: :code:`from aiogram.methods import SetChatStickerSet`" -msgstr "" - -#: ../../api/methods/set_chat_sticker_set.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_chat_sticker_set.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/set_chat_sticker_set.rst:48 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/set_chat_sticker_set.rst:50 -msgid ":meth:`aiogram.types.chat.Chat.set_sticker_set`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_chat_title.po b/docs/locale/en/LC_MESSAGES/api/methods/set_chat_title.po deleted file mode 100644 index da3c936e..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_chat_title.po +++ /dev/null @@ -1,91 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.10.3\n" - -#: ../../api/methods/set_chat_title.rst:3 -msgid "setChatTitle" -msgstr "" - -#: ../../api/methods/set_chat_title.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_chat_title.SetChatTitle:1 of -msgid "" -"Use this method to change the title of a chat. Titles can't be changed " -"for private chats. The bot must be an administrator in the chat for this " -"to work and must have the appropriate administrator rights. Returns " -":code:`True` on success." -msgstr "" - -#: aiogram.methods.set_chat_title.SetChatTitle:3 of -msgid "Source: https://core.telegram.org/bots/api#setchattitle" -msgstr "" - -#: ../../docstring aiogram.methods.set_chat_title.SetChatTitle.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: ../../docstring aiogram.methods.set_chat_title.SetChatTitle.title:1 of -msgid "New chat title, 1-128 characters" -msgstr "" - -#: ../../api/methods/set_chat_title.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_chat_title.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_chat_title.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_chat_title.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_chat_title.rst:29 -msgid ":code:`from aiogram.methods.set_chat_title import SetChatTitle`" -msgstr "" - -#: ../../api/methods/set_chat_title.rst:30 -msgid "alias: :code:`from aiogram.methods import SetChatTitle`" -msgstr "" - -#: ../../api/methods/set_chat_title.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_chat_title.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/set_chat_title.rst:48 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/set_chat_title.rst:50 -msgid ":meth:`aiogram.types.chat.Chat.set_title`" -msgstr "" - -#~ msgid "New chat title, 1-255 characters" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_custom_emoji_sticker_set_thumbnail.po b/docs/locale/en/LC_MESSAGES/api/methods/set_custom_emoji_sticker_set_thumbnail.po deleted file mode 100644 index afadc9a2..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_custom_emoji_sticker_set_thumbnail.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/set_custom_emoji_sticker_set_thumbnail.rst:3 -msgid "setCustomEmojiStickerSetThumbnail" -msgstr "" - -#: ../../api/methods/set_custom_emoji_sticker_set_thumbnail.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_custom_emoji_sticker_set_thumbnail.SetCustomEmojiStickerSetThumbnail:1 -#: of -msgid "" -"Use this method to set the thumbnail of a custom emoji sticker set. " -"Returns :code:`True` on success." -msgstr "" - -#: aiogram.methods.set_custom_emoji_sticker_set_thumbnail.SetCustomEmojiStickerSetThumbnail:3 -#: of -msgid "" -"Source: " -"https://core.telegram.org/bots/api#setcustomemojistickersetthumbnail" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_custom_emoji_sticker_set_thumbnail.SetCustomEmojiStickerSetThumbnail.name:1 -#: of -msgid "Sticker set name" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_custom_emoji_sticker_set_thumbnail.SetCustomEmojiStickerSetThumbnail.custom_emoji_id:1 -#: of -msgid "" -"Custom emoji identifier of a sticker from the sticker set; pass an empty " -"string to drop the thumbnail and use the first sticker as the thumbnail." -msgstr "" - -#: ../../api/methods/set_custom_emoji_sticker_set_thumbnail.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_custom_emoji_sticker_set_thumbnail.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_custom_emoji_sticker_set_thumbnail.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_custom_emoji_sticker_set_thumbnail.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_custom_emoji_sticker_set_thumbnail.rst:29 -msgid "" -":code:`from aiogram.methods.set_custom_emoji_sticker_set_thumbnail import" -" SetCustomEmojiStickerSetThumbnail`" -msgstr "" - -#: ../../api/methods/set_custom_emoji_sticker_set_thumbnail.rst:30 -msgid "" -"alias: :code:`from aiogram.methods import " -"SetCustomEmojiStickerSetThumbnail`" -msgstr "" - -#: ../../api/methods/set_custom_emoji_sticker_set_thumbnail.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_custom_emoji_sticker_set_thumbnail.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_game_score.po b/docs/locale/en/LC_MESSAGES/api/methods/set_game_score.po deleted file mode 100644 index 215ab0ab..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_game_score.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.10.3\n" - -#: ../../api/methods/set_game_score.rst:3 -msgid "setGameScore" -msgstr "" - -#: ../../api/methods/set_game_score.rst:5 -msgid "Returns: :obj:`Union[Message, bool]`" -msgstr "" - -#: aiogram.methods.set_game_score.SetGameScore:1 of -msgid "" -"Use this method to set the score of the specified user in a game message." -" On success, if the message is not an inline message, the " -":class:`aiogram.types.message.Message` is returned, otherwise " -":code:`True` is returned. Returns an error, if the new score is not " -"greater than the user's current score in the chat and *force* is " -":code:`False`." -msgstr "" - -#: aiogram.methods.set_game_score.SetGameScore:3 of -msgid "Source: https://core.telegram.org/bots/api#setgamescore" -msgstr "" - -#: ../../docstring aiogram.methods.set_game_score.SetGameScore.user_id:1 of -msgid "User identifier" -msgstr "" - -#: ../../docstring aiogram.methods.set_game_score.SetGameScore.score:1 of -msgid "New score, must be non-negative" -msgstr "" - -#: ../../docstring aiogram.methods.set_game_score.SetGameScore.force:1 of -msgid "" -"Pass :code:`True` if the high score is allowed to decrease. This can be " -"useful when fixing mistakes or banning cheaters" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_game_score.SetGameScore.disable_edit_message:1 of -msgid "" -"Pass :code:`True` if the game message should not be automatically edited " -"to include the current scoreboard" -msgstr "" - -#: ../../docstring aiogram.methods.set_game_score.SetGameScore.chat_id:1 of -msgid "" -"Required if *inline_message_id* is not specified. Unique identifier for " -"the target chat" -msgstr "" - -#: ../../docstring aiogram.methods.set_game_score.SetGameScore.message_id:1 of -msgid "" -"Required if *inline_message_id* is not specified. Identifier of the sent " -"message" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_game_score.SetGameScore.inline_message_id:1 of -msgid "" -"Required if *chat_id* and *message_id* are not specified. Identifier of " -"the inline message" -msgstr "" - -#: ../../api/methods/set_game_score.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_game_score.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_game_score.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_game_score.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_game_score.rst:29 -msgid ":code:`from aiogram.methods.set_game_score import SetGameScore`" -msgstr "" - -#: ../../api/methods/set_game_score.rst:30 -msgid "alias: :code:`from aiogram.methods import SetGameScore`" -msgstr "" - -#: ../../api/methods/set_game_score.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_game_score.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_my_commands.po b/docs/locale/en/LC_MESSAGES/api/methods/set_my_commands.po deleted file mode 100644 index 8a9400fb..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_my_commands.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.10.3\n" - -#: ../../api/methods/set_my_commands.rst:3 -msgid "setMyCommands" -msgstr "" - -#: ../../api/methods/set_my_commands.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_my_commands.SetMyCommands:1 of -msgid "" -"Use this method to change the list of the bot's commands. See `this " -"manual `_ for more " -"details about bot commands. Returns :code:`True` on success." -msgstr "" - -#: aiogram.methods.set_my_commands.SetMyCommands:3 of -msgid "Source: https://core.telegram.org/bots/api#setmycommands" -msgstr "" - -#: ../../docstring aiogram.methods.set_my_commands.SetMyCommands.commands:1 of -msgid "" -"A JSON-serialized list of bot commands to be set as the list of the bot's" -" commands. At most 100 commands can be specified." -msgstr "" - -#: ../../docstring aiogram.methods.set_my_commands.SetMyCommands.scope:1 of -msgid "" -"A JSON-serialized object, describing scope of users for which the " -"commands are relevant. Defaults to " -":class:`aiogram.types.bot_command_scope_default.BotCommandScopeDefault`." -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_my_commands.SetMyCommands.language_code:1 of -msgid "" -"A two-letter ISO 639-1 language code. If empty, commands will be applied " -"to all users from the given scope, for whose language there are no " -"dedicated commands" -msgstr "" - -#: ../../api/methods/set_my_commands.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_my_commands.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_my_commands.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_my_commands.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_my_commands.rst:29 -msgid ":code:`from aiogram.methods.set_my_commands import SetMyCommands`" -msgstr "" - -#: ../../api/methods/set_my_commands.rst:30 -msgid "alias: :code:`from aiogram.methods import SetMyCommands`" -msgstr "" - -#: ../../api/methods/set_my_commands.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_my_commands.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" - -#~ msgid "" -#~ "Use this method to change the list" -#~ " of the bot's commands. See " -#~ "`https://core.telegram.org/bots#commands " -#~ "`_`https://core.telegram.org/bots#commands" -#~ " `_ for more" -#~ " details about bot commands. Returns " -#~ ":code:`True` on success." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_my_default_administrator_rights.po b/docs/locale/en/LC_MESSAGES/api/methods/set_my_default_administrator_rights.po deleted file mode 100644 index 87382f51..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_my_default_administrator_rights.po +++ /dev/null @@ -1,102 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/set_my_default_administrator_rights.rst:3 -msgid "setMyDefaultAdministratorRights" -msgstr "" - -#: ../../api/methods/set_my_default_administrator_rights.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_my_default_administrator_rights.SetMyDefaultAdministratorRights:1 -#: of -msgid "" -"Use this method to change the default administrator rights requested by " -"the bot when it's added as an administrator to groups or channels. These " -"rights will be suggested to users, but they are free to modify the list " -"before adding the bot. Returns :code:`True` on success." -msgstr "" - -#: aiogram.methods.set_my_default_administrator_rights.SetMyDefaultAdministratorRights:3 -#: of -msgid "Source: https://core.telegram.org/bots/api#setmydefaultadministratorrights" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_my_default_administrator_rights.SetMyDefaultAdministratorRights.rights:1 -#: of -msgid "" -"A JSON-serialized object describing new default administrator rights. If " -"not specified, the default administrator rights will be cleared." -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_my_default_administrator_rights.SetMyDefaultAdministratorRights.for_channels:1 -#: of -msgid "" -"Pass :code:`True` to change the default administrator rights of the bot " -"in channels. Otherwise, the default administrator rights of the bot for " -"groups and supergroups will be changed." -msgstr "" - -#: ../../api/methods/set_my_default_administrator_rights.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_my_default_administrator_rights.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_my_default_administrator_rights.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_my_default_administrator_rights.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_my_default_administrator_rights.rst:29 -msgid "" -":code:`from aiogram.methods.set_my_default_administrator_rights import " -"SetMyDefaultAdministratorRights`" -msgstr "" - -#: ../../api/methods/set_my_default_administrator_rights.rst:30 -msgid "alias: :code:`from aiogram.methods import SetMyDefaultAdministratorRights`" -msgstr "" - -#: ../../api/methods/set_my_default_administrator_rights.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_my_default_administrator_rights.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" - -#~ msgid "" -#~ "Use this method to change the " -#~ "default administrator rights requested by " -#~ "the bot when it's added as an " -#~ "administrator to groups or channels. " -#~ "These rights will be suggested to " -#~ "users, but they are are free to" -#~ " modify the list before adding the" -#~ " bot. Returns :code:`True` on success." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_my_description.po b/docs/locale/en/LC_MESSAGES/api/methods/set_my_description.po deleted file mode 100644 index b266de07..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_my_description.po +++ /dev/null @@ -1,83 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/set_my_description.rst:3 -msgid "setMyDescription" -msgstr "" - -#: ../../api/methods/set_my_description.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_my_description.SetMyDescription:1 of -msgid "" -"Use this method to change the bot's description, which is shown in the " -"chat with the bot if the chat is empty. Returns :code:`True` on success." -msgstr "" - -#: aiogram.methods.set_my_description.SetMyDescription:3 of -msgid "Source: https://core.telegram.org/bots/api#setmydescription" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_my_description.SetMyDescription.description:1 of -msgid "" -"New bot description; 0-512 characters. Pass an empty string to remove the" -" dedicated description for the given language." -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_my_description.SetMyDescription.language_code:1 of -msgid "" -"A two-letter ISO 639-1 language code. If empty, the description will be " -"applied to all users for whose language there is no dedicated " -"description." -msgstr "" - -#: ../../api/methods/set_my_description.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_my_description.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_my_description.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_my_description.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_my_description.rst:29 -msgid ":code:`from aiogram.methods.set_my_description import SetMyDescription`" -msgstr "" - -#: ../../api/methods/set_my_description.rst:30 -msgid "alias: :code:`from aiogram.methods import SetMyDescription`" -msgstr "" - -#: ../../api/methods/set_my_description.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_my_description.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_my_name.po b/docs/locale/en/LC_MESSAGES/api/methods/set_my_name.po deleted file mode 100644 index b5befc8d..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_my_name.po +++ /dev/null @@ -1,78 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/set_my_name.rst:3 -msgid "setMyName" -msgstr "" - -#: ../../api/methods/set_my_name.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_my_name.SetMyName:1 of -msgid "Use this method to change the bot's name. Returns :code:`True` on success." -msgstr "" - -#: aiogram.methods.set_my_name.SetMyName:3 of -msgid "Source: https://core.telegram.org/bots/api#setmyname" -msgstr "" - -#: ../../docstring aiogram.methods.set_my_name.SetMyName.name:1 of -msgid "" -"New bot name; 0-64 characters. Pass an empty string to remove the " -"dedicated name for the given language." -msgstr "" - -#: ../../docstring aiogram.methods.set_my_name.SetMyName.language_code:1 of -msgid "" -"A two-letter ISO 639-1 language code. If empty, the name will be shown to" -" all users for whose language there is no dedicated name." -msgstr "" - -#: ../../api/methods/set_my_name.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_my_name.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_my_name.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_my_name.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_my_name.rst:29 -msgid ":code:`from aiogram.methods.set_my_name import SetMyName`" -msgstr "" - -#: ../../api/methods/set_my_name.rst:30 -msgid "alias: :code:`from aiogram.methods import SetMyName`" -msgstr "" - -#: ../../api/methods/set_my_name.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_my_name.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_my_short_description.po b/docs/locale/en/LC_MESSAGES/api/methods/set_my_short_description.po deleted file mode 100644 index eb4e343b..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_my_short_description.po +++ /dev/null @@ -1,88 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/set_my_short_description.rst:3 -msgid "setMyShortDescription" -msgstr "" - -#: ../../api/methods/set_my_short_description.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_my_short_description.SetMyShortDescription:1 of -msgid "" -"Use this method to change the bot's short description, which is shown on " -"the bot's profile page and is sent together with the link when users " -"share the bot. Returns :code:`True` on success." -msgstr "" - -#: aiogram.methods.set_my_short_description.SetMyShortDescription:3 of -msgid "Source: https://core.telegram.org/bots/api#setmyshortdescription" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_my_short_description.SetMyShortDescription.short_description:1 -#: of -msgid "" -"New short description for the bot; 0-120 characters. Pass an empty string" -" to remove the dedicated short description for the given language." -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_my_short_description.SetMyShortDescription.language_code:1 -#: of -msgid "" -"A two-letter ISO 639-1 language code. If empty, the short description " -"will be applied to all users for whose language there is no dedicated " -"short description." -msgstr "" - -#: ../../api/methods/set_my_short_description.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_my_short_description.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_my_short_description.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_my_short_description.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_my_short_description.rst:29 -msgid "" -":code:`from aiogram.methods.set_my_short_description import " -"SetMyShortDescription`" -msgstr "" - -#: ../../api/methods/set_my_short_description.rst:30 -msgid "alias: :code:`from aiogram.methods import SetMyShortDescription`" -msgstr "" - -#: ../../api/methods/set_my_short_description.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_my_short_description.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_passport_data_errors.po b/docs/locale/en/LC_MESSAGES/api/methods/set_passport_data_errors.po deleted file mode 100644 index 5fb2b563..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_passport_data_errors.po +++ /dev/null @@ -1,87 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.10.3\n" - -#: ../../api/methods/set_passport_data_errors.rst:3 -msgid "setPassportDataErrors" -msgstr "" - -#: ../../api/methods/set_passport_data_errors.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_passport_data_errors.SetPassportDataErrors:1 of -msgid "" -"Informs a user that some of the Telegram Passport elements they provided " -"contains errors. The user will not be able to re-submit their Passport to" -" you until the errors are fixed (the contents of the field for which you " -"returned the error must change). Returns :code:`True` on success. Use " -"this if the data submitted by the user doesn't satisfy the standards your" -" service requires for any reason. For example, if a birthday date seems " -"invalid, a submitted document is blurry, a scan shows evidence of " -"tampering, etc. Supply some details in the error message to make sure the" -" user knows how to correct the issues." -msgstr "" - -#: aiogram.methods.set_passport_data_errors.SetPassportDataErrors:4 of -msgid "Source: https://core.telegram.org/bots/api#setpassportdataerrors" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_passport_data_errors.SetPassportDataErrors.user_id:1 of -msgid "User identifier" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_passport_data_errors.SetPassportDataErrors.errors:1 of -msgid "A JSON-serialized array describing the errors" -msgstr "" - -#: ../../api/methods/set_passport_data_errors.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_passport_data_errors.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_passport_data_errors.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_passport_data_errors.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_passport_data_errors.rst:29 -msgid "" -":code:`from aiogram.methods.set_passport_data_errors import " -"SetPassportDataErrors`" -msgstr "" - -#: ../../api/methods/set_passport_data_errors.rst:30 -msgid "alias: :code:`from aiogram.methods import SetPassportDataErrors`" -msgstr "" - -#: ../../api/methods/set_passport_data_errors.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_passport_data_errors.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_emoji_list.po b/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_emoji_list.po deleted file mode 100644 index ad3536b3..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_emoji_list.po +++ /dev/null @@ -1,81 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/set_sticker_emoji_list.rst:3 -msgid "setStickerEmojiList" -msgstr "" - -#: ../../api/methods/set_sticker_emoji_list.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_sticker_emoji_list.SetStickerEmojiList:1 of -msgid "" -"Use this method to change the list of emoji assigned to a regular or " -"custom emoji sticker. The sticker must belong to a sticker set created by" -" the bot. Returns :code:`True` on success." -msgstr "" - -#: aiogram.methods.set_sticker_emoji_list.SetStickerEmojiList:3 of -msgid "Source: https://core.telegram.org/bots/api#setstickeremojilist" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_sticker_emoji_list.SetStickerEmojiList.sticker:1 of -msgid "File identifier of the sticker" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_sticker_emoji_list.SetStickerEmojiList.emoji_list:1 of -msgid "A JSON-serialized list of 1-20 emoji associated with the sticker" -msgstr "" - -#: ../../api/methods/set_sticker_emoji_list.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_sticker_emoji_list.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_sticker_emoji_list.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_sticker_emoji_list.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_sticker_emoji_list.rst:29 -msgid "" -":code:`from aiogram.methods.set_sticker_emoji_list import " -"SetStickerEmojiList`" -msgstr "" - -#: ../../api/methods/set_sticker_emoji_list.rst:30 -msgid "alias: :code:`from aiogram.methods import SetStickerEmojiList`" -msgstr "" - -#: ../../api/methods/set_sticker_emoji_list.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_sticker_emoji_list.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_keywords.po b/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_keywords.po deleted file mode 100644 index 22dfb120..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_keywords.po +++ /dev/null @@ -1,83 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/set_sticker_keywords.rst:3 -msgid "setStickerKeywords" -msgstr "" - -#: ../../api/methods/set_sticker_keywords.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_sticker_keywords.SetStickerKeywords:1 of -msgid "" -"Use this method to change search keywords assigned to a regular or custom" -" emoji sticker. The sticker must belong to a sticker set created by the " -"bot. Returns :code:`True` on success." -msgstr "" - -#: aiogram.methods.set_sticker_keywords.SetStickerKeywords:3 of -msgid "Source: https://core.telegram.org/bots/api#setstickerkeywords" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_sticker_keywords.SetStickerKeywords.sticker:1 of -msgid "File identifier of the sticker" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_sticker_keywords.SetStickerKeywords.keywords:1 of -msgid "" -"A JSON-serialized list of 0-20 search keywords for the sticker with total" -" length of up to 64 characters" -msgstr "" - -#: ../../api/methods/set_sticker_keywords.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_sticker_keywords.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_sticker_keywords.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_sticker_keywords.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_sticker_keywords.rst:29 -msgid "" -":code:`from aiogram.methods.set_sticker_keywords import " -"SetStickerKeywords`" -msgstr "" - -#: ../../api/methods/set_sticker_keywords.rst:30 -msgid "alias: :code:`from aiogram.methods import SetStickerKeywords`" -msgstr "" - -#: ../../api/methods/set_sticker_keywords.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_sticker_keywords.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_mask_position.po b/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_mask_position.po deleted file mode 100644 index 8efc08ba..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_mask_position.po +++ /dev/null @@ -1,86 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/set_sticker_mask_position.rst:3 -msgid "setStickerMaskPosition" -msgstr "" - -#: ../../api/methods/set_sticker_mask_position.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_sticker_mask_position.SetStickerMaskPosition:1 of -msgid "" -"Use this method to change the `mask position " -"`_ of a mask sticker. " -"The sticker must belong to a sticker set that was created by the bot. " -"Returns :code:`True` on success." -msgstr "" - -#: aiogram.methods.set_sticker_mask_position.SetStickerMaskPosition:3 of -msgid "Source: https://core.telegram.org/bots/api#setstickermaskposition" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_sticker_mask_position.SetStickerMaskPosition.sticker:1 -#: of -msgid "File identifier of the sticker" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_sticker_mask_position.SetStickerMaskPosition.mask_position:1 -#: of -msgid "" -"A JSON-serialized object with the position where the mask should be " -"placed on faces. Omit the parameter to remove the mask position." -msgstr "" - -#: ../../api/methods/set_sticker_mask_position.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_sticker_mask_position.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_sticker_mask_position.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_sticker_mask_position.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_sticker_mask_position.rst:29 -msgid "" -":code:`from aiogram.methods.set_sticker_mask_position import " -"SetStickerMaskPosition`" -msgstr "" - -#: ../../api/methods/set_sticker_mask_position.rst:30 -msgid "alias: :code:`from aiogram.methods import SetStickerMaskPosition`" -msgstr "" - -#: ../../api/methods/set_sticker_mask_position.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_sticker_mask_position.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_position_in_set.po b/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_position_in_set.po deleted file mode 100644 index c7ef9e7e..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_position_in_set.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.10.3\n" - -#: ../../api/methods/set_sticker_position_in_set.rst:3 -msgid "setStickerPositionInSet" -msgstr "" - -#: ../../api/methods/set_sticker_position_in_set.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_sticker_position_in_set.SetStickerPositionInSet:1 of -msgid "" -"Use this method to move a sticker in a set created by the bot to a " -"specific position. Returns :code:`True` on success." -msgstr "" - -#: aiogram.methods.set_sticker_position_in_set.SetStickerPositionInSet:3 of -msgid "Source: https://core.telegram.org/bots/api#setstickerpositioninset" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_sticker_position_in_set.SetStickerPositionInSet.sticker:1 -#: of -msgid "File identifier of the sticker" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_sticker_position_in_set.SetStickerPositionInSet.position:1 -#: of -msgid "New sticker position in the set, zero-based" -msgstr "" - -#: ../../api/methods/set_sticker_position_in_set.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_sticker_position_in_set.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_sticker_position_in_set.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_sticker_position_in_set.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_sticker_position_in_set.rst:29 -msgid "" -":code:`from aiogram.methods.set_sticker_position_in_set import " -"SetStickerPositionInSet`" -msgstr "" - -#: ../../api/methods/set_sticker_position_in_set.rst:30 -msgid "alias: :code:`from aiogram.methods import SetStickerPositionInSet`" -msgstr "" - -#: ../../api/methods/set_sticker_position_in_set.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_sticker_position_in_set.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/set_sticker_position_in_set.rst:48 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/set_sticker_position_in_set.rst:50 -msgid ":meth:`aiogram.types.sticker.Sticker.set_position_in_set`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_set_thumb.po b/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_set_thumb.po deleted file mode 100644 index 8e279db0..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_set_thumb.po +++ /dev/null @@ -1,114 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/set_sticker_set_thumb.rst:3 -msgid "setStickerSetThumb" -msgstr "" - -#: ../../api/methods/set_sticker_set_thumb.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: ../../api/methods/set_sticker_set_thumb.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_sticker_set_thumb.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_sticker_set_thumb.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_sticker_set_thumb.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_sticker_set_thumb.rst:29 -msgid "" -":code:`from aiogram.methods.set_sticker_set_thumb import " -"SetStickerSetThumb`" -msgstr "" - -#: ../../api/methods/set_sticker_set_thumb.rst:30 -msgid "alias: :code:`from aiogram.methods import SetStickerSetThumb`" -msgstr "" - -#: ../../api/methods/set_sticker_set_thumb.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_sticker_set_thumb.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" - -#~ msgid "" -#~ "Use this method to set the " -#~ "thumbnail of a sticker set. Animated " -#~ "thumbnails can be set for animated " -#~ "sticker sets only. Video thumbnails can" -#~ " be set only for video sticker " -#~ "sets only. Returns :code:`True` on " -#~ "success." -#~ msgstr "" - -#~ msgid "Source: https://core.telegram.org/bots/api#setstickersetthumb" -#~ msgstr "" - -#~ msgid "Sticker set name" -#~ msgstr "" - -#~ msgid "User identifier of the sticker set owner" -#~ msgstr "" - -#~ msgid "" -#~ "A **PNG** image with the thumbnail, " -#~ "must be up to 128 kilobytes in " -#~ "size and have width and height " -#~ "exactly 100px, or a **TGS** animation" -#~ " with the thumbnail up to 32 " -#~ "kilobytes in size; see " -#~ "`https://core.telegram.org/stickers#animated-sticker-" -#~ "requirements `_`https://core.telegram.org/stickers" -#~ "#animated-sticker-requirements " -#~ "`_ for animated sticker technical" -#~ " requirements, or a **WEBM** video " -#~ "with the thumbnail up to 32 " -#~ "kilobytes in size; see " -#~ "`https://core.telegram.org/stickers#video-sticker-" -#~ "requirements `_`https://core.telegram.org/stickers" -#~ "#video-sticker-requirements " -#~ "`_ for video sticker technical" -#~ " requirements. Pass a *file_id* as a" -#~ " String to send a file that " -#~ "already exists on the Telegram servers," -#~ " pass an HTTP URL as a String" -#~ " for Telegram to get a file " -#~ "from the Internet, or upload a new" -#~ " one using multipart/form-data. :ref:`More" -#~ " information on Sending Files » " -#~ "`. Animated sticker set " -#~ "thumbnails can't be uploaded via HTTP" -#~ " URL." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_set_thumbnail.po b/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_set_thumbnail.po deleted file mode 100644 index c0d9b5ee..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_set_thumbnail.po +++ /dev/null @@ -1,108 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/set_sticker_set_thumbnail.rst:3 -msgid "setStickerSetThumbnail" -msgstr "" - -#: ../../api/methods/set_sticker_set_thumbnail.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_sticker_set_thumbnail.SetStickerSetThumbnail:1 of -msgid "" -"Use this method to set the thumbnail of a regular or mask sticker set. " -"The format of the thumbnail file must match the format of the stickers in" -" the set. Returns :code:`True` on success." -msgstr "" - -#: aiogram.methods.set_sticker_set_thumbnail.SetStickerSetThumbnail:3 of -msgid "Source: https://core.telegram.org/bots/api#setstickersetthumbnail" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_sticker_set_thumbnail.SetStickerSetThumbnail.name:1 of -msgid "Sticker set name" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_sticker_set_thumbnail.SetStickerSetThumbnail.user_id:1 -#: of -msgid "User identifier of the sticker set owner" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_sticker_set_thumbnail.SetStickerSetThumbnail.thumbnail:1 -#: of -msgid "" -"A **.WEBP** or **.PNG** image with the thumbnail, must be up to 128 " -"kilobytes in size and have a width and height of exactly 100px, or a " -"**.TGS** animation with a thumbnail up to 32 kilobytes in size (see " -"`https://core.telegram.org/stickers#animated-sticker-requirements " -"`_`https://core.telegram.org/stickers#animated-sticker-" -"requirements `_ for animated sticker technical requirements), or a " -"**WEBM** video with the thumbnail up to 32 kilobytes in size; see " -"`https://core.telegram.org/stickers#video-sticker-requirements " -"`_`https://core.telegram.org/stickers#video-sticker-" -"requirements `_ for video sticker technical requirements. Pass a " -"*file_id* as a String to send a file that already exists on the Telegram " -"servers, pass an HTTP URL as a String for Telegram to get a file from the" -" Internet, or upload a new one using multipart/form-data. :ref:`More " -"information on Sending Files » `. Animated and video " -"sticker set thumbnails can't be uploaded via HTTP URL. If omitted, then " -"the thumbnail is dropped and the first sticker is used as the thumbnail." -msgstr "" - -#: ../../api/methods/set_sticker_set_thumbnail.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_sticker_set_thumbnail.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_sticker_set_thumbnail.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_sticker_set_thumbnail.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_sticker_set_thumbnail.rst:29 -msgid "" -":code:`from aiogram.methods.set_sticker_set_thumbnail import " -"SetStickerSetThumbnail`" -msgstr "" - -#: ../../api/methods/set_sticker_set_thumbnail.rst:30 -msgid "alias: :code:`from aiogram.methods import SetStickerSetThumbnail`" -msgstr "" - -#: ../../api/methods/set_sticker_set_thumbnail.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_sticker_set_thumbnail.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_set_title.po b/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_set_title.po deleted file mode 100644 index fb27fdfc..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_sticker_set_title.po +++ /dev/null @@ -1,80 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/set_sticker_set_title.rst:3 -msgid "setStickerSetTitle" -msgstr "" - -#: ../../api/methods/set_sticker_set_title.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_sticker_set_title.SetStickerSetTitle:1 of -msgid "" -"Use this method to set the title of a created sticker set. Returns " -":code:`True` on success." -msgstr "" - -#: aiogram.methods.set_sticker_set_title.SetStickerSetTitle:3 of -msgid "Source: https://core.telegram.org/bots/api#setstickersettitle" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_sticker_set_title.SetStickerSetTitle.name:1 of -msgid "Sticker set name" -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_sticker_set_title.SetStickerSetTitle.title:1 of -msgid "Sticker set title, 1-64 characters" -msgstr "" - -#: ../../api/methods/set_sticker_set_title.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_sticker_set_title.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_sticker_set_title.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_sticker_set_title.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_sticker_set_title.rst:29 -msgid "" -":code:`from aiogram.methods.set_sticker_set_title import " -"SetStickerSetTitle`" -msgstr "" - -#: ../../api/methods/set_sticker_set_title.rst:30 -msgid "alias: :code:`from aiogram.methods import SetStickerSetTitle`" -msgstr "" - -#: ../../api/methods/set_sticker_set_title.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_sticker_set_title.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/set_webhook.po b/docs/locale/en/LC_MESSAGES/api/methods/set_webhook.po deleted file mode 100644 index 10f3b913..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/set_webhook.po +++ /dev/null @@ -1,152 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.10.3\n" - -#: ../../api/methods/set_webhook.rst:3 -msgid "setWebhook" -msgstr "" - -#: ../../api/methods/set_webhook.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.set_webhook.SetWebhook:1 of -msgid "" -"Use this method to specify a URL and receive incoming updates via an " -"outgoing webhook. Whenever there is an update for the bot, we will send " -"an HTTPS POST request to the specified URL, containing a JSON-serialized " -":class:`aiogram.types.update.Update`. In case of an unsuccessful request," -" we will give up after a reasonable amount of attempts. Returns " -":code:`True` on success. If you'd like to make sure that the webhook was " -"set by you, you can specify secret data in the parameter *secret_token*. " -"If specified, the request will contain a header 'X-Telegram-Bot-Api-" -"Secret-Token' with the secret token as content." -msgstr "" - -#: aiogram.methods.set_webhook.SetWebhook:4 of -msgid "**Notes**" -msgstr "" - -#: aiogram.methods.set_webhook.SetWebhook:6 of -msgid "" -"**1.** You will not be able to receive updates using " -":class:`aiogram.methods.get_updates.GetUpdates` for as long as an " -"outgoing webhook is set up." -msgstr "" - -#: aiogram.methods.set_webhook.SetWebhook:8 of -msgid "" -"**2.** To use a self-signed certificate, you need to upload your `public " -"key certificate `_ using " -"*certificate* parameter. Please upload as InputFile, sending a String " -"will not work." -msgstr "" - -#: aiogram.methods.set_webhook.SetWebhook:10 of -msgid "" -"**3.** Ports currently supported *for webhooks*: **443, 80, 88, 8443**. " -"If you're having any trouble setting up webhooks, please check out this " -"`amazing guide to webhooks `_." -msgstr "" - -#: aiogram.methods.set_webhook.SetWebhook:13 of -msgid "Source: https://core.telegram.org/bots/api#setwebhook" -msgstr "" - -#: ../../docstring aiogram.methods.set_webhook.SetWebhook.url:1 of -msgid "" -"HTTPS URL to send updates to. Use an empty string to remove webhook " -"integration" -msgstr "" - -#: ../../docstring aiogram.methods.set_webhook.SetWebhook.certificate:1 of -msgid "" -"Upload your public key certificate so that the root certificate in use " -"can be checked. See our `self-signed guide " -"`_ for details." -msgstr "" - -#: ../../docstring aiogram.methods.set_webhook.SetWebhook.ip_address:1 of -msgid "" -"The fixed IP address which will be used to send webhook requests instead " -"of the IP address resolved through DNS" -msgstr "" - -#: ../../docstring aiogram.methods.set_webhook.SetWebhook.max_connections:1 of -msgid "" -"The maximum allowed number of simultaneous HTTPS connections to the " -"webhook for update delivery, 1-100. Defaults to *40*. Use lower values to" -" limit the load on your bot's server, and higher values to increase your " -"bot's throughput." -msgstr "" - -#: ../../docstring aiogram.methods.set_webhook.SetWebhook.allowed_updates:1 of -msgid "" -"A JSON-serialized list of the update types you want your bot to receive. " -"For example, specify ['message', 'edited_channel_post', 'callback_query']" -" to only receive updates of these types. See " -":class:`aiogram.types.update.Update` for a complete list of available " -"update types. Specify an empty list to receive all update types except " -"*chat_member* (default). If not specified, the previous setting will be " -"used." -msgstr "" - -#: ../../docstring -#: aiogram.methods.set_webhook.SetWebhook.drop_pending_updates:1 of -msgid "Pass :code:`True` to drop all pending updates" -msgstr "" - -#: ../../docstring aiogram.methods.set_webhook.SetWebhook.secret_token:1 of -msgid "" -"A secret token to be sent in a header 'X-Telegram-Bot-Api-Secret-Token' " -"in every webhook request, 1-256 characters. Only characters :code:`A-Z`, " -":code:`a-z`, :code:`0-9`, :code:`_` and :code:`-` are allowed. The header" -" is useful to ensure that the request comes from a webhook set by you." -msgstr "" - -#: ../../api/methods/set_webhook.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/set_webhook.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/set_webhook.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/set_webhook.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/set_webhook.rst:29 -msgid ":code:`from aiogram.methods.set_webhook import SetWebhook`" -msgstr "" - -#: ../../api/methods/set_webhook.rst:30 -msgid "alias: :code:`from aiogram.methods import SetWebhook`" -msgstr "" - -#: ../../api/methods/set_webhook.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/set_webhook.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/stop_message_live_location.po b/docs/locale/en/LC_MESSAGES/api/methods/stop_message_live_location.po deleted file mode 100644 index e15b616d..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/stop_message_live_location.po +++ /dev/null @@ -1,123 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/stop_message_live_location.rst:3 -msgid "stopMessageLiveLocation" -msgstr "" - -#: ../../api/methods/stop_message_live_location.rst:5 -msgid "Returns: :obj:`Union[Message, bool]`" -msgstr "" - -#: aiogram.methods.stop_message_live_location.StopMessageLiveLocation:1 of -msgid "" -"Use this method to stop updating a live location message before " -"*live_period* expires. On success, if the message is not an inline " -"message, the edited :class:`aiogram.types.message.Message` is returned, " -"otherwise :code:`True` is returned." -msgstr "" - -#: aiogram.methods.stop_message_live_location.StopMessageLiveLocation:3 of -msgid "Source: https://core.telegram.org/bots/api#stopmessagelivelocation" -msgstr "" - -#: ../../docstring -#: aiogram.methods.stop_message_live_location.StopMessageLiveLocation.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.stop_message_live_location.StopMessageLiveLocation.message_id:1 -#: of -msgid "" -"Required if *inline_message_id* is not specified. Identifier of the " -"message with live location to stop" -msgstr "" - -#: ../../docstring -#: aiogram.methods.stop_message_live_location.StopMessageLiveLocation.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.stop_message_live_location.StopMessageLiveLocation.reply_markup:1 -#: of -msgid "" -"A JSON-serialized object for a new `inline keyboard " -"`_." -msgstr "" - -#: ../../api/methods/stop_message_live_location.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/stop_message_live_location.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/stop_message_live_location.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/stop_message_live_location.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/stop_message_live_location.rst:29 -msgid "" -":code:`from aiogram.methods.stop_message_live_location import " -"StopMessageLiveLocation`" -msgstr "" - -#: ../../api/methods/stop_message_live_location.rst:30 -msgid "alias: :code:`from aiogram.methods import StopMessageLiveLocation`" -msgstr "" - -#: ../../api/methods/stop_message_live_location.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/stop_message_live_location.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/stop_message_live_location.rst:48 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/stop_message_live_location.rst:50 -msgid ":meth:`aiogram.types.message.Message.stop_live_location`" -msgstr "" - -#~ msgid "" -#~ "A JSON-serialized object for a new" -#~ " `inline keyboard `_." -#~ msgstr "" - -#~ msgid "As message method" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/stop_poll.po b/docs/locale/en/LC_MESSAGES/api/methods/stop_poll.po deleted file mode 100644 index 269a1e06..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/stop_poll.po +++ /dev/null @@ -1,91 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/stop_poll.rst:3 -msgid "stopPoll" -msgstr "" - -#: ../../api/methods/stop_poll.rst:5 -msgid "Returns: :obj:`Poll`" -msgstr "" - -#: aiogram.methods.stop_poll.StopPoll:1 of -msgid "" -"Use this method to stop a poll which was sent by the bot. On success, the" -" stopped :class:`aiogram.types.poll.Poll` is returned." -msgstr "" - -#: aiogram.methods.stop_poll.StopPoll:3 of -msgid "Source: https://core.telegram.org/bots/api#stoppoll" -msgstr "" - -#: ../../docstring aiogram.methods.stop_poll.StopPoll.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.stop_poll.StopPoll.message_id:1 of -msgid "Identifier of the original message with the poll" -msgstr "" - -#: ../../docstring aiogram.methods.stop_poll.StopPoll.reply_markup:1 of -msgid "" -"A JSON-serialized object for a new message `inline keyboard " -"`_." -msgstr "" - -#: ../../api/methods/stop_poll.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/stop_poll.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/stop_poll.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/stop_poll.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/stop_poll.rst:29 -msgid ":code:`from aiogram.methods.stop_poll import StopPoll`" -msgstr "" - -#: ../../api/methods/stop_poll.rst:30 -msgid "alias: :code:`from aiogram.methods import StopPoll`" -msgstr "" - -#: ../../api/methods/stop_poll.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/stop_poll.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" - -#~ msgid "" -#~ "A JSON-serialized object for a new" -#~ " message `inline keyboard " -#~ "`_." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/unban_chat_member.po b/docs/locale/en/LC_MESSAGES/api/methods/unban_chat_member.po deleted file mode 100644 index 1485077b..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/unban_chat_member.po +++ /dev/null @@ -1,99 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/unban_chat_member.rst:3 -msgid "unbanChatMember" -msgstr "" - -#: ../../api/methods/unban_chat_member.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.unban_chat_member.UnbanChatMember:1 of -msgid "" -"Use this method to unban a previously banned user in a supergroup or " -"channel. The user will **not** return to the group or channel " -"automatically, but will be able to join via link, etc. The bot must be an" -" administrator for this to work. By default, this method guarantees that " -"after the call the user is not a member of the chat, but will be able to " -"join it. So if the user is a member of the chat they will also be " -"**removed** from the chat. If you don't want this, use the parameter " -"*only_if_banned*. Returns :code:`True` on success." -msgstr "" - -#: aiogram.methods.unban_chat_member.UnbanChatMember:3 of -msgid "Source: https://core.telegram.org/bots/api#unbanchatmember" -msgstr "" - -#: ../../docstring aiogram.methods.unban_chat_member.UnbanChatMember.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.unban_chat_member.UnbanChatMember.user_id:1 -#: of -msgid "Unique identifier of the target user" -msgstr "" - -#: ../../docstring -#: aiogram.methods.unban_chat_member.UnbanChatMember.only_if_banned:1 of -msgid "Do nothing if the user is not banned" -msgstr "" - -#: ../../api/methods/unban_chat_member.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/unban_chat_member.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/unban_chat_member.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/unban_chat_member.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/unban_chat_member.rst:29 -msgid ":code:`from aiogram.methods.unban_chat_member import UnbanChatMember`" -msgstr "" - -#: ../../api/methods/unban_chat_member.rst:30 -msgid "alias: :code:`from aiogram.methods import UnbanChatMember`" -msgstr "" - -#: ../../api/methods/unban_chat_member.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/unban_chat_member.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/unban_chat_member.rst:48 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/unban_chat_member.rst:50 -msgid ":meth:`aiogram.types.chat.Chat.unban`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/unban_chat_sender_chat.po b/docs/locale/en/LC_MESSAGES/api/methods/unban_chat_sender_chat.po deleted file mode 100644 index 093786e8..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/unban_chat_sender_chat.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/unban_chat_sender_chat.rst:3 -msgid "unbanChatSenderChat" -msgstr "" - -#: ../../api/methods/unban_chat_sender_chat.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.unban_chat_sender_chat.UnbanChatSenderChat:1 of -msgid "" -"Use this method to unban a previously banned channel chat in a supergroup" -" or channel. The bot must be an administrator for this to work and must " -"have the appropriate administrator rights. Returns :code:`True` on " -"success." -msgstr "" - -#: aiogram.methods.unban_chat_sender_chat.UnbanChatSenderChat:3 of -msgid "Source: https://core.telegram.org/bots/api#unbanchatsenderchat" -msgstr "" - -#: ../../docstring -#: aiogram.methods.unban_chat_sender_chat.UnbanChatSenderChat.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.unban_chat_sender_chat.UnbanChatSenderChat.sender_chat_id:1 -#: of -msgid "Unique identifier of the target sender chat" -msgstr "" - -#: ../../api/methods/unban_chat_sender_chat.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/unban_chat_sender_chat.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/unban_chat_sender_chat.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/unban_chat_sender_chat.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/unban_chat_sender_chat.rst:29 -msgid "" -":code:`from aiogram.methods.unban_chat_sender_chat import " -"UnbanChatSenderChat`" -msgstr "" - -#: ../../api/methods/unban_chat_sender_chat.rst:30 -msgid "alias: :code:`from aiogram.methods import UnbanChatSenderChat`" -msgstr "" - -#: ../../api/methods/unban_chat_sender_chat.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/unban_chat_sender_chat.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/unban_chat_sender_chat.rst:48 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/unban_chat_sender_chat.rst:50 -msgid ":meth:`aiogram.types.chat.Chat.unban_sender_chat`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/unhide_general_forum_topic.po b/docs/locale/en/LC_MESSAGES/api/methods/unhide_general_forum_topic.po deleted file mode 100644 index 3432fdfb..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/unhide_general_forum_topic.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/unhide_general_forum_topic.rst:3 -msgid "unhideGeneralForumTopic" -msgstr "" - -#: ../../api/methods/unhide_general_forum_topic.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.unhide_general_forum_topic.UnhideGeneralForumTopic:1 of -msgid "" -"Use this method to unhide 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. Returns :code:`True` " -"on success." -msgstr "" - -#: aiogram.methods.unhide_general_forum_topic.UnhideGeneralForumTopic:3 of -msgid "Source: https://core.telegram.org/bots/api#unhidegeneralforumtopic" -msgstr "" - -#: ../../docstring -#: aiogram.methods.unhide_general_forum_topic.UnhideGeneralForumTopic.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/unhide_general_forum_topic.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/unhide_general_forum_topic.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/unhide_general_forum_topic.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/unhide_general_forum_topic.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/unhide_general_forum_topic.rst:29 -msgid "" -":code:`from aiogram.methods.unhide_general_forum_topic import " -"UnhideGeneralForumTopic`" -msgstr "" - -#: ../../api/methods/unhide_general_forum_topic.rst:30 -msgid "alias: :code:`from aiogram.methods import UnhideGeneralForumTopic`" -msgstr "" - -#: ../../api/methods/unhide_general_forum_topic.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/unhide_general_forum_topic.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/unpin_all_chat_messages.po b/docs/locale/en/LC_MESSAGES/api/methods/unpin_all_chat_messages.po deleted file mode 100644 index 879d0ae4..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/unpin_all_chat_messages.po +++ /dev/null @@ -1,88 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/unpin_all_chat_messages.rst:3 -msgid "unpinAllChatMessages" -msgstr "" - -#: ../../api/methods/unpin_all_chat_messages.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.unpin_all_chat_messages.UnpinAllChatMessages:1 of -msgid "" -"Use this method to clear 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.unpin_all_chat_messages.UnpinAllChatMessages:3 of -msgid "Source: https://core.telegram.org/bots/api#unpinallchatmessages" -msgstr "" - -#: ../../docstring -#: aiogram.methods.unpin_all_chat_messages.UnpinAllChatMessages.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/unpin_all_chat_messages.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/unpin_all_chat_messages.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/unpin_all_chat_messages.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/unpin_all_chat_messages.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/unpin_all_chat_messages.rst:29 -msgid "" -":code:`from aiogram.methods.unpin_all_chat_messages import " -"UnpinAllChatMessages`" -msgstr "" - -#: ../../api/methods/unpin_all_chat_messages.rst:30 -msgid "alias: :code:`from aiogram.methods import UnpinAllChatMessages`" -msgstr "" - -#: ../../api/methods/unpin_all_chat_messages.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/unpin_all_chat_messages.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/unpin_all_chat_messages.rst:48 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/unpin_all_chat_messages.rst:50 -msgid ":meth:`aiogram.types.chat.Chat.unpin_all_messages`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/unpin_all_forum_topic_messages.po b/docs/locale/en/LC_MESSAGES/api/methods/unpin_all_forum_topic_messages.po deleted file mode 100644 index bbc5d5ac..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/unpin_all_forum_topic_messages.po +++ /dev/null @@ -1,88 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/unpin_all_forum_topic_messages.rst:3 -msgid "unpinAllForumTopicMessages" -msgstr "" - -#: ../../api/methods/unpin_all_forum_topic_messages.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.unpin_all_forum_topic_messages.UnpinAllForumTopicMessages:1 -#: of -msgid "" -"Use this method to clear the list of pinned messages in a forum topic. " -"The bot must be an administrator in the chat for this to work and must " -"have the *can_pin_messages* administrator right in the supergroup. " -"Returns :code:`True` on success." -msgstr "" - -#: aiogram.methods.unpin_all_forum_topic_messages.UnpinAllForumTopicMessages:3 -#: of -msgid "Source: https://core.telegram.org/bots/api#unpinallforumtopicmessages" -msgstr "" - -#: ../../docstring -#: aiogram.methods.unpin_all_forum_topic_messages.UnpinAllForumTopicMessages.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.unpin_all_forum_topic_messages.UnpinAllForumTopicMessages.message_thread_id:1 -#: of -msgid "Unique identifier for the target message thread of the forum topic" -msgstr "" - -#: ../../api/methods/unpin_all_forum_topic_messages.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/unpin_all_forum_topic_messages.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/unpin_all_forum_topic_messages.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/unpin_all_forum_topic_messages.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/unpin_all_forum_topic_messages.rst:29 -msgid "" -":code:`from aiogram.methods.unpin_all_forum_topic_messages import " -"UnpinAllForumTopicMessages`" -msgstr "" - -#: ../../api/methods/unpin_all_forum_topic_messages.rst:30 -msgid "alias: :code:`from aiogram.methods import UnpinAllForumTopicMessages`" -msgstr "" - -#: ../../api/methods/unpin_all_forum_topic_messages.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/unpin_all_forum_topic_messages.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/unpin_all_general_forum_topic_messages.po b/docs/locale/en/LC_MESSAGES/api/methods/unpin_all_general_forum_topic_messages.po deleted file mode 100644 index b4154aa5..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/unpin_all_general_forum_topic_messages.po +++ /dev/null @@ -1,94 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 2023. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aiogram \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-26 23:17+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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/unpin_all_general_forum_topic_messages.rst:3 -msgid "unpinAllGeneralForumTopicMessages" -msgstr "" - -#: ../../api/methods/unpin_all_general_forum_topic_messages.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.unpin_all_general_forum_topic_messages.UnpinAllGeneralForumTopicMessages:1 -#: of -msgid "" -"Use this method to clear the list of pinned messages in a General forum " -"topic. The bot must be an administrator in the chat for this to work and " -"must have the *can_pin_messages* administrator right in the supergroup. " -"Returns :code:`True` on success." -msgstr "" - -#: aiogram.methods.unpin_all_general_forum_topic_messages.UnpinAllGeneralForumTopicMessages:3 -#: of -msgid "" -"Source: " -"https://core.telegram.org/bots/api#unpinallgeneralforumtopicmessages" -msgstr "" - -#: ../../docstring -#: aiogram.methods.unpin_all_general_forum_topic_messages.UnpinAllGeneralForumTopicMessages.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/unpin_all_general_forum_topic_messages.rst:15 -msgid "Usage" -msgstr "" - -#: ../../api/methods/unpin_all_general_forum_topic_messages.rst:18 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/unpin_all_general_forum_topic_messages.rst:26 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/unpin_all_general_forum_topic_messages.rst:28 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/unpin_all_general_forum_topic_messages.rst:30 -msgid "" -":code:`from aiogram.methods.unpin_all_general_forum_topic_messages import" -" UnpinAllGeneralForumTopicMessages`" -msgstr "" - -#: ../../api/methods/unpin_all_general_forum_topic_messages.rst:31 -msgid "" -"alias: :code:`from aiogram.methods import " -"UnpinAllGeneralForumTopicMessages`" -msgstr "" - -#: ../../api/methods/unpin_all_general_forum_topic_messages.rst:34 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/unpin_all_general_forum_topic_messages.rst:41 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/unpin_all_general_forum_topic_messages.rst:49 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/unpin_all_general_forum_topic_messages.rst:51 -msgid ":meth:`aiogram.types.chat.Chat.unpin_all_general_forum_topic_messages`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/unpin_chat_message.po b/docs/locale/en/LC_MESSAGES/api/methods/unpin_chat_message.po deleted file mode 100644 index e184084b..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/unpin_chat_message.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/unpin_chat_message.rst:3 -msgid "unpinChatMessage" -msgstr "" - -#: ../../api/methods/unpin_chat_message.rst:5 -msgid "Returns: :obj:`bool`" -msgstr "" - -#: aiogram.methods.unpin_chat_message.UnpinChatMessage:1 of -msgid "" -"Use this method to remove a message from 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.unpin_chat_message.UnpinChatMessage:3 of -msgid "Source: https://core.telegram.org/bots/api#unpinchatmessage" -msgstr "" - -#: ../../docstring -#: aiogram.methods.unpin_chat_message.UnpinChatMessage.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.unpin_chat_message.UnpinChatMessage.message_id:1 of -msgid "" -"Identifier of a message to unpin. If not specified, the most recent " -"pinned message (by sending date) will be unpinned." -msgstr "" - -#: ../../api/methods/unpin_chat_message.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/unpin_chat_message.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/unpin_chat_message.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/unpin_chat_message.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/unpin_chat_message.rst:29 -msgid ":code:`from aiogram.methods.unpin_chat_message import UnpinChatMessage`" -msgstr "" - -#: ../../api/methods/unpin_chat_message.rst:30 -msgid "alias: :code:`from aiogram.methods import UnpinChatMessage`" -msgstr "" - -#: ../../api/methods/unpin_chat_message.rst:33 -msgid "With specific bot" -msgstr "" - -#: ../../api/methods/unpin_chat_message.rst:40 -msgid "As reply into Webhook in handler" -msgstr "" - -#: ../../api/methods/unpin_chat_message.rst:48 -msgid "As shortcut from received object" -msgstr "" - -#: ../../api/methods/unpin_chat_message.rst:50 -msgid ":meth:`aiogram.types.message.Message.unpin`" -msgstr "" - -#: ../../api/methods/unpin_chat_message.rst:51 -msgid ":meth:`aiogram.types.chat.Chat.unpin_message`" -msgstr "" - -#~ msgid "As message method" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/methods/upload_sticker_file.po b/docs/locale/en/LC_MESSAGES/api/methods/upload_sticker_file.po deleted file mode 100644 index 4e909bd1..00000000 --- a/docs/locale/en/LC_MESSAGES/api/methods/upload_sticker_file.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/upload_sticker_file.rst:3 -msgid "uploadStickerFile" -msgstr "" - -#: ../../api/methods/upload_sticker_file.rst:5 -msgid "Returns: :obj:`File`" -msgstr "" - -#: aiogram.methods.upload_sticker_file.UploadStickerFile:1 of -msgid "" -"Use this method to upload a file with a sticker for later use in the " -":class:`aiogram.methods.create_new_sticker_set.CreateNewStickerSet` and " -":class:`aiogram.methods.add_sticker_to_set.AddStickerToSet` methods (the " -"file can be used multiple times). Returns the uploaded " -":class:`aiogram.types.file.File` on success." -msgstr "" - -#: aiogram.methods.upload_sticker_file.UploadStickerFile:3 of -msgid "Source: https://core.telegram.org/bots/api#uploadstickerfile" -msgstr "" - -#: ../../docstring -#: aiogram.methods.upload_sticker_file.UploadStickerFile.user_id:1 of -msgid "User identifier of sticker file owner" -msgstr "" - -#: ../../docstring -#: aiogram.methods.upload_sticker_file.UploadStickerFile.sticker:1 of -msgid "" -"A file with the sticker in .WEBP, .PNG, .TGS, or .WEBM format. See " -"`https://core.telegram.org/stickers " -"`_`https://core.telegram.org/stickers" -" `_ for technical requirements. " -":ref:`More information on Sending Files » `" -msgstr "" - -#: ../../docstring -#: aiogram.methods.upload_sticker_file.UploadStickerFile.sticker_format:1 of -msgid "Format of the sticker, must be one of 'static', 'animated', 'video'" -msgstr "" - -#: ../../api/methods/upload_sticker_file.rst:14 -msgid "Usage" -msgstr "" - -#: ../../api/methods/upload_sticker_file.rst:17 -msgid "As bot method" -msgstr "" - -#: ../../api/methods/upload_sticker_file.rst:25 -msgid "Method as object" -msgstr "" - -#: ../../api/methods/upload_sticker_file.rst:27 -msgid "Imports:" -msgstr "" - -#: ../../api/methods/upload_sticker_file.rst:29 -msgid ":code:`from aiogram.methods.upload_sticker_file import UploadStickerFile`" -msgstr "" - -#: ../../api/methods/upload_sticker_file.rst:30 -msgid "alias: :code:`from aiogram.methods import UploadStickerFile`" -msgstr "" - -#: ../../api/methods/upload_sticker_file.rst:33 -msgid "With specific bot" -msgstr "" - -#~ msgid "" -#~ "Use this method to upload a .PNG" -#~ " file with a sticker for later " -#~ "use in *createNewStickerSet* and " -#~ "*addStickerToSet* methods (can be used " -#~ "multiple times). Returns the uploaded " -#~ ":class:`aiogram.types.file.File` on success." -#~ 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. :ref:`More information on" -#~ " Sending Files » `" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/session/aiohttp.po b/docs/locale/en/LC_MESSAGES/api/session/aiohttp.po deleted file mode 100644 index c0e0ef80..00000000 --- a/docs/locale/en/LC_MESSAGES/api/session/aiohttp.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/session/aiohttp.rst:3 -msgid "aiohttp" -msgstr "" - -#: ../../api/session/aiohttp.rst:5 -msgid "" -"AiohttpSession represents a wrapper-class around `ClientSession` from " -"`aiohttp `_" -msgstr "" - -#: ../../api/session/aiohttp.rst:7 -msgid "Currently `AiohttpSession` is a default session used in `aiogram.Bot`" -msgstr "" - -#: ../../api/session/aiohttp.rst:12 -msgid "Usage example" -msgstr "" - -#: ../../api/session/aiohttp.rst:24 -msgid "Proxy requests in AiohttpSession" -msgstr "" - -#: ../../api/session/aiohttp.rst:26 -msgid "" -"In order to use AiohttpSession with proxy connector you have to install " -"`aiohttp-socks `_" -msgstr "" - -#: ../../api/session/aiohttp.rst:28 -msgid "Binding session to bot:" -msgstr "" - -#: ../../api/session/aiohttp.rst:41 -msgid "" -"Only following protocols are supported: http(tunneling), socks4(a), " -"socks5 as aiohttp_socks `documentation `_ claims." -msgstr "" - -#: ../../api/session/aiohttp.rst:46 -msgid "Authorization" -msgstr "" - -#: ../../api/session/aiohttp.rst:48 -msgid "" -"Proxy authorization credentials can be specified in proxy URL or come as " -"an instance of :obj:`aiohttp.BasicAuth` containing login and password." -msgstr "" - -#: ../../api/session/aiohttp.rst:51 -msgid "Consider examples:" -msgstr "" - -#: ../../api/session/aiohttp.rst:62 -msgid "or simply include your basic auth credential in URL" -msgstr "" - -#: ../../api/session/aiohttp.rst:71 -msgid "" -"Aiogram prefers `BasicAuth` over username and password in URL, so if " -"proxy URL contains login and password and `BasicAuth` object is passed at" -" the same time aiogram will use login and password from `BasicAuth` " -"instance." -msgstr "" - -#: ../../api/session/aiohttp.rst:77 -msgid "Proxy chains" -msgstr "" - -#: ../../api/session/aiohttp.rst:79 -msgid "" -"Since `aiohttp-socks `_ supports" -" proxy chains, you're able to use them in aiogram" -msgstr "" - -#: ../../api/session/aiohttp.rst:81 -msgid "Example of chain proxies:" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/session/base.po b/docs/locale/en/LC_MESSAGES/api/session/base.po deleted file mode 100644 index 6466c397..00000000 --- a/docs/locale/en/LC_MESSAGES/api/session/base.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/session/base.rst:3 -msgid "Base" -msgstr "" - -#: ../../api/session/base.rst:5 -msgid "Abstract session for all client sessions" -msgstr "" - -#: aiogram.client.session.base.BaseSession:1 of -msgid "This is base class for all HTTP sessions in aiogram." -msgstr "" - -#: aiogram.client.session.base.BaseSession:3 of -msgid "If you want to create your own session, you must inherit from this class." -msgstr "" - -#: aiogram.client.session.base.BaseSession.check_response:1 of -msgid "Check response status" -msgstr "" - -#: aiogram.client.session.base.BaseSession.close:1 of -msgid "Close client session" -msgstr "" - -#: aiogram.client.session.base.BaseSession.make_request:1 of -msgid "Make request to Telegram Bot API" -msgstr "" - -#: aiogram.client.session.base.BaseSession.make_request of -msgid "Parameters" -msgstr "" - -#: aiogram.client.session.base.BaseSession.make_request:3 of -msgid "Bot instance" -msgstr "" - -#: aiogram.client.session.base.BaseSession.make_request:4 of -msgid "Method instance" -msgstr "" - -#: aiogram.client.session.base.BaseSession.make_request:5 of -msgid "Request timeout" -msgstr "" - -#: aiogram.client.session.base.BaseSession.make_request of -msgid "Returns" -msgstr "" - -#: aiogram.client.session.base.BaseSession.make_request of -msgid "Raises" -msgstr "" - -#: aiogram.client.session.base.BaseSession.prepare_value:1 of -msgid "Prepare value before send" -msgstr "" - -#: aiogram.client.session.base.BaseSession.stream_content:1 of -msgid "Stream reader" -msgstr "" - -#~ msgid "Clean data before send" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/session/custom_server.po b/docs/locale/en/LC_MESSAGES/api/session/custom_server.po deleted file mode 100644 index b5db8d60..00000000 --- a/docs/locale/en/LC_MESSAGES/api/session/custom_server.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/session/custom_server.rst:2 -msgid "Use Custom API server" -msgstr "" - -#: aiogram.client.telegram.TelegramAPIServer:1 of -msgid "Base config for API Endpoints" -msgstr "" - -#: aiogram.client.telegram.TelegramAPIServer.api_url:1 of -msgid "Generate URL for API methods" -msgstr "" - -#: aiogram.client.telegram.TelegramAPIServer.api_url -#: aiogram.client.telegram.TelegramAPIServer.file_url -#: aiogram.client.telegram.TelegramAPIServer.from_base of -msgid "Parameters" -msgstr "" - -#: aiogram.client.telegram.TelegramAPIServer.api_url:3 -#: aiogram.client.telegram.TelegramAPIServer.file_url:3 of -msgid "Bot token" -msgstr "" - -#: aiogram.client.telegram.TelegramAPIServer.api_url:4 of -msgid "API method name (case insensitive)" -msgstr "" - -#: aiogram.client.telegram.TelegramAPIServer.api_url -#: aiogram.client.telegram.TelegramAPIServer.file_url -#: aiogram.client.telegram.TelegramAPIServer.from_base of -msgid "Returns" -msgstr "" - -#: aiogram.client.telegram.TelegramAPIServer.api_url:5 -#: aiogram.client.telegram.TelegramAPIServer.file_url:5 of -msgid "URL" -msgstr "" - -#: ../../docstring aiogram.client.telegram.TelegramAPIServer.base:1 -#: aiogram.client.telegram.TelegramAPIServer.from_base:3 of -msgid "Base URL" -msgstr "" - -#: ../../docstring aiogram.client.telegram.TelegramAPIServer.file:1 of -msgid "Files URL" -msgstr "" - -#: aiogram.client.telegram.TelegramAPIServer.file_url:1 of -msgid "Generate URL for downloading files" -msgstr "" - -#: aiogram.client.telegram.TelegramAPIServer.file_url:4 of -msgid "file path" -msgstr "" - -#: aiogram.client.telegram.TelegramAPIServer.from_base:1 of -msgid "Use this method to auto-generate TelegramAPIServer instance from base URL" -msgstr "" - -#: aiogram.client.telegram.TelegramAPIServer.from_base:4 of -msgid "instance of :class:`TelegramAPIServer`" -msgstr "" - -#: ../../docstring aiogram.client.telegram.TelegramAPIServer.is_local:1 of -msgid "" -"Mark this server is in `local mode " -"`_." -msgstr "" - -#: ../../docstring aiogram.client.telegram.TelegramAPIServer.wrap_local_file:1 -#: of -msgid "Callback to wrap files path in local mode" -msgstr "" - -#: ../../api/session/custom_server.rst:7 -msgid "For example, if you want to use self-hosted API server:" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/session/index.po b/docs/locale/en/LC_MESSAGES/api/session/index.po deleted file mode 100644 index c61e72d8..00000000 --- a/docs/locale/en/LC_MESSAGES/api/session/index.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/session/index.rst:3 -msgid "Client session" -msgstr "" - -#: ../../api/session/index.rst:5 -msgid "Client sessions is used for interacting with API server." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/session/middleware.po b/docs/locale/en/LC_MESSAGES/api/session/middleware.po deleted file mode 100644 index 137d74ca..00000000 --- a/docs/locale/en/LC_MESSAGES/api/session/middleware.po +++ /dev/null @@ -1,87 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/session/middleware.rst:3 -msgid "Client session middlewares" -msgstr "" - -#: ../../api/session/middleware.rst:5 -msgid "" -"In some cases you may want to add some middlewares to the client session " -"to customize the behavior of the client." -msgstr "" - -#: ../../api/session/middleware.rst:7 -msgid "Some useful cases that is:" -msgstr "" - -#: ../../api/session/middleware.rst:9 -msgid "Log the outgoing requests" -msgstr "" - -#: ../../api/session/middleware.rst:10 -msgid "Customize the request parameters" -msgstr "" - -#: ../../api/session/middleware.rst:11 -msgid "Handle rate limiting errors and retry the request" -msgstr "" - -#: ../../api/session/middleware.rst:12 -msgid "others ..." -msgstr "" - -#: ../../api/session/middleware.rst:14 -msgid "" -"So, you can do it using client session middlewares. A client session " -"middleware is a function (or callable class) that receives the request " -"and the next middleware to call. The middleware can modify the request " -"and then call the next middleware to continue the request processing." -msgstr "" - -#: ../../api/session/middleware.rst:19 -msgid "How to register client session middleware?" -msgstr "" - -#: ../../api/session/middleware.rst:22 -msgid "Register using register method" -msgstr "" - -#: ../../api/session/middleware.rst:29 -msgid "Register using decorator" -msgstr "" - -#: ../../api/session/middleware.rst:44 -msgid "Example" -msgstr "" - -#: ../../api/session/middleware.rst:47 -msgid "Class based session middleware" -msgstr "" - -#: ../../api/session/middleware.rst:56 -msgid "" -"this middlewware is already implemented inside aiogram, so, if you want " -"to use it you can just import it :code:`from " -"aiogram.client.session.middlewares.request_logging import RequestLogging`" -msgstr "" - -#: ../../api/session/middleware.rst:61 -msgid "Function based session middleware" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/animation.po b/docs/locale/en/LC_MESSAGES/api/types/animation.po deleted file mode 100644 index df976078..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/animation.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/animation.rst:3 -msgid "Animation" -msgstr "" - -#: aiogram.types.animation.Animation:1 of -msgid "" -"This object represents an animation file (GIF or H.264/MPEG-4 AVC video " -"without sound)." -msgstr "" - -#: aiogram.types.animation.Animation:3 of -msgid "Source: https://core.telegram.org/bots/api#animation" -msgstr "" - -#: ../../docstring aiogram.types.animation.Animation.file_id:1 of -msgid "Identifier for this file, which can be used to download or reuse the file" -msgstr "" - -#: ../../docstring aiogram.types.animation.Animation.file_unique_id:1 of -msgid "" -"Unique identifier for this file, which is supposed to be the same over " -"time and for different bots. Can't be used to download or reuse the file." -msgstr "" - -#: ../../docstring aiogram.types.animation.Animation.width:1 of -msgid "Video width as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.animation.Animation.height:1 of -msgid "Video height as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.animation.Animation.duration:1 of -msgid "Duration of the video in seconds as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.animation.Animation.thumb:1 of -msgid "*Optional*. Animation thumbnail as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.animation.Animation.file_name:1 of -msgid "*Optional*. Original animation filename as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.animation.Animation.mime_type:1 of -msgid "*Optional*. MIME type of the file as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.animation.Animation.file_size:1 of -msgid "" -"*Optional*. File size in bytes. It can be bigger than 2^31 and some " -"programming languages may have difficulty/silent defects in interpreting " -"it. But it has at most 52 significant bits, so a signed 64-bit integer or" -" double-precision float type are safe for storing this value." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/audio.po b/docs/locale/en/LC_MESSAGES/api/types/audio.po deleted file mode 100644 index 81579c4c..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/audio.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/audio.rst:3 -msgid "Audio" -msgstr "" - -#: aiogram.types.audio.Audio:1 of -msgid "" -"This object represents an audio file to be treated as music by the " -"Telegram clients." -msgstr "" - -#: aiogram.types.audio.Audio:3 of -msgid "Source: https://core.telegram.org/bots/api#audio" -msgstr "" - -#: ../../docstring aiogram.types.audio.Audio.file_id:1 of -msgid "Identifier for this file, which can be used to download or reuse the file" -msgstr "" - -#: ../../docstring aiogram.types.audio.Audio.file_unique_id:1 of -msgid "" -"Unique identifier for this file, which is supposed to be the same over " -"time and for different bots. Can't be used to download or reuse the file." -msgstr "" - -#: ../../docstring aiogram.types.audio.Audio.duration:1 of -msgid "Duration of the audio in seconds as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.audio.Audio.performer:1 of -msgid "*Optional*. Performer of the audio as defined by sender or by audio tags" -msgstr "" - -#: ../../docstring aiogram.types.audio.Audio.title:1 of -msgid "*Optional*. Title of the audio as defined by sender or by audio tags" -msgstr "" - -#: ../../docstring aiogram.types.audio.Audio.file_name:1 of -msgid "*Optional*. Original filename as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.audio.Audio.mime_type:1 of -msgid "*Optional*. MIME type of the file as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.audio.Audio.file_size:1 of -msgid "" -"*Optional*. File size in bytes. It can be bigger than 2^31 and some " -"programming languages may have difficulty/silent defects in interpreting " -"it. But it has at most 52 significant bits, so a signed 64-bit integer or" -" double-precision float type are safe for storing this value." -msgstr "" - -#: ../../docstring aiogram.types.audio.Audio.thumb:1 of -msgid "*Optional*. Thumbnail of the album cover to which the music file belongs" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/bot_command.po b/docs/locale/en/LC_MESSAGES/api/types/bot_command.po deleted file mode 100644 index 8a4ec997..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/bot_command.po +++ /dev/null @@ -1,40 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/bot_command.rst:3 -msgid "BotCommand" -msgstr "" - -#: aiogram.types.bot_command.BotCommand:1 of -msgid "This object represents a bot command." -msgstr "" - -#: aiogram.types.bot_command.BotCommand:3 of -msgid "Source: https://core.telegram.org/bots/api#botcommand" -msgstr "" - -#: ../../docstring aiogram.types.bot_command.BotCommand.command:1 of -msgid "" -"Text of the command; 1-32 characters. Can contain only lowercase English " -"letters, digits and underscores." -msgstr "" - -#: ../../docstring aiogram.types.bot_command.BotCommand.description:1 of -msgid "Description of the command; 1-256 characters." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope.po b/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope.po deleted file mode 100644 index ae5cc0bc..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope.po +++ /dev/null @@ -1,60 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/bot_command_scope.rst:3 -msgid "BotCommandScope" -msgstr "" - -#: aiogram.types.bot_command_scope.BotCommandScope:1 of -msgid "" -"This object represents the scope to which bot commands are applied. " -"Currently, the following 7 scopes are supported:" -msgstr "" - -#: aiogram.types.bot_command_scope.BotCommandScope:3 of -msgid ":class:`aiogram.types.bot_command_scope_default.BotCommandScopeDefault`" -msgstr "" - -#: aiogram.types.bot_command_scope.BotCommandScope:4 of -msgid ":class:`aiogram.types.bot_command_scope_all_private_chats.BotCommandScopeAllPrivateChats`" -msgstr "" - -#: aiogram.types.bot_command_scope.BotCommandScope:5 of -msgid ":class:`aiogram.types.bot_command_scope_all_group_chats.BotCommandScopeAllGroupChats`" -msgstr "" - -#: aiogram.types.bot_command_scope.BotCommandScope:6 of -msgid ":class:`aiogram.types.bot_command_scope_all_chat_administrators.BotCommandScopeAllChatAdministrators`" -msgstr "" - -#: aiogram.types.bot_command_scope.BotCommandScope:7 of -msgid ":class:`aiogram.types.bot_command_scope_chat.BotCommandScopeChat`" -msgstr "" - -#: aiogram.types.bot_command_scope.BotCommandScope:8 of -msgid ":class:`aiogram.types.bot_command_scope_chat_administrators.BotCommandScopeChatAdministrators`" -msgstr "" - -#: aiogram.types.bot_command_scope.BotCommandScope:9 of -msgid ":class:`aiogram.types.bot_command_scope_chat_member.BotCommandScopeChatMember`" -msgstr "" - -#: aiogram.types.bot_command_scope.BotCommandScope:11 of -msgid "Source: https://core.telegram.org/bots/api#botcommandscope" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_all_chat_administrators.po b/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_all_chat_administrators.po deleted file mode 100644 index 35e5dc6c..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_all_chat_administrators.po +++ /dev/null @@ -1,43 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/bot_command_scope_all_chat_administrators.rst:3 -msgid "BotCommandScopeAllChatAdministrators" -msgstr "" - -#: aiogram.types.bot_command_scope_all_chat_administrators.BotCommandScopeAllChatAdministrators:1 -#: of -msgid "" -"Represents the `scope " -"`_ of bot commands, " -"covering all group and supergroup chat administrators." -msgstr "" - -#: aiogram.types.bot_command_scope_all_chat_administrators.BotCommandScopeAllChatAdministrators:3 -#: of -msgid "" -"Source: " -"https://core.telegram.org/bots/api#botcommandscopeallchatadministrators" -msgstr "" - -#: ../../docstring -#: aiogram.types.bot_command_scope_all_chat_administrators.BotCommandScopeAllChatAdministrators.type:1 -#: of -msgid "Scope type, must be *all_chat_administrators*" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_all_group_chats.po b/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_all_group_chats.po deleted file mode 100644 index 550a1103..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_all_group_chats.po +++ /dev/null @@ -1,41 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/bot_command_scope_all_group_chats.rst:3 -msgid "BotCommandScopeAllGroupChats" -msgstr "" - -#: aiogram.types.bot_command_scope_all_group_chats.BotCommandScopeAllGroupChats:1 -#: of -msgid "" -"Represents the `scope " -"`_ of bot commands, " -"covering all group and supergroup chats." -msgstr "" - -#: aiogram.types.bot_command_scope_all_group_chats.BotCommandScopeAllGroupChats:3 -#: of -msgid "Source: https://core.telegram.org/bots/api#botcommandscopeallgroupchats" -msgstr "" - -#: ../../docstring -#: aiogram.types.bot_command_scope_all_group_chats.BotCommandScopeAllGroupChats.type:1 -#: of -msgid "Scope type, must be *all_group_chats*" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_all_private_chats.po b/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_all_private_chats.po deleted file mode 100644 index 0b2610c3..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_all_private_chats.po +++ /dev/null @@ -1,41 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/bot_command_scope_all_private_chats.rst:3 -msgid "BotCommandScopeAllPrivateChats" -msgstr "" - -#: aiogram.types.bot_command_scope_all_private_chats.BotCommandScopeAllPrivateChats:1 -#: of -msgid "" -"Represents the `scope " -"`_ of bot commands, " -"covering all private chats." -msgstr "" - -#: aiogram.types.bot_command_scope_all_private_chats.BotCommandScopeAllPrivateChats:3 -#: of -msgid "Source: https://core.telegram.org/bots/api#botcommandscopeallprivatechats" -msgstr "" - -#: ../../docstring -#: aiogram.types.bot_command_scope_all_private_chats.BotCommandScopeAllPrivateChats.type:1 -#: of -msgid "Scope type, must be *all_private_chats*" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_chat.po b/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_chat.po deleted file mode 100644 index 2114f522..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_chat.po +++ /dev/null @@ -1,45 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/bot_command_scope_chat.rst:3 -msgid "BotCommandScopeChat" -msgstr "" - -#: aiogram.types.bot_command_scope_chat.BotCommandScopeChat:1 of -msgid "" -"Represents the `scope " -"`_ of bot commands, " -"covering a specific chat." -msgstr "" - -#: aiogram.types.bot_command_scope_chat.BotCommandScopeChat:3 of -msgid "Source: https://core.telegram.org/bots/api#botcommandscopechat" -msgstr "" - -#: ../../docstring -#: aiogram.types.bot_command_scope_chat.BotCommandScopeChat.type:1 of -msgid "Scope type, must be *chat*" -msgstr "" - -#: ../../docstring -#: aiogram.types.bot_command_scope_chat.BotCommandScopeChat.chat_id:1 of -msgid "" -"Unique identifier for the target chat or username of the target " -"supergroup (in the format :code:`@supergroupusername`)" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_chat_administrators.po b/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_chat_administrators.po deleted file mode 100644 index 92ab15bc..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_chat_administrators.po +++ /dev/null @@ -1,51 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/bot_command_scope_chat_administrators.rst:3 -msgid "BotCommandScopeChatAdministrators" -msgstr "" - -#: aiogram.types.bot_command_scope_chat_administrators.BotCommandScopeChatAdministrators:1 -#: of -msgid "" -"Represents the `scope " -"`_ of bot commands, " -"covering all administrators of a specific group or supergroup chat." -msgstr "" - -#: aiogram.types.bot_command_scope_chat_administrators.BotCommandScopeChatAdministrators:3 -#: of -msgid "" -"Source: " -"https://core.telegram.org/bots/api#botcommandscopechatadministrators" -msgstr "" - -#: ../../docstring -#: aiogram.types.bot_command_scope_chat_administrators.BotCommandScopeChatAdministrators.type:1 -#: of -msgid "Scope type, must be *chat_administrators*" -msgstr "" - -#: ../../docstring -#: aiogram.types.bot_command_scope_chat_administrators.BotCommandScopeChatAdministrators.chat_id:1 -#: of -msgid "" -"Unique identifier for the target chat or username of the target " -"supergroup (in the format :code:`@supergroupusername`)" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_chat_member.po b/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_chat_member.po deleted file mode 100644 index e09566eb..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_chat_member.po +++ /dev/null @@ -1,53 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/bot_command_scope_chat_member.rst:3 -msgid "BotCommandScopeChatMember" -msgstr "" - -#: aiogram.types.bot_command_scope_chat_member.BotCommandScopeChatMember:1 of -msgid "" -"Represents the `scope " -"`_ of bot commands, " -"covering a specific member of a group or supergroup chat." -msgstr "" - -#: aiogram.types.bot_command_scope_chat_member.BotCommandScopeChatMember:3 of -msgid "Source: https://core.telegram.org/bots/api#botcommandscopechatmember" -msgstr "" - -#: ../../docstring -#: aiogram.types.bot_command_scope_chat_member.BotCommandScopeChatMember.type:1 -#: of -msgid "Scope type, must be *chat_member*" -msgstr "" - -#: ../../docstring -#: aiogram.types.bot_command_scope_chat_member.BotCommandScopeChatMember.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.types.bot_command_scope_chat_member.BotCommandScopeChatMember.user_id:1 -#: of -msgid "Unique identifier of the target user" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_default.po b/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_default.po deleted file mode 100644 index d4f81fde..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/bot_command_scope_default.po +++ /dev/null @@ -1,40 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/bot_command_scope_default.rst:3 -msgid "BotCommandScopeDefault" -msgstr "" - -#: aiogram.types.bot_command_scope_default.BotCommandScopeDefault:1 of -msgid "" -"Represents the default `scope " -"`_ of bot commands. " -"Default commands are used if no commands with a `narrower scope " -"`_ are " -"specified for the user." -msgstr "" - -#: aiogram.types.bot_command_scope_default.BotCommandScopeDefault:3 of -msgid "Source: https://core.telegram.org/bots/api#botcommandscopedefault" -msgstr "" - -#: ../../docstring -#: aiogram.types.bot_command_scope_default.BotCommandScopeDefault.type:1 of -msgid "Scope type, must be *default*" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/bot_description.po b/docs/locale/en/LC_MESSAGES/api/types/bot_description.po deleted file mode 100644 index 2f295229..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/bot_description.po +++ /dev/null @@ -1,35 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/bot_description.rst:3 -msgid "BotDescription" -msgstr "" - -#: aiogram.types.bot_description.BotDescription:1 of -msgid "This object represents the bot's description." -msgstr "" - -#: aiogram.types.bot_description.BotDescription:3 of -msgid "Source: https://core.telegram.org/bots/api#botdescription" -msgstr "" - -#: ../../docstring aiogram.types.bot_description.BotDescription.description:1 -#: of -msgid "The bot's description" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/bot_name.po b/docs/locale/en/LC_MESSAGES/api/types/bot_name.po deleted file mode 100644 index 64e89253..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/bot_name.po +++ /dev/null @@ -1,34 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/bot_name.rst:3 -msgid "BotName" -msgstr "" - -#: aiogram.types.bot_name.BotName:1 of -msgid "This object represents the bot's name." -msgstr "" - -#: aiogram.types.bot_name.BotName:3 of -msgid "Source: https://core.telegram.org/bots/api#botname" -msgstr "" - -#: ../../docstring aiogram.types.bot_name.BotName.name:1 of -msgid "The bot's name" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/bot_short_description.po b/docs/locale/en/LC_MESSAGES/api/types/bot_short_description.po deleted file mode 100644 index 8855dc52..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/bot_short_description.po +++ /dev/null @@ -1,36 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/bot_short_description.rst:3 -msgid "BotShortDescription" -msgstr "" - -#: aiogram.types.bot_short_description.BotShortDescription:1 of -msgid "This object represents the bot's short description." -msgstr "" - -#: aiogram.types.bot_short_description.BotShortDescription:3 of -msgid "Source: https://core.telegram.org/bots/api#botshortdescription" -msgstr "" - -#: ../../docstring -#: aiogram.types.bot_short_description.BotShortDescription.short_description:1 -#: of -msgid "The bot's short description" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/callback_game.po b/docs/locale/en/LC_MESSAGES/api/types/callback_game.po deleted file mode 100644 index f564ef56..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/callback_game.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/callback_game.rst:3 -msgid "CallbackGame" -msgstr "" - -#: aiogram.types.callback_game.CallbackGame:1 of -msgid "" -"A placeholder, currently holds no information. Use `BotFather " -"`_ to set up your game." -msgstr "" - -#: aiogram.types.callback_game.CallbackGame:3 of -msgid "Source: https://core.telegram.org/bots/api#callbackgame" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/callback_query.po b/docs/locale/en/LC_MESSAGES/api/types/callback_query.po deleted file mode 100644 index cb74a993..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/callback_query.po +++ /dev/null @@ -1,191 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/callback_query.rst:3 -msgid "CallbackQuery" -msgstr "" - -#: aiogram.types.callback_query.CallbackQuery:1 of -msgid "" -"This object represents an incoming callback query from a callback button " -"in an `inline keyboard `_. If the button that originated the query was attached to a " -"message sent by the bot, the field *message* will be present. If the " -"button was attached to a message sent via the bot (in `inline mode " -"`_), the field " -"*inline_message_id* will be present. Exactly one of the fields *data* or " -"*game_short_name* will be present." -msgstr "" - -#: aiogram.types.callback_query.CallbackQuery:3 of -msgid "" -"**NOTE:** After the user presses a callback button, Telegram clients will" -" display a progress bar until you call " -":class:`aiogram.methods.answer_callback_query.AnswerCallbackQuery`. It " -"is, therefore, necessary to react by calling " -":class:`aiogram.methods.answer_callback_query.AnswerCallbackQuery` even " -"if no notification to the user is needed (e.g., without specifying any of" -" the optional parameters)." -msgstr "" - -#: aiogram.types.callback_query.CallbackQuery:5 of -msgid "Source: https://core.telegram.org/bots/api#callbackquery" -msgstr "" - -#: ../../docstring aiogram.types.callback_query.CallbackQuery.id:1 of -msgid "Unique identifier for this query" -msgstr "" - -#: ../../docstring aiogram.types.callback_query.CallbackQuery.from_user:1 of -msgid "Sender" -msgstr "" - -#: ../../docstring aiogram.types.callback_query.CallbackQuery.chat_instance:1 -#: of -msgid "" -"Global identifier, uniquely corresponding to the chat to which the " -"message with the callback button was sent. Useful for high scores in " -":class:`aiogram.methods.games.Games`." -msgstr "" - -#: ../../docstring aiogram.types.callback_query.CallbackQuery.message:1 of -msgid "" -"*Optional*. Message with the callback button that originated the query. " -"Note that message content and message date will not be available if the " -"message is too old" -msgstr "" - -#: ../../docstring -#: aiogram.types.callback_query.CallbackQuery.inline_message_id:1 of -msgid "" -"*Optional*. Identifier of the message sent via the bot in inline mode, " -"that originated the query." -msgstr "" - -#: ../../docstring aiogram.types.callback_query.CallbackQuery.data:1 of -msgid "" -"*Optional*. Data associated with the callback button. Be aware that the " -"message originated the query can contain no callback buttons with this " -"data." -msgstr "" - -#: ../../docstring aiogram.types.callback_query.CallbackQuery.game_short_name:1 -#: of -msgid "" -"*Optional*. Short name of a `Game " -"`_ to be returned, serves as " -"the unique identifier for the game" -msgstr "" - -#: aiogram.types.callback_query.CallbackQuery.answer:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.answer_callback_query.AnswerCallbackQuery` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.callback_query.CallbackQuery.answer:4 of -msgid ":code:`callback_query_id`" -msgstr "" - -#: aiogram.types.callback_query.CallbackQuery.answer:6 of -msgid "" -"Use this method to send answers to callback queries sent from `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.types.callback_query.CallbackQuery.answer:8 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 `_ 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.types.callback_query.CallbackQuery.answer:10 of -msgid "Source: https://core.telegram.org/bots/api#answercallbackquery" -msgstr "" - -#: aiogram.types.callback_query.CallbackQuery.answer of -msgid "Parameters" -msgstr "" - -#: aiogram.types.callback_query.CallbackQuery.answer:12 of -msgid "" -"Text of the notification. If not specified, nothing will be shown to the " -"user, 0-200 characters" -msgstr "" - -#: aiogram.types.callback_query.CallbackQuery.answer:13 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 "" - -#: aiogram.types.callback_query.CallbackQuery.answer:14 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 `_, 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 " -"`_ " -"*callback_game* button." -msgstr "" - -#: aiogram.types.callback_query.CallbackQuery.answer:15 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 "" - -#: aiogram.types.callback_query.CallbackQuery.answer of -msgid "Returns" -msgstr "" - -#: aiogram.types.callback_query.CallbackQuery.answer:16 of -msgid "" -"instance of method " -":class:`aiogram.methods.answer_callback_query.AnswerCallbackQuery`" -msgstr "" - -#~ msgid "" -#~ "This object represents an incoming " -#~ "callback query from a callback button" -#~ " in an `inline keyboard " -#~ "`_. If the " -#~ "button that originated the query was " -#~ "attached to a message sent by the" -#~ " bot, the field *message* will be " -#~ "present. If the button was attached " -#~ "to a message sent via the bot " -#~ "(in `inline mode `_), the field *inline_message_id*" -#~ " will be present. Exactly one of " -#~ "the fields *data* or *game_short_name* " -#~ "will be present." -#~ msgstr "" - -#~ msgid "Answer to callback query" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/chat.po b/docs/locale/en/LC_MESSAGES/api/types/chat.po deleted file mode 100644 index 9628f5ea..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/chat.po +++ /dev/null @@ -1,1326 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 2022. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aiogram \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-26 23:17+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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/types/chat.rst:3 -msgid "Chat" -msgstr "" - -#: aiogram.types.chat.Chat:1 of -msgid "This object represents a chat." -msgstr "" - -#: aiogram.types.chat.Chat:3 of -msgid "Source: https://core.telegram.org/bots/api#chat" -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.id:1 of -msgid "" -"Unique identifier for this chat. This number may have more than 32 " -"significant bits and some programming languages may have " -"difficulty/silent defects in interpreting it. But it has at most 52 " -"significant bits, so a signed 64-bit integer or double-precision float " -"type are safe for storing this identifier." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.type:1 of -msgid "Type of chat, can be either 'private', 'group', 'supergroup' or 'channel'" -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.title:1 of -msgid "*Optional*. Title, for supergroups, channels and group chats" -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.username:1 of -msgid "" -"*Optional*. Username, for private chats, supergroups and channels if " -"available" -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.first_name:1 of -msgid "*Optional*. First name of the other party in a private chat" -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.last_name:1 of -msgid "*Optional*. Last name of the other party in a private chat" -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.is_forum:1 of -msgid "" -"*Optional*. :code:`True`, if the supergroup chat is a forum (has `topics " -"`_ enabled)" -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.photo:1 of -msgid "" -"*Optional*. Chat photo. Returned only in " -":class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.active_usernames:1 of -msgid "" -"*Optional*. If non-empty, the list of all `active chat usernames " -"`_; for private chats, supergroups and channels. " -"Returned only in :class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.emoji_status_custom_emoji_id:1 of -msgid "" -"*Optional*. Custom emoji identifier of emoji status of the other party in" -" a private chat. Returned only in " -":class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.emoji_status_expiration_date:1 of -msgid "" -"*Optional*. Expiration date of the emoji status of the other party in a " -"private chat, if any. Returned only in " -":class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.bio:1 of -msgid "" -"*Optional*. Bio of the other party in a private chat. Returned only in " -":class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.has_private_forwards:1 of -msgid "" -"*Optional*. :code:`True`, if privacy settings of the other party in the " -"private chat allows to use :code:`tg://user?id=` links only in " -"chats with the user. Returned only in " -":class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring -#: aiogram.types.chat.Chat.has_restricted_voice_and_video_messages:1 of -msgid "" -"*Optional*. :code:`True`, if the privacy settings of the other party " -"restrict sending voice and video note messages in the private chat. " -"Returned only in :class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.join_to_send_messages:1 of -msgid "" -"*Optional*. :code:`True`, if users need to join the supergroup before " -"they can send messages. Returned only in " -":class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.join_by_request:1 of -msgid "" -"*Optional*. :code:`True`, if all users directly joining the supergroup " -"need to be approved by supergroup administrators. Returned only in " -":class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.description:1 of -msgid "" -"*Optional*. Description, for groups, supergroups and channel chats. " -"Returned only in :class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.invite_link:1 of -msgid "" -"*Optional*. Primary invite link, for groups, supergroups and channel " -"chats. Returned only in :class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.pinned_message:1 of -msgid "" -"*Optional*. The most recent pinned message (by sending date). Returned " -"only in :class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.permissions:1 of -msgid "" -"*Optional*. Default chat member permissions, for groups and supergroups. " -"Returned only in :class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.slow_mode_delay:1 of -msgid "" -"*Optional*. For supergroups, the minimum allowed delay between " -"consecutive messages sent by each unpriviledged user; in seconds. " -"Returned only in :class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.message_auto_delete_time:1 of -msgid "" -"*Optional*. The time after which all messages sent to the chat will be " -"automatically deleted; in seconds. Returned only in " -":class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.has_aggressive_anti_spam_enabled:1 -#: of -msgid "" -"*Optional*. :code:`True`, if aggressive anti-spam checks are enabled in " -"the supergroup. The field is only available to chat administrators. " -"Returned only in :class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.has_hidden_members:1 of -msgid "" -"*Optional*. :code:`True`, if non-administrators can only get the list of " -"bots and administrators in the chat. Returned only in " -":class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.has_protected_content:1 of -msgid "" -"*Optional*. :code:`True`, if messages from the chat can't be forwarded to" -" other chats. Returned only in :class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.sticker_set_name:1 of -msgid "" -"*Optional*. For supergroups, name of group sticker set. Returned only in " -":class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.can_set_sticker_set:1 of -msgid "" -"*Optional*. :code:`True`, if the bot can change the group sticker set. " -"Returned only in :class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.linked_chat_id:1 of -msgid "" -"*Optional*. Unique identifier for the linked chat, i.e. the discussion " -"group identifier for a channel and vice versa; for supergroups and " -"channel chats. This identifier may be greater than 32 bits and some " -"programming languages may have difficulty/silent defects in interpreting " -"it. But it is smaller than 52 bits, so a signed 64 bit integer or double-" -"precision float type are safe for storing this identifier. Returned only " -"in :class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: ../../docstring aiogram.types.chat.Chat.location:1 of -msgid "" -"*Optional*. For supergroups, the location to which the supergroup is " -"connected. Returned only in :class:`aiogram.methods.get_chat.GetChat`." -msgstr "" - -#: aiogram.types.chat.Chat.shifted_id:1 of -msgid "" -"Returns shifted chat ID (positive and without \"-100\" prefix). Mostly " -"used for private links like t.me/c/chat_id/message_id" -msgstr "" - -#: aiogram.types.chat.Chat.shifted_id:4 of -msgid "" -"Currently supergroup/channel IDs have 10-digit ID after \"-100\" prefix " -"removed. However, these IDs might become 11-digit in future. So, first we" -" remove \"-100\" prefix and count remaining number length. Then we " -"multiple -1 * 10 ^ (number_length + 2) Finally, self.id is substracted " -"from that number" -msgstr "" - -#: aiogram.types.chat.Chat.full_name:1 of -msgid "Get full name of the Chat." -msgstr "" - -#: aiogram.types.chat.Chat.full_name:3 of -msgid "" -"For private chat it is first_name + last_name. For other chat types it is" -" title." -msgstr "" - -#: aiogram.types.chat.Chat.ban_sender_chat:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.ban_chat_sender_chat.BanChatSenderChat` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.ban:4 aiogram.types.chat.Chat.ban_sender_chat:4 -#: aiogram.types.chat.Chat.create_invite_link:4 -#: aiogram.types.chat.Chat.delete_message:4 -#: aiogram.types.chat.Chat.delete_photo:4 -#: aiogram.types.chat.Chat.delete_sticker_set:4 aiogram.types.chat.Chat.do:4 -#: aiogram.types.chat.Chat.edit_invite_link:4 -#: aiogram.types.chat.Chat.export_invite_link:4 -#: aiogram.types.chat.Chat.get_administrators:4 -#: aiogram.types.chat.Chat.get_member:4 -#: aiogram.types.chat.Chat.get_member_count:4 aiogram.types.chat.Chat.leave:4 -#: aiogram.types.chat.Chat.pin_message:4 aiogram.types.chat.Chat.promote:4 -#: aiogram.types.chat.Chat.restrict:4 -#: aiogram.types.chat.Chat.revoke_invite_link:4 -#: aiogram.types.chat.Chat.set_administrator_custom_title:4 -#: aiogram.types.chat.Chat.set_description:4 -#: aiogram.types.chat.Chat.set_permissions:4 -#: aiogram.types.chat.Chat.set_photo:4 -#: aiogram.types.chat.Chat.set_sticker_set:4 -#: aiogram.types.chat.Chat.set_title:4 aiogram.types.chat.Chat.unban:4 -#: aiogram.types.chat.Chat.unban_sender_chat:4 -#: aiogram.types.chat.Chat.unpin_all_general_forum_topic_messages:4 -#: aiogram.types.chat.Chat.unpin_all_messages:4 -#: aiogram.types.chat.Chat.unpin_message:4 of -msgid ":code:`chat_id`" -msgstr "" - -#: aiogram.types.chat.Chat.ban_sender_chat:6 of -msgid "" -"Use this method to ban a channel chat in a supergroup or a channel. Until" -" the chat is `unbanned " -"`_, 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.types.chat.Chat.ban_sender_chat:8 of -msgid "Source: https://core.telegram.org/bots/api#banchatsenderchat" -msgstr "" - -#: aiogram.types.chat.Chat.ban aiogram.types.chat.Chat.ban_sender_chat -#: aiogram.types.chat.Chat.create_invite_link -#: aiogram.types.chat.Chat.delete_message aiogram.types.chat.Chat.do -#: aiogram.types.chat.Chat.edit_invite_link aiogram.types.chat.Chat.get_member -#: aiogram.types.chat.Chat.pin_message aiogram.types.chat.Chat.promote -#: aiogram.types.chat.Chat.restrict aiogram.types.chat.Chat.revoke_invite_link -#: aiogram.types.chat.Chat.set_administrator_custom_title -#: aiogram.types.chat.Chat.set_description -#: aiogram.types.chat.Chat.set_permissions aiogram.types.chat.Chat.set_photo -#: aiogram.types.chat.Chat.set_sticker_set aiogram.types.chat.Chat.set_title -#: aiogram.types.chat.Chat.unban aiogram.types.chat.Chat.unban_sender_chat -#: aiogram.types.chat.Chat.unpin_message of -msgid "Parameters" -msgstr "" - -#: aiogram.types.chat.Chat.ban_sender_chat:10 -#: aiogram.types.chat.Chat.unban_sender_chat:10 of -msgid "Unique identifier of the target sender chat" -msgstr "" - -#: aiogram.types.chat.Chat.ban aiogram.types.chat.Chat.ban_sender_chat -#: aiogram.types.chat.Chat.create_invite_link -#: aiogram.types.chat.Chat.delete_message aiogram.types.chat.Chat.delete_photo -#: aiogram.types.chat.Chat.delete_sticker_set aiogram.types.chat.Chat.do -#: aiogram.types.chat.Chat.edit_invite_link -#: aiogram.types.chat.Chat.export_invite_link -#: aiogram.types.chat.Chat.get_administrators -#: aiogram.types.chat.Chat.get_member aiogram.types.chat.Chat.get_member_count -#: aiogram.types.chat.Chat.leave aiogram.types.chat.Chat.pin_message -#: aiogram.types.chat.Chat.promote aiogram.types.chat.Chat.restrict -#: aiogram.types.chat.Chat.revoke_invite_link -#: aiogram.types.chat.Chat.set_administrator_custom_title -#: aiogram.types.chat.Chat.set_description -#: aiogram.types.chat.Chat.set_permissions aiogram.types.chat.Chat.set_photo -#: aiogram.types.chat.Chat.set_sticker_set aiogram.types.chat.Chat.set_title -#: aiogram.types.chat.Chat.unban aiogram.types.chat.Chat.unban_sender_chat -#: aiogram.types.chat.Chat.unpin_all_general_forum_topic_messages -#: aiogram.types.chat.Chat.unpin_all_messages -#: aiogram.types.chat.Chat.unpin_message of -msgid "Returns" -msgstr "" - -#: aiogram.types.chat.Chat.ban_sender_chat:11 of -msgid "" -"instance of method " -":class:`aiogram.methods.ban_chat_sender_chat.BanChatSenderChat`" -msgstr "" - -#: aiogram.types.chat.Chat.unban_sender_chat:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.unban_chat_sender_chat.UnbanChatSenderChat` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.unban_sender_chat:6 of -msgid "" -"Use this method to unban a previously banned channel chat in a supergroup" -" or channel. The bot must be an administrator for this to work and must " -"have the appropriate administrator rights. Returns :code:`True` on " -"success." -msgstr "" - -#: aiogram.types.chat.Chat.unban_sender_chat:8 of -msgid "Source: https://core.telegram.org/bots/api#unbanchatsenderchat" -msgstr "" - -#: aiogram.types.chat.Chat.unban_sender_chat:11 of -msgid "" -"instance of method " -":class:`aiogram.methods.unban_chat_sender_chat.UnbanChatSenderChat`" -msgstr "" - -#: aiogram.types.chat.Chat.get_administrators:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.get_chat_administrators.GetChatAdministrators` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.get_administrators:6 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.types.chat.Chat.get_administrators:8 of -msgid "Source: https://core.telegram.org/bots/api#getchatadministrators" -msgstr "" - -#: aiogram.types.chat.Chat.get_administrators:10 of -msgid "" -"instance of method " -":class:`aiogram.methods.get_chat_administrators.GetChatAdministrators`" -msgstr "" - -#: aiogram.types.chat.Chat.delete_message:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.delete_message.DeleteMessage`" -" will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.delete_message:6 of -msgid "" -"Use this method to delete a message, including service messages, with the" -" following limitations:" -msgstr "" - -#: aiogram.types.chat.Chat.delete_message:8 of -msgid "A message can only be deleted if it was sent less than 48 hours ago." -msgstr "" - -#: aiogram.types.chat.Chat.delete_message:10 of -msgid "" -"Service messages about a supergroup, channel, or forum topic creation " -"can't be deleted." -msgstr "" - -#: aiogram.types.chat.Chat.delete_message:12 of -msgid "" -"A dice message in a private chat can only be deleted if it was sent more " -"than 24 hours ago." -msgstr "" - -#: aiogram.types.chat.Chat.delete_message:14 of -msgid "" -"Bots can delete outgoing messages in private chats, groups, and " -"supergroups." -msgstr "" - -#: aiogram.types.chat.Chat.delete_message:16 of -msgid "Bots can delete incoming messages in private chats." -msgstr "" - -#: aiogram.types.chat.Chat.delete_message:18 of -msgid "" -"Bots granted *can_post_messages* permissions can delete outgoing messages" -" in channels." -msgstr "" - -#: aiogram.types.chat.Chat.delete_message:20 of -msgid "" -"If the bot is an administrator of a group, it can delete any message " -"there." -msgstr "" - -#: aiogram.types.chat.Chat.delete_message:22 of -msgid "" -"If the bot has *can_delete_messages* permission in a supergroup or a " -"channel, it can delete any message there." -msgstr "" - -#: aiogram.types.chat.Chat.delete_message:24 of -msgid "Returns :code:`True` on success." -msgstr "" - -#: aiogram.types.chat.Chat.delete_message:26 of -msgid "Source: https://core.telegram.org/bots/api#deletemessage" -msgstr "" - -#: aiogram.types.chat.Chat.delete_message:28 of -msgid "Identifier of the message to delete" -msgstr "" - -#: aiogram.types.chat.Chat.delete_message:29 of -msgid "instance of method :class:`aiogram.methods.delete_message.DeleteMessage`" -msgstr "" - -#: aiogram.types.chat.Chat.revoke_invite_link:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.revoke_chat_invite_link.RevokeChatInviteLink` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.revoke_invite_link:6 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.types.chat.Chat.revoke_invite_link:8 of -msgid "Source: https://core.telegram.org/bots/api#revokechatinvitelink" -msgstr "" - -#: aiogram.types.chat.Chat.revoke_invite_link:10 of -msgid "The invite link to revoke" -msgstr "" - -#: aiogram.types.chat.Chat.revoke_invite_link:11 of -msgid "" -"instance of method " -":class:`aiogram.methods.revoke_chat_invite_link.RevokeChatInviteLink`" -msgstr "" - -#: aiogram.types.chat.Chat.edit_invite_link:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.edit_chat_invite_link.EditChatInviteLink` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.edit_invite_link:6 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.types.chat.Chat.edit_invite_link:8 of -msgid "Source: https://core.telegram.org/bots/api#editchatinvitelink" -msgstr "" - -#: aiogram.types.chat.Chat.edit_invite_link:10 of -msgid "The invite link to edit" -msgstr "" - -#: aiogram.types.chat.Chat.create_invite_link:10 -#: aiogram.types.chat.Chat.edit_invite_link:11 of -msgid "Invite link name; 0-32 characters" -msgstr "" - -#: aiogram.types.chat.Chat.create_invite_link:11 -#: aiogram.types.chat.Chat.edit_invite_link:12 of -msgid "Point in time (Unix timestamp) when the link will expire" -msgstr "" - -#: aiogram.types.chat.Chat.create_invite_link:12 -#: aiogram.types.chat.Chat.edit_invite_link:13 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 "" - -#: aiogram.types.chat.Chat.create_invite_link:13 -#: aiogram.types.chat.Chat.edit_invite_link:14 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 "" - -#: aiogram.types.chat.Chat.edit_invite_link:15 of -msgid "" -"instance of method " -":class:`aiogram.methods.edit_chat_invite_link.EditChatInviteLink`" -msgstr "" - -#: aiogram.types.chat.Chat.create_invite_link:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.create_chat_invite_link.CreateChatInviteLink` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.create_invite_link:6 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.types.chat.Chat.create_invite_link:8 of -msgid "Source: https://core.telegram.org/bots/api#createchatinvitelink" -msgstr "" - -#: aiogram.types.chat.Chat.create_invite_link:14 of -msgid "" -"instance of method " -":class:`aiogram.methods.create_chat_invite_link.CreateChatInviteLink`" -msgstr "" - -#: aiogram.types.chat.Chat.export_invite_link:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.export_chat_invite_link.ExportChatInviteLink` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.export_invite_link:6 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.types.chat.Chat.export_invite_link:8 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.types.chat.Chat.export_invite_link:10 of -msgid "Source: https://core.telegram.org/bots/api#exportchatinvitelink" -msgstr "" - -#: aiogram.types.chat.Chat.export_invite_link:12 of -msgid "" -"instance of method " -":class:`aiogram.methods.export_chat_invite_link.ExportChatInviteLink`" -msgstr "" - -#: aiogram.types.chat.Chat.do:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.send_chat_action.SendChatAction` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.do:6 of -msgid "" -"Use this method when you need to tell the user that something is " -"happening on the bot's side. The status is set for 5 seconds or less " -"(when a message arrives from your bot, Telegram clients clear its typing " -"status). Returns :code:`True` on success." -msgstr "" - -#: aiogram.types.chat.Chat.do:8 of -msgid "" -"Example: The `ImageBot `_ needs some time to " -"process a request and upload the image. Instead of sending a text message" -" along the lines of 'Retrieving image, please wait…', the bot may use " -":class:`aiogram.methods.send_chat_action.SendChatAction` with *action* = " -"*upload_photo*. The user will see a 'sending photo' status for the bot." -msgstr "" - -#: aiogram.types.chat.Chat.do:10 of -msgid "" -"We only recommend using this method when a response from the bot will " -"take a **noticeable** amount of time to arrive." -msgstr "" - -#: aiogram.types.chat.Chat.do:12 of -msgid "Source: https://core.telegram.org/bots/api#sendchataction" -msgstr "" - -#: aiogram.types.chat.Chat.do:14 of -msgid "" -"Type of action to broadcast. Choose one, depending on what the user is " -"about to receive: *typing* for `text messages " -"`_, *upload_photo* for " -"`photos `_, *record_video* " -"or *upload_video* for `videos " -"`_, *record_voice* or " -"*upload_voice* for `voice notes " -"`_, *upload_document* for " -"`general files `_, " -"*choose_sticker* for `stickers " -"`_, *find_location* for " -"`location data `_, " -"*record_video_note* or *upload_video_note* for `video notes " -"`_." -msgstr "" - -#: aiogram.types.chat.Chat.do:15 of -msgid "Unique identifier for the target message thread; supergroups only" -msgstr "" - -#: aiogram.types.chat.Chat.do:16 of -msgid "" -"instance of method " -":class:`aiogram.methods.send_chat_action.SendChatAction`" -msgstr "" - -#: aiogram.types.chat.Chat.delete_sticker_set:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.delete_chat_sticker_set.DeleteChatStickerSet` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.delete_sticker_set:6 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.types.chat.Chat.delete_sticker_set:8 of -msgid "Source: https://core.telegram.org/bots/api#deletechatstickerset" -msgstr "" - -#: aiogram.types.chat.Chat.delete_sticker_set:10 of -msgid "" -"instance of method " -":class:`aiogram.methods.delete_chat_sticker_set.DeleteChatStickerSet`" -msgstr "" - -#: aiogram.types.chat.Chat.set_sticker_set:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.set_chat_sticker_set.SetChatStickerSet` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.set_sticker_set:6 of -msgid "" -"Use this method to set a new group sticker set for a supergroup. The bot " -"must be an administrator in the chat for this to work and must have the " -"appropriate administrator rights. Use the field *can_set_sticker_set* " -"optionally returned in :class:`aiogram.methods.get_chat.GetChat` requests" -" to check if the bot can use this method. Returns :code:`True` on " -"success." -msgstr "" - -#: aiogram.types.chat.Chat.set_sticker_set:8 of -msgid "Source: https://core.telegram.org/bots/api#setchatstickerset" -msgstr "" - -#: aiogram.types.chat.Chat.set_sticker_set:10 of -msgid "Name of the sticker set to be set as the group sticker set" -msgstr "" - -#: aiogram.types.chat.Chat.set_sticker_set:11 of -msgid "" -"instance of method " -":class:`aiogram.methods.set_chat_sticker_set.SetChatStickerSet`" -msgstr "" - -#: aiogram.types.chat.Chat.get_member:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.get_chat_member.GetChatMember` will automatically" -" fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.get_member:6 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.types.chat.Chat.get_member:8 of -msgid "Source: https://core.telegram.org/bots/api#getchatmember" -msgstr "" - -#: aiogram.types.chat.Chat.ban:10 aiogram.types.chat.Chat.get_member:10 -#: aiogram.types.chat.Chat.promote:10 aiogram.types.chat.Chat.restrict:10 -#: aiogram.types.chat.Chat.set_administrator_custom_title:10 -#: aiogram.types.chat.Chat.unban:10 of -msgid "Unique identifier of the target user" -msgstr "" - -#: aiogram.types.chat.Chat.get_member:11 of -msgid "instance of method :class:`aiogram.methods.get_chat_member.GetChatMember`" -msgstr "" - -#: aiogram.types.chat.Chat.get_member_count:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.get_chat_member_count.GetChatMemberCount` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.get_member_count:6 of -msgid "" -"Use this method to get the number of members in a chat. Returns *Int* on " -"success." -msgstr "" - -#: aiogram.types.chat.Chat.get_member_count:8 of -msgid "Source: https://core.telegram.org/bots/api#getchatmembercount" -msgstr "" - -#: aiogram.types.chat.Chat.get_member_count:10 of -msgid "" -"instance of method " -":class:`aiogram.methods.get_chat_member_count.GetChatMemberCount`" -msgstr "" - -#: aiogram.types.chat.Chat.leave:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.leave_chat.LeaveChat` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.leave:6 of -msgid "" -"Use this method for your bot to leave a group, supergroup or channel. " -"Returns :code:`True` on success." -msgstr "" - -#: aiogram.types.chat.Chat.leave:8 of -msgid "Source: https://core.telegram.org/bots/api#leavechat" -msgstr "" - -#: aiogram.types.chat.Chat.leave:10 of -msgid "instance of method :class:`aiogram.methods.leave_chat.LeaveChat`" -msgstr "" - -#: aiogram.types.chat.Chat.unpin_all_messages:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.unpin_all_chat_messages.UnpinAllChatMessages` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.unpin_all_messages:6 of -msgid "" -"Use this method to clear 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.types.chat.Chat.unpin_all_messages:8 of -msgid "Source: https://core.telegram.org/bots/api#unpinallchatmessages" -msgstr "" - -#: aiogram.types.chat.Chat.unpin_all_messages:10 of -msgid "" -"instance of method " -":class:`aiogram.methods.unpin_all_chat_messages.UnpinAllChatMessages`" -msgstr "" - -#: aiogram.types.chat.Chat.unpin_message:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.unpin_chat_message.UnpinChatMessage` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.unpin_message:6 of -msgid "" -"Use this method to remove a message from 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.types.chat.Chat.unpin_message:8 of -msgid "Source: https://core.telegram.org/bots/api#unpinchatmessage" -msgstr "" - -#: aiogram.types.chat.Chat.unpin_message:10 of -msgid "" -"Identifier of a message to unpin. If not specified, the most recent " -"pinned message (by sending date) will be unpinned." -msgstr "" - -#: aiogram.types.chat.Chat.unpin_message:11 of -msgid "" -"instance of method " -":class:`aiogram.methods.unpin_chat_message.UnpinChatMessage`" -msgstr "" - -#: aiogram.types.chat.Chat.pin_message:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.pin_chat_message.PinChatMessage` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.pin_message:6 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.types.chat.Chat.pin_message:8 of -msgid "Source: https://core.telegram.org/bots/api#pinchatmessage" -msgstr "" - -#: aiogram.types.chat.Chat.pin_message:10 of -msgid "Identifier of a message to pin" -msgstr "" - -#: aiogram.types.chat.Chat.pin_message:11 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 "" - -#: aiogram.types.chat.Chat.pin_message:12 of -msgid "" -"instance of method " -":class:`aiogram.methods.pin_chat_message.PinChatMessage`" -msgstr "" - -#: aiogram.types.chat.Chat.set_administrator_custom_title:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.set_chat_administrator_custom_title.SetChatAdministratorCustomTitle`" -" will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.set_administrator_custom_title:6 of -msgid "" -"Use this method to set a custom title for an administrator in a " -"supergroup promoted by the bot. Returns :code:`True` on success." -msgstr "" - -#: aiogram.types.chat.Chat.set_administrator_custom_title:8 of -msgid "Source: https://core.telegram.org/bots/api#setchatadministratorcustomtitle" -msgstr "" - -#: aiogram.types.chat.Chat.set_administrator_custom_title:11 of -msgid "" -"New custom title for the administrator; 0-16 characters, emoji are not " -"allowed" -msgstr "" - -#: aiogram.types.chat.Chat.set_administrator_custom_title:12 of -msgid "" -"instance of method " -":class:`aiogram.methods.set_chat_administrator_custom_title.SetChatAdministratorCustomTitle`" -msgstr "" - -#: aiogram.types.chat.Chat.set_permissions:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.set_chat_permissions.SetChatPermissions` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.set_permissions:6 of -msgid "" -"Use this method to set default chat permissions for all members. The bot " -"must be an administrator in the group or a supergroup for this to work " -"and must have the *can_restrict_members* administrator rights. Returns " -":code:`True` on success." -msgstr "" - -#: aiogram.types.chat.Chat.set_permissions:8 of -msgid "Source: https://core.telegram.org/bots/api#setchatpermissions" -msgstr "" - -#: aiogram.types.chat.Chat.set_permissions:10 of -msgid "A JSON-serialized object for new default chat permissions" -msgstr "" - -#: aiogram.types.chat.Chat.restrict:12 -#: aiogram.types.chat.Chat.set_permissions:11 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 "" - -#: aiogram.types.chat.Chat.set_permissions:12 of -msgid "" -"instance of method " -":class:`aiogram.methods.set_chat_permissions.SetChatPermissions`" -msgstr "" - -#: aiogram.types.chat.Chat.promote:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.promote_chat_member.PromoteChatMember` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.promote:6 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.types.chat.Chat.promote:8 of -msgid "Source: https://core.telegram.org/bots/api#promotechatmember" -msgstr "" - -#: aiogram.types.chat.Chat.promote:11 of -msgid "Pass :code:`True` if the administrator's presence in the chat is hidden" -msgstr "" - -#: aiogram.types.chat.Chat.promote:12 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 "" - -#: aiogram.types.chat.Chat.promote:13 of -msgid "" -"Pass :code:`True` if the administrator can create channel posts, channels" -" only" -msgstr "" - -#: aiogram.types.chat.Chat.promote:14 of -msgid "" -"Pass :code:`True` if the administrator can edit messages of other users " -"and can pin messages, channels only" -msgstr "" - -#: aiogram.types.chat.Chat.promote:15 of -msgid "Pass :code:`True` if the administrator can delete messages of other users" -msgstr "" - -#: aiogram.types.chat.Chat.promote:16 of -msgid "Pass :code:`True` if the administrator can manage video chats" -msgstr "" - -#: aiogram.types.chat.Chat.promote:17 of -msgid "" -"Pass :code:`True` if the administrator can restrict, ban or unban chat " -"members" -msgstr "" - -#: aiogram.types.chat.Chat.promote:18 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 "" - -#: aiogram.types.chat.Chat.promote:19 of -msgid "" -"Pass :code:`True` if the administrator can change chat title, photo and " -"other settings" -msgstr "" - -#: aiogram.types.chat.Chat.promote:20 of -msgid "Pass :code:`True` if the administrator can invite new users to the chat" -msgstr "" - -#: aiogram.types.chat.Chat.promote:21 of -msgid "Pass :code:`True` if the administrator can pin messages, supergroups only" -msgstr "" - -#: aiogram.types.chat.Chat.promote:22 of -msgid "" -"Pass :code:`True` if the user is allowed to create, rename, close, and " -"reopen forum topics, supergroups only" -msgstr "" - -#: aiogram.types.chat.Chat.promote:23 of -msgid "" -"instance of method " -":class:`aiogram.methods.promote_chat_member.PromoteChatMember`" -msgstr "" - -#: aiogram.types.chat.Chat.restrict:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.restrict_chat_member.RestrictChatMember` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.restrict:6 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.types.chat.Chat.restrict:8 of -msgid "Source: https://core.telegram.org/bots/api#restrictchatmember" -msgstr "" - -#: aiogram.types.chat.Chat.restrict:11 of -msgid "A JSON-serialized object for new user permissions" -msgstr "" - -#: aiogram.types.chat.Chat.restrict:13 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 "" - -#: aiogram.types.chat.Chat.restrict:14 of -msgid "" -"instance of method " -":class:`aiogram.methods.restrict_chat_member.RestrictChatMember`" -msgstr "" - -#: aiogram.types.chat.Chat.unban:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.unban_chat_member.UnbanChatMember` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.unban:6 of -msgid "" -"Use this method to unban a previously banned user in a supergroup or " -"channel. The user will **not** return to the group or channel " -"automatically, but will be able to join via link, etc. The bot must be an" -" administrator for this to work. By default, this method guarantees that " -"after the call the user is not a member of the chat, but will be able to " -"join it. So if the user is a member of the chat they will also be " -"**removed** from the chat. If you don't want this, use the parameter " -"*only_if_banned*. Returns :code:`True` on success." -msgstr "" - -#: aiogram.types.chat.Chat.unban:8 of -msgid "Source: https://core.telegram.org/bots/api#unbanchatmember" -msgstr "" - -#: aiogram.types.chat.Chat.unban:11 of -msgid "Do nothing if the user is not banned" -msgstr "" - -#: aiogram.types.chat.Chat.unban:12 of -msgid "" -"instance of method " -":class:`aiogram.methods.unban_chat_member.UnbanChatMember`" -msgstr "" - -#: aiogram.types.chat.Chat.ban:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.ban_chat_member.BanChatMember` will automatically" -" fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.ban:6 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 " -"`_ 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.types.chat.Chat.ban:8 of -msgid "Source: https://core.telegram.org/bots/api#banchatmember" -msgstr "" - -#: aiogram.types.chat.Chat.ban:11 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 "" - -#: aiogram.types.chat.Chat.ban:12 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 "" - -#: aiogram.types.chat.Chat.ban:13 of -msgid "instance of method :class:`aiogram.methods.ban_chat_member.BanChatMember`" -msgstr "" - -#: aiogram.types.chat.Chat.set_description:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.set_chat_description.SetChatDescription` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.set_description:6 of -msgid "" -"Use this method to change the description of a group, a supergroup or a " -"channel. The bot must be an administrator in the chat for this to work " -"and must have the appropriate administrator rights. Returns :code:`True` " -"on success." -msgstr "" - -#: aiogram.types.chat.Chat.set_description:8 of -msgid "Source: https://core.telegram.org/bots/api#setchatdescription" -msgstr "" - -#: aiogram.types.chat.Chat.set_description:10 of -msgid "New chat description, 0-255 characters" -msgstr "" - -#: aiogram.types.chat.Chat.set_description:11 of -msgid "" -"instance of method " -":class:`aiogram.methods.set_chat_description.SetChatDescription`" -msgstr "" - -#: aiogram.types.chat.Chat.set_title:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.set_chat_title.SetChatTitle` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.set_title:6 of -msgid "" -"Use this method to change the title of a chat. Titles can't be changed " -"for private chats. The bot must be an administrator in the chat for this " -"to work and must have the appropriate administrator rights. Returns " -":code:`True` on success." -msgstr "" - -#: aiogram.types.chat.Chat.set_title:8 of -msgid "Source: https://core.telegram.org/bots/api#setchattitle" -msgstr "" - -#: aiogram.types.chat.Chat.set_title:10 of -msgid "New chat title, 1-128 characters" -msgstr "" - -#: aiogram.types.chat.Chat.set_title:11 of -msgid "instance of method :class:`aiogram.methods.set_chat_title.SetChatTitle`" -msgstr "" - -#: aiogram.types.chat.Chat.delete_photo:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.delete_chat_photo.DeleteChatPhoto` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.delete_photo:6 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.types.chat.Chat.delete_photo:8 of -msgid "Source: https://core.telegram.org/bots/api#deletechatphoto" -msgstr "" - -#: aiogram.types.chat.Chat.delete_photo:10 of -msgid "" -"instance of method " -":class:`aiogram.methods.delete_chat_photo.DeleteChatPhoto`" -msgstr "" - -#: aiogram.types.chat.Chat.set_photo:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.set_chat_photo.SetChatPhoto` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.set_photo:6 of -msgid "" -"Use this method to set a new profile photo for the chat. Photos can't be " -"changed for private chats. The bot must be an administrator in the chat " -"for this to work and must have the appropriate administrator rights. " -"Returns :code:`True` on success." -msgstr "" - -#: aiogram.types.chat.Chat.set_photo:8 of -msgid "Source: https://core.telegram.org/bots/api#setchatphoto" -msgstr "" - -#: aiogram.types.chat.Chat.set_photo:10 of -msgid "New chat photo, uploaded using multipart/form-data" -msgstr "" - -#: aiogram.types.chat.Chat.set_photo:11 of -msgid "instance of method :class:`aiogram.methods.set_chat_photo.SetChatPhoto`" -msgstr "" - -#: aiogram.types.chat.Chat.unpin_all_general_forum_topic_messages:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.unpin_all_general_forum_topic_messages.UnpinAllGeneralForumTopicMessages`" -" will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat.Chat.unpin_all_general_forum_topic_messages:6 of -msgid "" -"Use this method to clear the list of pinned messages in a General forum " -"topic. The bot must be an administrator in the chat for this to work and " -"must have the *can_pin_messages* administrator right in the supergroup. " -"Returns :code:`True` on success." -msgstr "" - -#: aiogram.types.chat.Chat.unpin_all_general_forum_topic_messages:8 of -msgid "" -"Source: " -"https://core.telegram.org/bots/api#unpinallgeneralforumtopicmessages" -msgstr "" - -#: aiogram.types.chat.Chat.unpin_all_general_forum_topic_messages:10 of -msgid "" -"instance of method " -":class:`aiogram.methods.unpin_all_general_forum_topic_messages.UnpinAllGeneralForumTopicMessages`" -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 "" - -#~ 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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/chat_administrator_rights.po b/docs/locale/en/LC_MESSAGES/api/types/chat_administrator_rights.po deleted file mode 100644 index fc696d31..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/chat_administrator_rights.po +++ /dev/null @@ -1,130 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/chat_administrator_rights.rst:3 -msgid "ChatAdministratorRights" -msgstr "" - -#: aiogram.types.chat_administrator_rights.ChatAdministratorRights:1 of -msgid "Represents the rights of an administrator in a chat." -msgstr "" - -#: aiogram.types.chat_administrator_rights.ChatAdministratorRights:3 of -msgid "Source: https://core.telegram.org/bots/api#chatadministratorrights" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_administrator_rights.ChatAdministratorRights.is_anonymous:1 -#: of -msgid ":code:`True`, if the user's presence in the chat is hidden" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_administrator_rights.ChatAdministratorRights.can_manage_chat:1 -#: of -msgid "" -":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.types.chat_administrator_rights.ChatAdministratorRights.can_delete_messages:1 -#: of -msgid ":code:`True`, if the administrator can delete messages of other users" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_administrator_rights.ChatAdministratorRights.can_manage_video_chats:1 -#: of -msgid ":code:`True`, if the administrator can manage video chats" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_administrator_rights.ChatAdministratorRights.can_restrict_members:1 -#: of -msgid ":code:`True`, if the administrator can restrict, ban or unban chat members" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_administrator_rights.ChatAdministratorRights.can_promote_members:1 -#: of -msgid "" -":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 the user)" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_administrator_rights.ChatAdministratorRights.can_change_info:1 -#: of -msgid "" -":code:`True`, if the user is allowed to change the chat title, photo and " -"other settings" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_administrator_rights.ChatAdministratorRights.can_invite_users:1 -#: of -msgid ":code:`True`, if the user is allowed to invite new users to the chat" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_administrator_rights.ChatAdministratorRights.can_post_messages:1 -#: of -msgid "" -"*Optional*. :code:`True`, if the administrator can post in the channel; " -"channels only" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_administrator_rights.ChatAdministratorRights.can_edit_messages:1 -#: of -msgid "" -"*Optional*. :code:`True`, if the administrator can edit messages of other" -" users and can pin messages; channels only" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_administrator_rights.ChatAdministratorRights.can_pin_messages:1 -#: of -msgid "" -"*Optional*. :code:`True`, if the user is allowed to pin messages; groups " -"and supergroups only" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_administrator_rights.ChatAdministratorRights.can_manage_topics:1 -#: of -msgid "" -"*Optional*. :code:`True`, if the user is allowed to create, rename, " -"close, and reopen forum topics; supergroups only" -msgstr "" - -#~ msgid "" -#~ ":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 " -#~ "the user)" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/chat_invite_link.po b/docs/locale/en/LC_MESSAGES/api/types/chat_invite_link.po deleted file mode 100644 index 15c1a9e0..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/chat_invite_link.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/chat_invite_link.rst:3 -msgid "ChatInviteLink" -msgstr "" - -#: aiogram.types.chat_invite_link.ChatInviteLink:1 of -msgid "Represents an invite link for a chat." -msgstr "" - -#: aiogram.types.chat_invite_link.ChatInviteLink:3 of -msgid "Source: https://core.telegram.org/bots/api#chatinvitelink" -msgstr "" - -#: ../../docstring aiogram.types.chat_invite_link.ChatInviteLink.invite_link:1 -#: of -msgid "" -"The invite link. If the link was created by another chat administrator, " -"then the second part of the link will be replaced with '…'." -msgstr "" - -#: ../../docstring aiogram.types.chat_invite_link.ChatInviteLink.creator:1 of -msgid "Creator of the link" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_invite_link.ChatInviteLink.creates_join_request:1 of -msgid "" -":code:`True`, if users joining the chat via the link need to be approved " -"by chat administrators" -msgstr "" - -#: ../../docstring aiogram.types.chat_invite_link.ChatInviteLink.is_primary:1 -#: of -msgid ":code:`True`, if the link is primary" -msgstr "" - -#: ../../docstring aiogram.types.chat_invite_link.ChatInviteLink.is_revoked:1 -#: of -msgid ":code:`True`, if the link is revoked" -msgstr "" - -#: ../../docstring aiogram.types.chat_invite_link.ChatInviteLink.name:1 of -msgid "*Optional*. Invite link name" -msgstr "" - -#: ../../docstring aiogram.types.chat_invite_link.ChatInviteLink.expire_date:1 -#: of -msgid "" -"*Optional*. Point in time (Unix timestamp) when the link will expire or " -"has been expired" -msgstr "" - -#: ../../docstring aiogram.types.chat_invite_link.ChatInviteLink.member_limit:1 -#: of -msgid "" -"*Optional*. 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.types.chat_invite_link.ChatInviteLink.pending_join_request_count:1 -#: of -msgid "*Optional*. Number of pending join requests created using this link" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/chat_join_request.po b/docs/locale/en/LC_MESSAGES/api/types/chat_join_request.po deleted file mode 100644 index c6884b77..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/chat_join_request.po +++ /dev/null @@ -1,1618 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/chat_join_request.rst:3 -msgid "ChatJoinRequest" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest:1 of -msgid "Represents a join request sent to a chat." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest:3 of -msgid "Source: https://core.telegram.org/bots/api#chatjoinrequest" -msgstr "" - -#: ../../docstring aiogram.types.chat_join_request.ChatJoinRequest.chat:1 of -msgid "Chat to which the request was sent" -msgstr "" - -#: ../../docstring aiogram.types.chat_join_request.ChatJoinRequest.from_user:1 -#: of -msgid "User that sent the join request" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_join_request.ChatJoinRequest.user_chat_id:1 of -msgid "" -"Identifier of a private chat with the user who sent the join request. " -"This number may have more than 32 significant bits and some programming " -"languages may have difficulty/silent defects in interpreting it. But it " -"has at most 52 significant bits, so a 64-bit integer or double-precision " -"float type are safe for storing this identifier. The bot can use this " -"identifier for 24 hours to send messages until the join request is " -"processed, assuming no other administrator contacted the user." -msgstr "" - -#: ../../docstring aiogram.types.chat_join_request.ChatJoinRequest.date:1 of -msgid "Date the request was sent in Unix time" -msgstr "" - -#: ../../docstring aiogram.types.chat_join_request.ChatJoinRequest.bio:1 of -msgid "*Optional*. Bio of the user." -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_join_request.ChatJoinRequest.invite_link:1 of -msgid "" -"*Optional*. Chat invite link that was used by the user to send the join " -"request" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.approve:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.approve_chat_join_request.ApproveChatJoinRequest`" -" will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact_pm:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice_pm:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game_pm:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group_pm:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_pm:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker_pm:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note_pm:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice_pm:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.approve:4 -#: aiogram.types.chat_join_request.ChatJoinRequest.decline:4 of -msgid ":code:`chat_id`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.approve:5 -#: aiogram.types.chat_join_request.ChatJoinRequest.decline:5 of -msgid ":code:`user_id`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.approve:7 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.types.chat_join_request.ChatJoinRequest.approve:9 of -msgid "Source: https://core.telegram.org/bots/api#approvechatjoinrequest" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.approve -#: aiogram.types.chat_join_request.ChatJoinRequest.decline of -msgid "Returns" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.approve:11 of -msgid "" -"instance of method " -":class:`aiogram.methods.approve_chat_join_request.ApproveChatJoinRequest`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.decline:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.decline_chat_join_request.DeclineChatJoinRequest`" -" will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.decline:7 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.types.chat_join_request.ChatJoinRequest.decline:9 of -msgid "Source: https://core.telegram.org/bots/api#declinechatjoinrequest" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.decline:11 of -msgid "" -"instance of method " -":class:`aiogram.methods.decline_chat_join_request.DeclineChatJoinRequest`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer:1 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_pm:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_message.SendMessage` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer:6 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_pm:6 of -msgid "" -"Use this method to send text messages. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer:8 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_pm:8 of -msgid "Source: https://core.telegram.org/bots/api#sendmessage" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice_pm of -msgid "Parameters" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer:10 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_pm:10 of -msgid "Text of the message to be sent, 1-4096 characters after entities parsing" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact_pm:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice:10 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice_pm:10 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game_pm:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group_pm:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_pm:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker_pm:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note_pm:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice_pm:11 of -msgid "" -"Unique identifier for the target message thread (topic) of the forum; for" -" forum supergroups only" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_pm:12 of -msgid "" -"Mode for parsing entities in the message text. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer:13 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_pm:13 of -msgid "" -"A JSON-serialized list of special entities that appear in message text, " -"which can be specified instead of *parse_mode*" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_pm:14 of -msgid "Disables link previews for links in this message" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation:20 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:20 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio:20 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm:20 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact_pm:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice_pm:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game_pm:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:32 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:32 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_pm:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:23 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:23 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker:13 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker_pm:13 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:21 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note_pm:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:21 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice_pm:16 of -msgid "" -"Sends the message `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation:21 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:21 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio:21 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm:21 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact_pm:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game:13 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game_pm:13 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:33 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:33 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_pm:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:24 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:24 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker_pm:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue:20 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm:20 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:22 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note_pm:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:22 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice_pm:17 of -msgid "Protects the contents of the sent message from forwarding and saving" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation:22 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:22 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio:22 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm:22 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact_pm:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice_pm:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game_pm:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:34 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:34 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_pm:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:25 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:25 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker_pm:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue:21 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm:21 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:23 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note_pm:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:23 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice_pm:18 of -msgid "If the message is a reply, ID of the original message" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation:23 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:23 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio:23 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm:23 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact_pm:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice_pm:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document:20 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm:20 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game_pm:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:35 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:35 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location:20 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm:20 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group_pm:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_pm:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:26 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:26 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker_pm:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue:22 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm:22 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:24 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note_pm:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:24 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice_pm:19 of -msgid "" -"Pass :code:`True` if the message should be sent even if the specified " -"replied-to message is not found" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation:24 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:24 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio:24 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm:24 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact_pm:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice_pm:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document:21 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm:21 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location:21 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm:21 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo:20 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm:20 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_pm:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:27 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:27 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker_pm:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue:23 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm:23 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:25 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note_pm:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:25 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice:20 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice_pm:20 of -msgid "" -"Additional interface options. A JSON-serialized object for an `inline " -"keyboard `_, " -"`custom reply keyboard " -"`_, instructions to " -"remove reply keyboard or to force a reply from the user." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer:20 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_pm:20 of -msgid "instance of method :class:`aiogram.methods.send_message.SendMessage`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation:1 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_animation.SendAnimation`" -" will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation:6 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:6 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.types.chat_join_request.ChatJoinRequest.answer_animation:8 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:8 of -msgid "Source: https://core.telegram.org/bots/api#sendanimation" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation:10 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:10 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 » `" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:12 of -msgid "Duration of sent animation in seconds" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation:13 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:13 of -msgid "Animation width" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:14 of -msgid "Animation height" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note_pm:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:15 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://' if the thumbnail was " -"uploaded using multipart/form-data under . :ref:`More " -"information on Sending Files » `" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:16 of -msgid "" -"Animation caption (may also be used when resending animation by " -"*file_id*), 0-1024 characters after entities parsing" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:17 of -msgid "" -"Mode for parsing entities in the animation caption. See `formatting " -"options `_ for " -"more details." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice_pm:14 of -msgid "" -"A JSON-serialized list of special entities that appear in the caption, " -"which can be specified instead of *parse_mode*" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:19 of -msgid "" -"Pass :code:`True` if the animation needs to be covered with a spoiler " -"animation" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation:25 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_animation_pm:25 of -msgid "instance of method :class:`aiogram.methods.send_animation.SendAnimation`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio:1 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_audio.SendAudio` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio:6 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm:6 of -msgid "" -"Use this method to send audio files, if you want Telegram clients to " -"display them in the music player. Your audio must be in the .MP3 or .M4A " -"format. On success, the sent :class:`aiogram.types.message.Message` is " -"returned. Bots can currently send audio files of up to 50 MB in size, " -"this limit may be changed in the future. For sending voice messages, use " -"the :class:`aiogram.methods.send_voice.SendVoice` method instead." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio:9 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm:9 of -msgid "Source: https://core.telegram.org/bots/api#sendaudio" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm:11 of -msgid "" -"Audio file to send. Pass a file_id as String to send an audio file that " -"exists on the Telegram servers (recommended), pass an HTTP URL as a " -"String for Telegram to get an audio file from the Internet, or upload a " -"new one using multipart/form-data. :ref:`More information on Sending " -"Files » `" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio:13 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm:13 of -msgid "Audio caption, 0-1024 characters after entities parsing" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm:14 of -msgid "" -"Mode for parsing entities in the audio caption. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm:16 of -msgid "Duration of the audio in seconds" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm:17 of -msgid "Performer" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm:18 of -msgid "Track name" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio:25 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_audio_pm:25 of -msgid "instance of method :class:`aiogram.methods.send_audio.SendAudio`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact:1 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact_pm:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_contact.SendContact` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact:6 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact_pm:6 of -msgid "" -"Use this method to send phone contacts. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact:8 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact_pm:8 of -msgid "Source: https://core.telegram.org/bots/api#sendcontact" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact:10 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact_pm:10 of -msgid "Contact's phone number" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact_pm:11 of -msgid "Contact's first name" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact:13 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact_pm:13 of -msgid "Contact's last name" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact_pm:14 of -msgid "" -"Additional data about the contact in the form of a `vCard " -"`_, 0-2048 bytes" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact:20 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_contact_pm:20 of -msgid "instance of method :class:`aiogram.methods.send_contact.SendContact`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document:1 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_document.SendDocument` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document:6 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm:6 of -msgid "" -"Use this method to send general files. On success, the sent " -":class:`aiogram.types.message.Message` is returned. Bots can currently " -"send files of any type of up to 50 MB in size, this limit may be changed " -"in the future." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document:8 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm:8 of -msgid "Source: https://core.telegram.org/bots/api#senddocument" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document:10 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm:10 of -msgid "" -"File to send. Pass a file_id as String to send a file that exists on the " -"Telegram servers (recommended), pass an HTTP URL as a String for Telegram" -" to get a file from the Internet, or upload a new one using multipart" -"/form-data. :ref:`More information on Sending Files » `" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document:13 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm:13 of -msgid "" -"Document caption (may also be used when resending documents by " -"*file_id*), 0-1024 characters after entities parsing" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm:14 of -msgid "" -"Mode for parsing entities in the document caption. See `formatting " -"options `_ for " -"more details." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm:16 of -msgid "" -"Disables automatic server-side content type detection for files uploaded " -"using multipart/form-data" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document:22 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_document_pm:22 of -msgid "instance of method :class:`aiogram.methods.send_document.SendDocument`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game:1 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game_pm:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_game.SendGame` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game:6 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game_pm:6 of -msgid "" -"Use this method to send a game. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game:8 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game_pm:8 of -msgid "Source: https://core.telegram.org/bots/api#sendgame" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game:10 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game_pm:10 of -msgid "" -"Short name of the game, serves as the unique identifier for the game. Set" -" up your games via `@BotFather `_." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game_pm:16 of -msgid "" -"A JSON-serialized object for an `inline keyboard " -"`_. If empty, " -"one 'Play game_title' button will be shown. If not empty, the first " -"button must launch the game." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_game_pm:17 of -msgid "instance of method :class:`aiogram.methods.send_game.SendGame`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:1 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_invoice.SendInvoice` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:6 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:6 of -msgid "" -"Use this method to send invoices. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:8 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:8 of -msgid "Source: https://core.telegram.org/bots/api#sendinvoice" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:10 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:10 of -msgid "Product name, 1-32 characters" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:11 of -msgid "Product description, 1-255 characters" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:12 of -msgid "" -"Bot-defined invoice payload, 1-128 bytes. This will not be displayed to " -"the user, use for your internal processes." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:13 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:13 of -msgid "" -"Payment provider token, obtained via `@BotFather " -"`_" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:14 of -msgid "" -"Three-letter ISO 4217 currency code, see `more on currencies " -"`_" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:15 of -msgid "" -"Price breakdown, a JSON-serialized list of components (e.g. product " -"price, tax, discount, delivery cost, delivery tax, bonus, etc.)" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:17 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 " -"`_, it shows the" -" number of digits past the decimal point for each currency (2 for the " -"majority of currencies). Defaults to 0" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:18 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 "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:19 of -msgid "" -"Unique deep-linking parameter. If left empty, **forwarded copies** of the" -" sent message will have a *Pay* button, allowing multiple users to pay " -"directly from the forwarded message, using the same invoice. If non-" -"empty, forwarded copies of the sent message will have a *URL* button with" -" a deep link to the bot (instead of a *Pay* button), with the value used " -"as the start parameter" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:20 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:20 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 "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:21 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:21 of -msgid "" -"URL of the product photo for the invoice. Can be a photo of the goods or " -"a marketing image for a service. People like it better when they see what" -" they are paying for." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:22 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:22 of -msgid "Photo size in bytes" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:23 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:23 of -msgid "Photo width" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:24 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:24 of -msgid "Photo height" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:25 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:25 of -msgid "" -"Pass :code:`True` if you require the user's full name to complete the " -"order" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:26 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:26 of -msgid "" -"Pass :code:`True` if you require the user's phone number to complete the " -"order" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:27 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:27 of -msgid "" -"Pass :code:`True` if you require the user's email address to complete the" -" order" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:28 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:28 of -msgid "" -"Pass :code:`True` if you require the user's shipping address to complete " -"the order" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:29 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:29 of -msgid "Pass :code:`True` if the user's phone number should be sent to provider" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:30 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:30 of -msgid "Pass :code:`True` if the user's email address should be sent to provider" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:31 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:31 of -msgid "Pass :code:`True` if the final price depends on the shipping method" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:36 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:36 of -msgid "" -"A JSON-serialized object for an `inline keyboard " -"`_. If empty, " -"one 'Pay :code:`total price`' button will be shown. If not empty, the " -"first button must be a Pay button." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice:37 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_invoice_pm:37 of -msgid "instance of method :class:`aiogram.methods.send_invoice.SendInvoice`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location:1 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_location.SendLocation` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location:6 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm:6 of -msgid "" -"Use this method to send point on the map. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location:8 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm:8 of -msgid "Source: https://core.telegram.org/bots/api#sendlocation" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location:10 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm:10 of -msgid "Latitude of the location" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm:11 of -msgid "Longitude of the location" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location:13 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm:13 of -msgid "The radius of uncertainty for the location, measured in meters; 0-1500" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm:14 of -msgid "" -"Period in seconds for which the location will be updated (see `Live " -"Locations `_, should be between" -" 60 and 86400." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm:15 of -msgid "" -"For live locations, a direction in which the user is moving, in degrees. " -"Must be between 1 and 360 if specified." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm:16 of -msgid "" -"For live locations, a maximum distance for proximity alerts about " -"approaching another chat member, in meters. Must be between 1 and 100000 " -"if specified." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location:22 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_location_pm:22 of -msgid "instance of method :class:`aiogram.methods.send_location.SendLocation`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group:1 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group_pm:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.send_media_group.SendMediaGroup` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group:6 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group_pm:6 of -msgid "" -"Use this method to send a group of photos, videos, documents or audios as" -" an album. Documents and audio files can be only grouped in an album with" -" messages of the same type. On success, an array of `Messages " -"`_ that were sent is " -"returned." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group:8 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group_pm:8 of -msgid "Source: https://core.telegram.org/bots/api#sendmediagroup" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group:10 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group_pm:10 of -msgid "" -"A JSON-serialized array describing messages to be sent, must include 2-10" -" items" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group_pm:12 of -msgid "" -"Sends messages `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group:13 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group_pm:13 of -msgid "Protects the contents of the sent messages from forwarding and saving" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group_pm:14 of -msgid "If the messages are a reply, ID of the original message" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_media_group_pm:16 of -msgid "" -"instance of method " -":class:`aiogram.methods.send_media_group.SendMediaGroup`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo:1 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_photo.SendPhoto` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo:6 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm:6 of -msgid "" -"Use this method to send photos. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo:8 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm:8 of -msgid "Source: https://core.telegram.org/bots/api#sendphoto" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo:10 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm:10 of -msgid "" -"Photo to send. Pass a file_id as String to send a photo that exists on " -"the Telegram servers (recommended), pass an HTTP URL as a String for " -"Telegram to get a photo from the Internet, or upload a new photo using " -"multipart/form-data. The photo must be at most 10 MB in size. The photo's" -" width and height must not exceed 10000 in total. Width and height ratio " -"must be at most 20. :ref:`More information on Sending Files » `" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm:12 of -msgid "" -"Photo caption (may also be used when resending photos by *file_id*), " -"0-1024 characters after entities parsing" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo:13 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm:13 of -msgid "" -"Mode for parsing entities in the photo caption. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm:15 of -msgid "" -"Pass :code:`True` if the photo needs to be covered with a spoiler " -"animation" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo:21 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm:21 of -msgid "instance of method :class:`aiogram.methods.send_photo.SendPhoto`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:1 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_poll.SendPoll` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:6 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:6 of -msgid "" -"Use this method to send a native poll. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:8 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:8 of -msgid "Source: https://core.telegram.org/bots/api#sendpoll" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:10 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:10 of -msgid "Poll question, 1-300 characters" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:11 of -msgid "" -"A JSON-serialized list of answer options, 2-10 strings 1-100 characters " -"each" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:13 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:13 of -msgid ":code:`True`, if the poll needs to be anonymous, defaults to :code:`True`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:14 of -msgid "Poll type, 'quiz' or 'regular', defaults to 'regular'" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:15 of -msgid "" -":code:`True`, if the poll allows multiple answers, ignored for polls in " -"quiz mode, defaults to :code:`False`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:16 of -msgid "" -"0-based identifier of the correct answer option, required for polls in " -"quiz mode" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:17 of -msgid "" -"Text that is shown when a user chooses an incorrect answer or taps on the" -" lamp icon in a quiz-style poll, 0-200 characters with at most 2 line " -"feeds after entities parsing" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:18 of -msgid "" -"Mode for parsing entities in the explanation. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:19 of -msgid "" -"A JSON-serialized list of special entities that appear in the poll " -"explanation, which can be specified instead of *parse_mode*" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:20 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:20 of -msgid "" -"Amount of time in seconds the poll will be active after creation, 5-600. " -"Can't be used together with *close_date*." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:21 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:21 of -msgid "" -"Point in time (Unix timestamp) when the poll will be automatically " -"closed. Must be at least 5 and no more than 600 seconds in the future. " -"Can't be used together with *open_period*." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:22 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:22 of -msgid "" -"Pass :code:`True` if the poll needs to be immediately closed. This can be" -" useful for poll preview." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll:28 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_poll_pm:28 of -msgid "instance of method :class:`aiogram.methods.send_poll.SendPoll`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice:1 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice_pm:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_dice.SendDice` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice:6 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice_pm:6 of -msgid "" -"Use this method to send an animated emoji that will display a random " -"value. On success, the sent :class:`aiogram.types.message.Message` is " -"returned." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice:8 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice_pm:8 of -msgid "Source: https://core.telegram.org/bots/api#senddice" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice_pm:11 of -msgid "" -"Emoji on which the dice throw animation is based. Currently, must be one " -"of '🎲', '🎯', '🏀', '⚽', '🎳', or '🎰'. Dice can have values 1-6 for '🎲', '🎯'" -" and '🎳', values 1-5 for '🏀' and '⚽', and values 1-64 for '🎰'. Defaults " -"to '🎲'" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice:13 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice_pm:13 of -msgid "Protects the contents of the sent message from forwarding" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_dice_pm:17 of -msgid "instance of method :class:`aiogram.methods.send_dice.SendDice`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker:1 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker_pm:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_sticker.SendSticker` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker:6 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker_pm:6 of -msgid "" -"Use this method to send static .WEBP, `animated " -"`_ .TGS, or `video " -"`_ .WEBM " -"stickers. On success, the sent :class:`aiogram.types.message.Message` is " -"returned." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker:8 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker_pm:8 of -msgid "Source: https://core.telegram.org/bots/api#sendsticker" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker:10 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker_pm:10 of -msgid "" -"Sticker to send. Pass a file_id as String to send a file that exists on " -"the Telegram servers (recommended), pass an HTTP URL as a String for " -"Telegram to get a .WEBP sticker from the Internet, or upload a new .WEBP " -"or .TGS sticker using multipart/form-data. :ref:`More information on " -"Sending Files » `. Video stickers can only be sent by a " -"file_id. Animated stickers can't be sent via an HTTP URL." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker_pm:12 of -msgid "Emoji associated with the sticker; only for just uploaded stickers" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_sticker_pm:18 of -msgid "instance of method :class:`aiogram.methods.send_sticker.SendSticker`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue:1 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_venue.SendVenue` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue:6 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm:6 of -msgid "" -"Use this method to send information about a venue. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue:8 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm:8 of -msgid "Source: https://core.telegram.org/bots/api#sendvenue" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue:10 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm:10 of -msgid "Latitude of the venue" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue:11 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm:11 of -msgid "Longitude of the venue" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm:12 of -msgid "Name of the venue" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue:13 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm:13 of -msgid "Address of the venue" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm:15 of -msgid "Foursquare identifier of the venue" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm:16 of -msgid "" -"Foursquare type of the venue, if known. (For example, " -"'arts_entertainment/default', 'arts_entertainment/aquarium' or " -"'food/icecream'.)" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm:17 of -msgid "Google Places identifier of the venue" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue:18 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm:18 of -msgid "" -"Google Places type of the venue. (See `supported types " -"`_.)" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue:24 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_venue_pm:24 of -msgid "instance of method :class:`aiogram.methods.send_venue.SendVenue`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:1 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_video.SendVideo` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:6 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:6 of -msgid "" -"Use this method to send video files, Telegram clients support MPEG4 " -"videos (other formats may be sent as " -":class:`aiogram.types.document.Document`). On success, the sent " -":class:`aiogram.types.message.Message` is returned. Bots can currently " -"send video files of up to 50 MB in size, this limit may be changed in the" -" future." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:8 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:8 of -msgid "Source: https://core.telegram.org/bots/api#sendvideo" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:10 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:10 of -msgid "" -"Video to send. Pass a file_id as String to send a video that exists on " -"the Telegram servers (recommended), pass an HTTP URL as a String for " -"Telegram to get a video from the Internet, or upload a new video using " -"multipart/form-data. :ref:`More information on Sending Files » `" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note_pm:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:12 of -msgid "Duration of sent video in seconds" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:13 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:13 of -msgid "Video width" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:14 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:14 of -msgid "Video height" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:16 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:16 of -msgid "" -"Video caption (may also be used when resending videos by *file_id*), " -"0-1024 characters after entities parsing" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:17 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:17 of -msgid "" -"Mode for parsing entities in the video caption. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:19 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:19 of -msgid "" -"Pass :code:`True` if the video needs to be covered with a spoiler " -"animation" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:20 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:20 of -msgid "Pass :code:`True` if the uploaded video is suitable for streaming" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video:26 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_pm:26 of -msgid "instance of method :class:`aiogram.methods.send_video.SendVideo`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note:1 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note_pm:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.send_video_note.SendVideoNote` will automatically" -" fill method attributes:" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note:6 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note_pm:6 of -msgid "" -"As of `v.4.0 `_, " -"Telegram clients support rounded square MPEG4 videos of up to 1 minute " -"long. Use this method to send video messages. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note:8 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note_pm:8 of -msgid "Source: https://core.telegram.org/bots/api#sendvideonote" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note:10 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note_pm:10 of -msgid "" -"Video note to send. Pass a file_id as String to send a video note that " -"exists on the Telegram servers (recommended) or upload a new video using " -"multipart/form-data. :ref:`More information on Sending Files » `. Sending video notes by a URL is currently unsupported" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note:13 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note_pm:13 of -msgid "Video width and height, i.e. diameter of the video message" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note:20 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_video_note_pm:20 of -msgid "instance of method :class:`aiogram.methods.send_video_note.SendVideoNote`" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice:1 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice_pm:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_voice.SendVoice` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice:6 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice_pm:6 of -msgid "" -"Use this method to send audio files, if you want Telegram clients to " -"display the file as a playable voice message. For this to work, your " -"audio must be in an .OGG file encoded with OPUS (other formats may be " -"sent as :class:`aiogram.types.audio.Audio` or " -":class:`aiogram.types.document.Document`). On success, the sent " -":class:`aiogram.types.message.Message` is returned. Bots can currently " -"send voice messages of up to 50 MB in size, this limit may be changed in " -"the future." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice:8 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice_pm:8 of -msgid "Source: https://core.telegram.org/bots/api#sendvoice" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice:10 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice_pm:10 of -msgid "" -"Audio file to send. Pass a file_id as String to send a file that exists " -"on the Telegram servers (recommended), pass an HTTP URL as a String for " -"Telegram to get a file from the Internet, or upload a new one using " -"multipart/form-data. :ref:`More information on Sending Files » `" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice:12 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice_pm:12 of -msgid "Voice message caption, 0-1024 characters after entities parsing" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice:13 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice_pm:13 of -msgid "" -"Mode for parsing entities in the voice message caption. See `formatting " -"options `_ for " -"more details." -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice:15 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice_pm:15 of -msgid "Duration of the voice message in seconds" -msgstr "" - -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice:21 -#: aiogram.types.chat_join_request.ChatJoinRequest.answer_voice_pm:21 of -msgid "instance of method :class:`aiogram.methods.send_voice.SendVoice`" -msgstr "" - -#~ msgid "Use this method to approve a chat join request." -#~ msgstr "" - -#~ msgid "Use this method to decline a chat join request." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/chat_location.po b/docs/locale/en/LC_MESSAGES/api/types/chat_location.po deleted file mode 100644 index ce065a0e..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/chat_location.po +++ /dev/null @@ -1,40 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/chat_location.rst:3 -msgid "ChatLocation" -msgstr "" - -#: aiogram.types.chat_location.ChatLocation:1 of -msgid "Represents a location to which a chat is connected." -msgstr "" - -#: aiogram.types.chat_location.ChatLocation:3 of -msgid "Source: https://core.telegram.org/bots/api#chatlocation" -msgstr "" - -#: ../../docstring aiogram.types.chat_location.ChatLocation.location:1 of -msgid "" -"The location to which the supergroup is connected. Can't be a live " -"location." -msgstr "" - -#: ../../docstring aiogram.types.chat_location.ChatLocation.address:1 of -msgid "Location address; 1-64 characters, as defined by the chat owner" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/chat_member.po b/docs/locale/en/LC_MESSAGES/api/types/chat_member.po deleted file mode 100644 index 49bf21a4..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/chat_member.po +++ /dev/null @@ -1,223 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/chat_member.rst:3 -msgid "ChatMember" -msgstr "" - -#: aiogram.types.chat_member.ChatMember:1 of -msgid "" -"This object contains information about one member of a chat. Currently, " -"the following 6 types of chat members are supported:" -msgstr "" - -#: aiogram.types.chat_member.ChatMember:3 of -msgid ":class:`aiogram.types.chat_member_owner.ChatMemberOwner`" -msgstr "" - -#: aiogram.types.chat_member.ChatMember:4 of -msgid ":class:`aiogram.types.chat_member_administrator.ChatMemberAdministrator`" -msgstr "" - -#: aiogram.types.chat_member.ChatMember:5 of -msgid ":class:`aiogram.types.chat_member_member.ChatMemberMember`" -msgstr "" - -#: aiogram.types.chat_member.ChatMember:6 of -msgid ":class:`aiogram.types.chat_member_restricted.ChatMemberRestricted`" -msgstr "" - -#: aiogram.types.chat_member.ChatMember:7 of -msgid ":class:`aiogram.types.chat_member_left.ChatMemberLeft`" -msgstr "" - -#: aiogram.types.chat_member.ChatMember:8 of -msgid ":class:`aiogram.types.chat_member_banned.ChatMemberBanned`" -msgstr "" - -#: aiogram.types.chat_member.ChatMember:10 of -msgid "Source: https://core.telegram.org/bots/api#chatmember" -msgstr "" - -#~ msgid "..." -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :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" -#~ " the user)" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the user is" -#~ " allowed to send text messages, " -#~ "contacts, locations and venues" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the user is" -#~ " allowed to send audios, documents, " -#~ "photos, videos, video notes and voice" -#~ " notes" -#~ msgstr "" - -#~ msgid "The member's status in the chat" -#~ msgstr "" - -#~ msgid "*Optional*. Information about the user" -#~ msgstr "" - -#~ msgid "*Optional*. :code:`True`, if the user's presence in the chat is hidden" -#~ msgstr "" - -#~ msgid "*Optional*. Custom title for this user" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the bot is" -#~ " allowed to edit administrator privileges" -#~ " of that user" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :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 "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the administrator" -#~ " can delete messages of other users" -#~ msgstr "" - -#~ msgid "*Optional*. :code:`True`, if the administrator can manage video chats" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the administrator" -#~ " can restrict, ban or unban chat " -#~ "members" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :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" -#~ " the user)" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the user is" -#~ " allowed to change the chat title," -#~ " photo and other settings" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the user is" -#~ " allowed to invite new users to " -#~ "the chat" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the administrator" -#~ " can post in the channel; channels" -#~ " only" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the administrator" -#~ " can edit messages of other users " -#~ "and can pin messages; channels only" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the user is" -#~ " allowed to pin messages; groups and" -#~ " supergroups only" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the user is" -#~ " allowed to create, rename, close, " -#~ "and reopen forum topics; supergroups " -#~ "only" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the user is" -#~ " a member of the chat at the" -#~ " moment of the request" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the user is" -#~ " allowed to send text messages, " -#~ "contacts, invoices, locations and venues" -#~ msgstr "" - -#~ msgid "*Optional*. :code:`True`, if the user is allowed to send audios" -#~ msgstr "" - -#~ msgid "*Optional*. :code:`True`, if the user is allowed to send documents" -#~ msgstr "" - -#~ msgid "*Optional*. :code:`True`, if the user is allowed to send photos" -#~ msgstr "" - -#~ msgid "*Optional*. :code:`True`, if the user is allowed to send videos" -#~ msgstr "" - -#~ msgid "*Optional*. :code:`True`, if the user is allowed to send video notes" -#~ msgstr "" - -#~ msgid "*Optional*. :code:`True`, if the user is allowed to send voice notes" -#~ msgstr "" - -#~ msgid "*Optional*. :code:`True`, if the user is allowed to send polls" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the user is" -#~ " allowed to send animations, games, " -#~ "stickers and use inline bots" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the user is" -#~ " allowed to add web page previews " -#~ "to their messages" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. Date when restrictions will " -#~ "be lifted for this user; unix " -#~ "time. If 0, then the user is " -#~ "restricted forever" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/chat_member_administrator.po b/docs/locale/en/LC_MESSAGES/api/types/chat_member_administrator.po deleted file mode 100644 index 9b51540f..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/chat_member_administrator.po +++ /dev/null @@ -1,157 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/chat_member_administrator.rst:3 -msgid "ChatMemberAdministrator" -msgstr "" - -#: aiogram.types.chat_member_administrator.ChatMemberAdministrator:1 of -msgid "" -"Represents a `chat member " -"`_ that has some " -"additional privileges." -msgstr "" - -#: aiogram.types.chat_member_administrator.ChatMemberAdministrator:3 of -msgid "Source: https://core.telegram.org/bots/api#chatmemberadministrator" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_administrator.ChatMemberAdministrator.status:1 of -msgid "The member's status in the chat, always 'administrator'" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_administrator.ChatMemberAdministrator.user:1 of -msgid "Information about the user" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_administrator.ChatMemberAdministrator.can_be_edited:1 -#: of -msgid "" -":code:`True`, if the bot is allowed to edit administrator privileges of " -"that user" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_administrator.ChatMemberAdministrator.is_anonymous:1 -#: of -msgid ":code:`True`, if the user's presence in the chat is hidden" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_administrator.ChatMemberAdministrator.can_manage_chat:1 -#: of -msgid "" -":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.types.chat_member_administrator.ChatMemberAdministrator.can_delete_messages:1 -#: of -msgid ":code:`True`, if the administrator can delete messages of other users" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_administrator.ChatMemberAdministrator.can_manage_video_chats:1 -#: of -msgid ":code:`True`, if the administrator can manage video chats" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_administrator.ChatMemberAdministrator.can_restrict_members:1 -#: of -msgid ":code:`True`, if the administrator can restrict, ban or unban chat members" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_administrator.ChatMemberAdministrator.can_promote_members:1 -#: of -msgid "" -":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 the user)" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_administrator.ChatMemberAdministrator.can_change_info:1 -#: of -msgid "" -":code:`True`, if the user is allowed to change the chat title, photo and " -"other settings" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_administrator.ChatMemberAdministrator.can_invite_users:1 -#: of -msgid ":code:`True`, if the user is allowed to invite new users to the chat" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_administrator.ChatMemberAdministrator.can_post_messages:1 -#: of -msgid "" -"*Optional*. :code:`True`, if the administrator can post in the channel; " -"channels only" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_administrator.ChatMemberAdministrator.can_edit_messages:1 -#: of -msgid "" -"*Optional*. :code:`True`, if the administrator can edit messages of other" -" users and can pin messages; channels only" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_administrator.ChatMemberAdministrator.can_pin_messages:1 -#: of -msgid "" -"*Optional*. :code:`True`, if the user is allowed to pin messages; groups " -"and supergroups only" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_administrator.ChatMemberAdministrator.can_manage_topics:1 -#: of -msgid "" -"*Optional*. :code:`True`, if the user is allowed to create, rename, " -"close, and reopen forum topics; supergroups only" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_administrator.ChatMemberAdministrator.custom_title:1 -#: of -msgid "*Optional*. Custom title for this user" -msgstr "" - -#~ msgid "" -#~ ":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 " -#~ "the user)" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/chat_member_banned.po b/docs/locale/en/LC_MESSAGES/api/types/chat_member_banned.po deleted file mode 100644 index 5b7267fb..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/chat_member_banned.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/chat_member_banned.rst:3 -msgid "ChatMemberBanned" -msgstr "" - -#: aiogram.types.chat_member_banned.ChatMemberBanned:1 of -msgid "" -"Represents a `chat member " -"`_ that was banned in the " -"chat and can't return to the chat or view chat messages." -msgstr "" - -#: aiogram.types.chat_member_banned.ChatMemberBanned:3 of -msgid "Source: https://core.telegram.org/bots/api#chatmemberbanned" -msgstr "" - -#: ../../docstring aiogram.types.chat_member_banned.ChatMemberBanned.status:1 -#: of -msgid "The member's status in the chat, always 'kicked'" -msgstr "" - -#: ../../docstring aiogram.types.chat_member_banned.ChatMemberBanned.user:1 of -msgid "Information about the user" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_banned.ChatMemberBanned.until_date:1 of -msgid "" -"Date when restrictions will be lifted for this user; unix time. If 0, " -"then the user is banned forever" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/chat_member_left.po b/docs/locale/en/LC_MESSAGES/api/types/chat_member_left.po deleted file mode 100644 index cae2e7b8..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/chat_member_left.po +++ /dev/null @@ -1,41 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/chat_member_left.rst:3 -msgid "ChatMemberLeft" -msgstr "" - -#: aiogram.types.chat_member_left.ChatMemberLeft:1 of -msgid "" -"Represents a `chat member " -"`_ that isn't currently a " -"member of the chat, but may join it themselves." -msgstr "" - -#: aiogram.types.chat_member_left.ChatMemberLeft:3 of -msgid "Source: https://core.telegram.org/bots/api#chatmemberleft" -msgstr "" - -#: ../../docstring aiogram.types.chat_member_left.ChatMemberLeft.status:1 of -msgid "The member's status in the chat, always 'left'" -msgstr "" - -#: ../../docstring aiogram.types.chat_member_left.ChatMemberLeft.user:1 of -msgid "Information about the user" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/chat_member_member.po b/docs/locale/en/LC_MESSAGES/api/types/chat_member_member.po deleted file mode 100644 index 8bc63e6e..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/chat_member_member.po +++ /dev/null @@ -1,42 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/chat_member_member.rst:3 -msgid "ChatMemberMember" -msgstr "" - -#: aiogram.types.chat_member_member.ChatMemberMember:1 of -msgid "" -"Represents a `chat member " -"`_ that has no additional " -"privileges or restrictions." -msgstr "" - -#: aiogram.types.chat_member_member.ChatMemberMember:3 of -msgid "Source: https://core.telegram.org/bots/api#chatmembermember" -msgstr "" - -#: ../../docstring aiogram.types.chat_member_member.ChatMemberMember.status:1 -#: of -msgid "The member's status in the chat, always 'member'" -msgstr "" - -#: ../../docstring aiogram.types.chat_member_member.ChatMemberMember.user:1 of -msgid "Information about the user" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/chat_member_owner.po b/docs/locale/en/LC_MESSAGES/api/types/chat_member_owner.po deleted file mode 100644 index 25470e8c..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/chat_member_owner.po +++ /dev/null @@ -1,51 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/chat_member_owner.rst:3 -msgid "ChatMemberOwner" -msgstr "" - -#: aiogram.types.chat_member_owner.ChatMemberOwner:1 of -msgid "" -"Represents a `chat member " -"`_ that owns the chat and " -"has all administrator privileges." -msgstr "" - -#: aiogram.types.chat_member_owner.ChatMemberOwner:3 of -msgid "Source: https://core.telegram.org/bots/api#chatmemberowner" -msgstr "" - -#: ../../docstring aiogram.types.chat_member_owner.ChatMemberOwner.status:1 of -msgid "The member's status in the chat, always 'creator'" -msgstr "" - -#: ../../docstring aiogram.types.chat_member_owner.ChatMemberOwner.user:1 of -msgid "Information about the user" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_owner.ChatMemberOwner.is_anonymous:1 of -msgid ":code:`True`, if the user's presence in the chat is hidden" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_owner.ChatMemberOwner.custom_title:1 of -msgid "*Optional*. Custom title for this user" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/chat_member_restricted.po b/docs/locale/en/LC_MESSAGES/api/types/chat_member_restricted.po deleted file mode 100644 index a0f2f184..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/chat_member_restricted.po +++ /dev/null @@ -1,161 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/chat_member_restricted.rst:3 -msgid "ChatMemberRestricted" -msgstr "" - -#: aiogram.types.chat_member_restricted.ChatMemberRestricted:1 of -msgid "" -"Represents a `chat member " -"`_ that is under certain " -"restrictions in the chat. Supergroups only." -msgstr "" - -#: aiogram.types.chat_member_restricted.ChatMemberRestricted:3 of -msgid "Source: https://core.telegram.org/bots/api#chatmemberrestricted" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_restricted.ChatMemberRestricted.status:1 of -msgid "The member's status in the chat, always 'restricted'" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_restricted.ChatMemberRestricted.user:1 of -msgid "Information about the user" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_restricted.ChatMemberRestricted.is_member:1 of -msgid "" -":code:`True`, if the user is a member of the chat at the moment of the " -"request" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_restricted.ChatMemberRestricted.can_send_messages:1 -#: of -msgid "" -":code:`True`, if the user is allowed to send text messages, contacts, " -"invoices, locations and venues" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_restricted.ChatMemberRestricted.can_send_audios:1 -#: of -msgid ":code:`True`, if the user is allowed to send audios" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_restricted.ChatMemberRestricted.can_send_documents:1 -#: of -msgid ":code:`True`, if the user is allowed to send documents" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_restricted.ChatMemberRestricted.can_send_photos:1 -#: of -msgid ":code:`True`, if the user is allowed to send photos" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_restricted.ChatMemberRestricted.can_send_videos:1 -#: of -msgid ":code:`True`, if the user is allowed to send videos" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_restricted.ChatMemberRestricted.can_send_video_notes:1 -#: of -msgid ":code:`True`, if the user is allowed to send video notes" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_restricted.ChatMemberRestricted.can_send_voice_notes:1 -#: of -msgid ":code:`True`, if the user is allowed to send voice notes" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_restricted.ChatMemberRestricted.can_send_polls:1 -#: of -msgid ":code:`True`, if the user is allowed to send polls" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_restricted.ChatMemberRestricted.can_send_other_messages:1 -#: of -msgid "" -":code:`True`, if the user is allowed to send animations, games, stickers " -"and use inline bots" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_restricted.ChatMemberRestricted.can_add_web_page_previews:1 -#: of -msgid "" -":code:`True`, if the user is allowed to add web page previews to their " -"messages" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_restricted.ChatMemberRestricted.can_change_info:1 -#: of -msgid "" -":code:`True`, if the user is allowed to change the chat title, photo and " -"other settings" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_restricted.ChatMemberRestricted.can_invite_users:1 -#: of -msgid ":code:`True`, if the user is allowed to invite new users to the chat" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_restricted.ChatMemberRestricted.can_pin_messages:1 -#: of -msgid ":code:`True`, if the user is allowed to pin messages" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_restricted.ChatMemberRestricted.can_manage_topics:1 -#: of -msgid ":code:`True`, if the user is allowed to create forum topics" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_restricted.ChatMemberRestricted.until_date:1 of -msgid "" -"Date when restrictions will be lifted for this user; unix time. If 0, " -"then the user is restricted forever" -msgstr "" - -#~ msgid "" -#~ ":code:`True`, if the user is allowed " -#~ "to send text messages, contacts, " -#~ "locations and venues" -#~ msgstr "" - -#~ msgid "" -#~ ":code:`True`, if the user is allowed " -#~ "to send audios, documents, photos, " -#~ "videos, video notes and voice notes" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/chat_member_updated.po b/docs/locale/en/LC_MESSAGES/api/types/chat_member_updated.po deleted file mode 100644 index dec952fe..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/chat_member_updated.po +++ /dev/null @@ -1,1232 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/chat_member_updated.rst:3 -msgid "ChatMemberUpdated" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated:1 of -msgid "This object represents changes in the status of a chat member." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated:3 of -msgid "Source: https://core.telegram.org/bots/api#chatmemberupdated" -msgstr "" - -#: ../../docstring aiogram.types.chat_member_updated.ChatMemberUpdated.chat:1 -#: of -msgid "Chat the user belongs to" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_updated.ChatMemberUpdated.from_user:1 of -msgid "Performer of the action, which resulted in the change" -msgstr "" - -#: ../../docstring aiogram.types.chat_member_updated.ChatMemberUpdated.date:1 -#: of -msgid "Date the change was done in Unix time" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_updated.ChatMemberUpdated.old_chat_member:1 of -msgid "Previous information about the chat member" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_updated.ChatMemberUpdated.new_chat_member:1 of -msgid "New information about the chat member" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_updated.ChatMemberUpdated.invite_link:1 of -msgid "" -"*Optional*. Chat invite link, which was used by the user to join the " -"chat; for joining by invite link events only." -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_member_updated.ChatMemberUpdated.via_chat_folder_invite_link:1 -#: of -msgid "" -"*Optional*. True, if the user joined the chat via a chat folder invite " -"link" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_message.SendMessage` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer:4 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation:4 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio:4 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_contact:4 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_dice:4 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document:4 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_game:4 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:4 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location:4 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_media_group:4 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_photo:4 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:4 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_sticker:4 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue:4 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:4 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video_note:4 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_voice:4 of -msgid ":code:`chat_id`" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer:6 of -msgid "" -"Use this method to send text messages. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer:8 of -msgid "Source: https://core.telegram.org/bots/api#sendmessage" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_contact -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_dice -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_game -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_media_group -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_photo -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_sticker -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video_note -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_voice of -msgid "Parameters" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer:10 of -msgid "Text of the message to be sent, 1-4096 characters after entities parsing" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer:11 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation:11 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio:12 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_contact:12 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_dice:10 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document:11 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_game:11 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:16 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location:12 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_media_group:11 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_photo:11 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:12 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_sticker:11 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue:14 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:11 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video_note:11 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_voice:11 of -msgid "" -"Unique identifier for the target message thread (topic) of the forum; for" -" forum supergroups only" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer:12 of -msgid "" -"Mode for parsing entities in the message text. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer:13 of -msgid "" -"A JSON-serialized list of special entities that appear in message text, " -"which can be specified instead of *parse_mode*" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer:14 of -msgid "Disables link previews for links in this message" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer:15 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation:20 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio:20 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_contact:15 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_dice:12 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document:17 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_game:12 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:32 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location:17 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_photo:16 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:23 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_sticker:13 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue:19 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:21 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video_note:15 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_voice:16 of -msgid "" -"Sends the message `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer:16 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation:21 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio:21 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_contact:16 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document:18 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_game:13 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:33 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location:18 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_photo:17 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:24 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_sticker:14 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue:20 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:22 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video_note:16 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_voice:17 of -msgid "Protects the contents of the sent message from forwarding and saving" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer:17 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation:22 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio:22 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_contact:17 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_dice:14 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document:19 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_game:14 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:34 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location:19 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_photo:18 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:25 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_sticker:15 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue:21 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:23 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video_note:17 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_voice:18 of -msgid "If the message is a reply, ID of the original message" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer:18 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation:23 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio:23 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_contact:18 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_dice:15 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document:20 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_game:15 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:35 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location:20 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_media_group:15 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_photo:19 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:26 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_sticker:16 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue:22 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:24 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video_note:18 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_voice:19 of -msgid "" -"Pass :code:`True` if the message should be sent even if the specified " -"replied-to message is not found" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer:19 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation:24 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio:24 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_contact:19 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_dice:16 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document:21 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location:21 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_photo:20 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:27 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_sticker:17 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue:23 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:25 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video_note:19 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_voice:20 of -msgid "" -"Additional interface options. A JSON-serialized object for an `inline " -"keyboard `_, " -"`custom reply keyboard " -"`_, instructions to " -"remove reply keyboard or to force a reply from the user." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_contact -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_dice -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_game -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_media_group -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_photo -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_sticker -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video_note -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_voice of -msgid "Returns" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer:20 of -msgid "instance of method :class:`aiogram.methods.send_message.SendMessage`" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_animation.SendAnimation`" -" will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation:6 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.types.chat_member_updated.ChatMemberUpdated.answer_animation:8 of -msgid "Source: https://core.telegram.org/bots/api#sendanimation" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation:10 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 » `" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation:12 of -msgid "Duration of sent animation in seconds" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation:13 of -msgid "Animation width" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation:14 of -msgid "Animation height" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation:15 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio:19 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document:12 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:15 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video_note:14 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://' if the thumbnail was " -"uploaded using multipart/form-data under . :ref:`More " -"information on Sending Files » `" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation:16 of -msgid "" -"Animation caption (may also be used when resending animation by " -"*file_id*), 0-1024 characters after entities parsing" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation:17 of -msgid "" -"Mode for parsing entities in the animation caption. See `formatting " -"options `_ for " -"more details." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation:18 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio:15 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document:15 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_photo:14 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:18 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_voice:14 of -msgid "" -"A JSON-serialized list of special entities that appear in the caption, " -"which can be specified instead of *parse_mode*" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation:19 of -msgid "" -"Pass :code:`True` if the animation needs to be covered with a spoiler " -"animation" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_animation:25 of -msgid "instance of method :class:`aiogram.methods.send_animation.SendAnimation`" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_audio.SendAudio` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio:6 of -msgid "" -"Use this method to send audio files, if you want Telegram clients to " -"display them in the music player. Your audio must be in the .MP3 or .M4A " -"format. On success, the sent :class:`aiogram.types.message.Message` is " -"returned. Bots can currently send audio files of up to 50 MB in size, " -"this limit may be changed in the future. For sending voice messages, use " -"the :class:`aiogram.methods.send_voice.SendVoice` method instead." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio:9 of -msgid "Source: https://core.telegram.org/bots/api#sendaudio" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio:11 of -msgid "" -"Audio file to send. Pass a file_id as String to send an audio file that " -"exists on the Telegram servers (recommended), pass an HTTP URL as a " -"String for Telegram to get an audio file from the Internet, or upload a " -"new one using multipart/form-data. :ref:`More information on Sending " -"Files » `" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio:13 of -msgid "Audio caption, 0-1024 characters after entities parsing" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio:14 of -msgid "" -"Mode for parsing entities in the audio caption. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio:16 of -msgid "Duration of the audio in seconds" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio:17 of -msgid "Performer" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio:18 of -msgid "Track name" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_audio:25 of -msgid "instance of method :class:`aiogram.methods.send_audio.SendAudio`" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_contact:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_contact.SendContact` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_contact:6 of -msgid "" -"Use this method to send phone contacts. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_contact:8 of -msgid "Source: https://core.telegram.org/bots/api#sendcontact" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_contact:10 of -msgid "Contact's phone number" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_contact:11 of -msgid "Contact's first name" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_contact:13 of -msgid "Contact's last name" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_contact:14 of -msgid "" -"Additional data about the contact in the form of a `vCard " -"`_, 0-2048 bytes" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_contact:20 of -msgid "instance of method :class:`aiogram.methods.send_contact.SendContact`" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_document.SendDocument` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document:6 of -msgid "" -"Use this method to send general files. On success, the sent " -":class:`aiogram.types.message.Message` is returned. Bots can currently " -"send files of any type of up to 50 MB in size, this limit may be changed " -"in the future." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document:8 of -msgid "Source: https://core.telegram.org/bots/api#senddocument" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document:10 of -msgid "" -"File to send. Pass a file_id as String to send a file that exists on the " -"Telegram servers (recommended), pass an HTTP URL as a String for Telegram" -" to get a file from the Internet, or upload a new one using multipart" -"/form-data. :ref:`More information on Sending Files » `" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document:13 of -msgid "" -"Document caption (may also be used when resending documents by " -"*file_id*), 0-1024 characters after entities parsing" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document:14 of -msgid "" -"Mode for parsing entities in the document caption. See `formatting " -"options `_ for " -"more details." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document:16 of -msgid "" -"Disables automatic server-side content type detection for files uploaded " -"using multipart/form-data" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_document:22 of -msgid "instance of method :class:`aiogram.methods.send_document.SendDocument`" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_game:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_game.SendGame` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_game:6 of -msgid "" -"Use this method to send a game. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_game:8 of -msgid "Source: https://core.telegram.org/bots/api#sendgame" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_game:10 of -msgid "" -"Short name of the game, serves as the unique identifier for the game. Set" -" up your games via `@BotFather `_." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_game:16 of -msgid "" -"A JSON-serialized object for an `inline keyboard " -"`_. If empty, " -"one 'Play game_title' button will be shown. If not empty, the first " -"button must launch the game." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_game:17 of -msgid "instance of method :class:`aiogram.methods.send_game.SendGame`" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_invoice.SendInvoice` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:6 of -msgid "" -"Use this method to send invoices. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:8 of -msgid "Source: https://core.telegram.org/bots/api#sendinvoice" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:10 of -msgid "Product name, 1-32 characters" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:11 of -msgid "Product description, 1-255 characters" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:12 of -msgid "" -"Bot-defined invoice payload, 1-128 bytes. This will not be displayed to " -"the user, use for your internal processes." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:13 of -msgid "" -"Payment provider token, obtained via `@BotFather " -"`_" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:14 of -msgid "" -"Three-letter ISO 4217 currency code, see `more on currencies " -"`_" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:15 of -msgid "" -"Price breakdown, a JSON-serialized list of components (e.g. product " -"price, tax, discount, delivery cost, delivery tax, bonus, etc.)" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:17 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 " -"`_, it shows the" -" number of digits past the decimal point for each currency (2 for the " -"majority of currencies). Defaults to 0" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:18 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 "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:19 of -msgid "" -"Unique deep-linking parameter. If left empty, **forwarded copies** of the" -" sent message will have a *Pay* button, allowing multiple users to pay " -"directly from the forwarded message, using the same invoice. If non-" -"empty, forwarded copies of the sent message will have a *URL* button with" -" a deep link to the bot (instead of a *Pay* button), with the value used " -"as the start parameter" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:20 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 "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:21 of -msgid "" -"URL of the product photo for the invoice. Can be a photo of the goods or " -"a marketing image for a service. People like it better when they see what" -" they are paying for." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:22 of -msgid "Photo size in bytes" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:23 of -msgid "Photo width" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:24 of -msgid "Photo height" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:25 of -msgid "" -"Pass :code:`True` if you require the user's full name to complete the " -"order" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:26 of -msgid "" -"Pass :code:`True` if you require the user's phone number to complete the " -"order" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:27 of -msgid "" -"Pass :code:`True` if you require the user's email address to complete the" -" order" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:28 of -msgid "" -"Pass :code:`True` if you require the user's shipping address to complete " -"the order" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:29 of -msgid "Pass :code:`True` if the user's phone number should be sent to provider" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:30 of -msgid "Pass :code:`True` if the user's email address should be sent to provider" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:31 of -msgid "Pass :code:`True` if the final price depends on the shipping method" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:36 of -msgid "" -"A JSON-serialized object for an `inline keyboard " -"`_. If empty, " -"one 'Pay :code:`total price`' button will be shown. If not empty, the " -"first button must be a Pay button." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_invoice:37 of -msgid "instance of method :class:`aiogram.methods.send_invoice.SendInvoice`" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_location.SendLocation` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location:6 of -msgid "" -"Use this method to send point on the map. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location:8 of -msgid "Source: https://core.telegram.org/bots/api#sendlocation" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location:10 of -msgid "Latitude of the location" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location:11 of -msgid "Longitude of the location" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location:13 of -msgid "The radius of uncertainty for the location, measured in meters; 0-1500" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location:14 of -msgid "" -"Period in seconds for which the location will be updated (see `Live " -"Locations `_, should be between" -" 60 and 86400." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location:15 of -msgid "" -"For live locations, a direction in which the user is moving, in degrees. " -"Must be between 1 and 360 if specified." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location:16 of -msgid "" -"For live locations, a maximum distance for proximity alerts about " -"approaching another chat member, in meters. Must be between 1 and 100000 " -"if specified." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_location:22 of -msgid "instance of method :class:`aiogram.methods.send_location.SendLocation`" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_media_group:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.send_media_group.SendMediaGroup` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_media_group:6 of -msgid "" -"Use this method to send a group of photos, videos, documents or audios as" -" an album. Documents and audio files can be only grouped in an album with" -" messages of the same type. On success, an array of `Messages " -"`_ that were sent is " -"returned." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_media_group:8 of -msgid "Source: https://core.telegram.org/bots/api#sendmediagroup" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_media_group:10 of -msgid "" -"A JSON-serialized array describing messages to be sent, must include 2-10" -" items" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_media_group:12 of -msgid "" -"Sends messages `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_media_group:13 of -msgid "Protects the contents of the sent messages from forwarding and saving" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_media_group:14 of -msgid "If the messages are a reply, ID of the original message" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_media_group:16 of -msgid "" -"instance of method " -":class:`aiogram.methods.send_media_group.SendMediaGroup`" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_photo:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_photo.SendPhoto` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_photo:6 of -msgid "" -"Use this method to send photos. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_photo:8 of -msgid "Source: https://core.telegram.org/bots/api#sendphoto" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_photo:10 of -msgid "" -"Photo to send. Pass a file_id as String to send a photo that exists on " -"the Telegram servers (recommended), pass an HTTP URL as a String for " -"Telegram to get a photo from the Internet, or upload a new photo using " -"multipart/form-data. The photo must be at most 10 MB in size. The photo's" -" width and height must not exceed 10000 in total. Width and height ratio " -"must be at most 20. :ref:`More information on Sending Files » `" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_photo:12 of -msgid "" -"Photo caption (may also be used when resending photos by *file_id*), " -"0-1024 characters after entities parsing" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_photo:13 of -msgid "" -"Mode for parsing entities in the photo caption. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_photo:15 of -msgid "" -"Pass :code:`True` if the photo needs to be covered with a spoiler " -"animation" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_photo:21 of -msgid "instance of method :class:`aiogram.methods.send_photo.SendPhoto`" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_poll.SendPoll` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:6 of -msgid "" -"Use this method to send a native poll. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:8 of -msgid "Source: https://core.telegram.org/bots/api#sendpoll" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:10 of -msgid "Poll question, 1-300 characters" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:11 of -msgid "" -"A JSON-serialized list of answer options, 2-10 strings 1-100 characters " -"each" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:13 of -msgid ":code:`True`, if the poll needs to be anonymous, defaults to :code:`True`" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:14 of -msgid "Poll type, 'quiz' or 'regular', defaults to 'regular'" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:15 of -msgid "" -":code:`True`, if the poll allows multiple answers, ignored for polls in " -"quiz mode, defaults to :code:`False`" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:16 of -msgid "" -"0-based identifier of the correct answer option, required for polls in " -"quiz mode" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:17 of -msgid "" -"Text that is shown when a user chooses an incorrect answer or taps on the" -" lamp icon in a quiz-style poll, 0-200 characters with at most 2 line " -"feeds after entities parsing" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:18 of -msgid "" -"Mode for parsing entities in the explanation. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:19 of -msgid "" -"A JSON-serialized list of special entities that appear in the poll " -"explanation, which can be specified instead of *parse_mode*" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:20 of -msgid "" -"Amount of time in seconds the poll will be active after creation, 5-600. " -"Can't be used together with *close_date*." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:21 of -msgid "" -"Point in time (Unix timestamp) when the poll will be automatically " -"closed. Must be at least 5 and no more than 600 seconds in the future. " -"Can't be used together with *open_period*." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:22 of -msgid "" -"Pass :code:`True` if the poll needs to be immediately closed. This can be" -" useful for poll preview." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_poll:28 of -msgid "instance of method :class:`aiogram.methods.send_poll.SendPoll`" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_dice:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_dice.SendDice` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_dice:6 of -msgid "" -"Use this method to send an animated emoji that will display a random " -"value. On success, the sent :class:`aiogram.types.message.Message` is " -"returned." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_dice:8 of -msgid "Source: https://core.telegram.org/bots/api#senddice" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_dice:11 of -msgid "" -"Emoji on which the dice throw animation is based. Currently, must be one " -"of '🎲', '🎯', '🏀', '⚽', '🎳', or '🎰'. Dice can have values 1-6 for '🎲', '🎯'" -" and '🎳', values 1-5 for '🏀' and '⚽', and values 1-64 for '🎰'. Defaults " -"to '🎲'" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_dice:13 of -msgid "Protects the contents of the sent message from forwarding" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_dice:17 of -msgid "instance of method :class:`aiogram.methods.send_dice.SendDice`" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_sticker:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_sticker.SendSticker` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_sticker:6 of -msgid "" -"Use this method to send static .WEBP, `animated " -"`_ .TGS, or `video " -"`_ .WEBM " -"stickers. On success, the sent :class:`aiogram.types.message.Message` is " -"returned." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_sticker:8 of -msgid "Source: https://core.telegram.org/bots/api#sendsticker" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_sticker:10 of -msgid "" -"Sticker to send. Pass a file_id as String to send a file that exists on " -"the Telegram servers (recommended), pass an HTTP URL as a String for " -"Telegram to get a .WEBP sticker from the Internet, or upload a new .WEBP " -"or .TGS sticker using multipart/form-data. :ref:`More information on " -"Sending Files » `. Video stickers can only be sent by a " -"file_id. Animated stickers can't be sent via an HTTP URL." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_sticker:12 of -msgid "Emoji associated with the sticker; only for just uploaded stickers" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_sticker:18 of -msgid "instance of method :class:`aiogram.methods.send_sticker.SendSticker`" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_venue.SendVenue` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue:6 of -msgid "" -"Use this method to send information about a venue. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue:8 of -msgid "Source: https://core.telegram.org/bots/api#sendvenue" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue:10 of -msgid "Latitude of the venue" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue:11 of -msgid "Longitude of the venue" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue:12 of -msgid "Name of the venue" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue:13 of -msgid "Address of the venue" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue:15 of -msgid "Foursquare identifier of the venue" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue:16 of -msgid "" -"Foursquare type of the venue, if known. (For example, " -"'arts_entertainment/default', 'arts_entertainment/aquarium' or " -"'food/icecream'.)" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue:17 of -msgid "Google Places identifier of the venue" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue:18 of -msgid "" -"Google Places type of the venue. (See `supported types " -"`_.)" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_venue:24 of -msgid "instance of method :class:`aiogram.methods.send_venue.SendVenue`" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_video.SendVideo` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:6 of -msgid "" -"Use this method to send video files, Telegram clients support MPEG4 " -"videos (other formats may be sent as " -":class:`aiogram.types.document.Document`). On success, the sent " -":class:`aiogram.types.message.Message` is returned. Bots can currently " -"send video files of up to 50 MB in size, this limit may be changed in the" -" future." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:8 of -msgid "Source: https://core.telegram.org/bots/api#sendvideo" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:10 of -msgid "" -"Video to send. Pass a file_id as String to send a video that exists on " -"the Telegram servers (recommended), pass an HTTP URL as a String for " -"Telegram to get a video from the Internet, or upload a new video using " -"multipart/form-data. :ref:`More information on Sending Files » `" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:12 -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video_note:12 of -msgid "Duration of sent video in seconds" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:13 of -msgid "Video width" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:14 of -msgid "Video height" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:16 of -msgid "" -"Video caption (may also be used when resending videos by *file_id*), " -"0-1024 characters after entities parsing" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:17 of -msgid "" -"Mode for parsing entities in the video caption. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:19 of -msgid "" -"Pass :code:`True` if the video needs to be covered with a spoiler " -"animation" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:20 of -msgid "Pass :code:`True` if the uploaded video is suitable for streaming" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video:26 of -msgid "instance of method :class:`aiogram.methods.send_video.SendVideo`" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video_note:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.send_video_note.SendVideoNote` will automatically" -" fill method attributes:" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video_note:6 of -msgid "" -"As of `v.4.0 `_, " -"Telegram clients support rounded square MPEG4 videos of up to 1 minute " -"long. Use this method to send video messages. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video_note:8 of -msgid "Source: https://core.telegram.org/bots/api#sendvideonote" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video_note:10 of -msgid "" -"Video note to send. Pass a file_id as String to send a video note that " -"exists on the Telegram servers (recommended) or upload a new video using " -"multipart/form-data. :ref:`More information on Sending Files » `. Sending video notes by a URL is currently unsupported" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video_note:13 of -msgid "Video width and height, i.e. diameter of the video message" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_video_note:20 of -msgid "instance of method :class:`aiogram.methods.send_video_note.SendVideoNote`" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_voice:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_voice.SendVoice` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_voice:6 of -msgid "" -"Use this method to send audio files, if you want Telegram clients to " -"display the file as a playable voice message. For this to work, your " -"audio must be in an .OGG file encoded with OPUS (other formats may be " -"sent as :class:`aiogram.types.audio.Audio` or " -":class:`aiogram.types.document.Document`). On success, the sent " -":class:`aiogram.types.message.Message` is returned. Bots can currently " -"send voice messages of up to 50 MB in size, this limit may be changed in " -"the future." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_voice:8 of -msgid "Source: https://core.telegram.org/bots/api#sendvoice" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_voice:10 of -msgid "" -"Audio file to send. Pass a file_id as String to send a file that exists " -"on the Telegram servers (recommended), pass an HTTP URL as a String for " -"Telegram to get a file from the Internet, or upload a new one using " -"multipart/form-data. :ref:`More information on Sending Files » `" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_voice:12 of -msgid "Voice message caption, 0-1024 characters after entities parsing" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_voice:13 of -msgid "" -"Mode for parsing entities in the voice message caption. See `formatting " -"options `_ for " -"more details." -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_voice:15 of -msgid "Duration of the voice message in seconds" -msgstr "" - -#: aiogram.types.chat_member_updated.ChatMemberUpdated.answer_voice:21 of -msgid "instance of method :class:`aiogram.methods.send_voice.SendVoice`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/chat_permissions.po b/docs/locale/en/LC_MESSAGES/api/types/chat_permissions.po deleted file mode 100644 index 8dd59fb3..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/chat_permissions.po +++ /dev/null @@ -1,150 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/chat_permissions.rst:3 -msgid "ChatPermissions" -msgstr "" - -#: aiogram.types.chat_permissions.ChatPermissions:1 of -msgid "" -"Describes actions that a non-administrator user is allowed to take in a " -"chat." -msgstr "" - -#: aiogram.types.chat_permissions.ChatPermissions:3 of -msgid "Source: https://core.telegram.org/bots/api#chatpermissions" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_permissions.ChatPermissions.can_send_messages:1 of -msgid "" -"*Optional*. :code:`True`, if the user is allowed to send text messages, " -"contacts, invoices, locations and venues" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_permissions.ChatPermissions.can_send_audios:1 of -msgid "*Optional*. :code:`True`, if the user is allowed to send audios" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_permissions.ChatPermissions.can_send_documents:1 of -msgid "*Optional*. :code:`True`, if the user is allowed to send documents" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_permissions.ChatPermissions.can_send_photos:1 of -msgid "*Optional*. :code:`True`, if the user is allowed to send photos" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_permissions.ChatPermissions.can_send_videos:1 of -msgid "*Optional*. :code:`True`, if the user is allowed to send videos" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_permissions.ChatPermissions.can_send_video_notes:1 of -msgid "*Optional*. :code:`True`, if the user is allowed to send video notes" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_permissions.ChatPermissions.can_send_voice_notes:1 of -msgid "*Optional*. :code:`True`, if the user is allowed to send voice notes" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_permissions.ChatPermissions.can_send_polls:1 of -msgid "*Optional*. :code:`True`, if the user is allowed to send polls" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_permissions.ChatPermissions.can_send_other_messages:1 of -msgid "" -"*Optional*. :code:`True`, if the user is allowed to send animations, " -"games, stickers and use inline bots" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_permissions.ChatPermissions.can_add_web_page_previews:1 -#: of -msgid "" -"*Optional*. :code:`True`, if the user is allowed to add web page previews" -" to their messages" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_permissions.ChatPermissions.can_change_info:1 of -msgid "" -"*Optional*. :code:`True`, if the user is allowed to change the chat " -"title, photo and other settings. Ignored in public supergroups" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_permissions.ChatPermissions.can_invite_users:1 of -msgid "" -"*Optional*. :code:`True`, if the user is allowed to invite new users to " -"the chat" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_permissions.ChatPermissions.can_pin_messages:1 of -msgid "" -"*Optional*. :code:`True`, if the user is allowed to pin messages. Ignored" -" in public supergroups" -msgstr "" - -#: ../../docstring -#: aiogram.types.chat_permissions.ChatPermissions.can_manage_topics:1 of -msgid "" -"*Optional*. :code:`True`, if the user is allowed to create forum topics. " -"If omitted defaults to the value of can_pin_messages" -msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the user is" -#~ " allowed to send text messages, " -#~ "contacts, locations and venues" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the user is" -#~ " allowed to send audios, documents, " -#~ "photos, videos, video notes and voice" -#~ " notes, implies can_send_messages" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the user is" -#~ " allowed to send polls, implies " -#~ "can_send_messages" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the user is" -#~ " allowed to send animations, games, " -#~ "stickers and use inline bots, implies" -#~ " can_send_media_messages" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if the user is" -#~ " allowed to add web page previews " -#~ "to their messages, implies " -#~ "can_send_media_messages" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/chat_photo.po b/docs/locale/en/LC_MESSAGES/api/types/chat_photo.po deleted file mode 100644 index 67bbfafe..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/chat_photo.po +++ /dev/null @@ -1,56 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/chat_photo.rst:3 -msgid "ChatPhoto" -msgstr "" - -#: aiogram.types.chat_photo.ChatPhoto:1 of -msgid "This object represents a chat photo." -msgstr "" - -#: aiogram.types.chat_photo.ChatPhoto:3 of -msgid "Source: https://core.telegram.org/bots/api#chatphoto" -msgstr "" - -#: ../../docstring aiogram.types.chat_photo.ChatPhoto.small_file_id:1 of -msgid "" -"File identifier of small (160x160) chat photo. This file_id can be used " -"only for photo download and only for as long as the photo is not changed." -msgstr "" - -#: ../../docstring aiogram.types.chat_photo.ChatPhoto.small_file_unique_id:1 of -msgid "" -"Unique file identifier of small (160x160) chat photo, which is supposed " -"to be the same over time and for different bots. Can't be used to " -"download or reuse the file." -msgstr "" - -#: ../../docstring aiogram.types.chat_photo.ChatPhoto.big_file_id:1 of -msgid "" -"File identifier of big (640x640) chat photo. This file_id can be used " -"only for photo download and only for as long as the photo is not changed." -msgstr "" - -#: ../../docstring aiogram.types.chat_photo.ChatPhoto.big_file_unique_id:1 of -msgid "" -"Unique file identifier of big (640x640) chat photo, which is supposed to " -"be the same over time and for different bots. Can't be used to download " -"or reuse the file." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/chat_shared.po b/docs/locale/en/LC_MESSAGES/api/types/chat_shared.po deleted file mode 100644 index def83f98..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/chat_shared.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/chat_shared.rst:3 -msgid "ChatShared" -msgstr "" - -#: aiogram.types.chat_shared.ChatShared:1 of -msgid "" -"This object contains information about the chat whose identifier was " -"shared with the bot using a " -":class:`aiogram.types.keyboard_button_request_chat.KeyboardButtonRequestChat`" -" button." -msgstr "" - -#: aiogram.types.chat_shared.ChatShared:3 of -msgid "Source: https://core.telegram.org/bots/api#chatshared" -msgstr "" - -#: ../../docstring aiogram.types.chat_shared.ChatShared.request_id:1 of -msgid "Identifier of the request" -msgstr "" - -#: ../../docstring aiogram.types.chat_shared.ChatShared.chat_id:1 of -msgid "" -"Identifier of the shared chat. This number may have more than 32 " -"significant bits and some programming languages may have " -"difficulty/silent defects in interpreting it. But it has at most 52 " -"significant bits, so a 64-bit integer or double-precision float type are " -"safe for storing this identifier. The bot may not have access to the chat" -" and could be unable to use this identifier, unless the chat is already " -"known to the bot by some other means." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/chosen_inline_result.po b/docs/locale/en/LC_MESSAGES/api/types/chosen_inline_result.po deleted file mode 100644 index ebbc8e52..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/chosen_inline_result.po +++ /dev/null @@ -1,69 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/chosen_inline_result.rst:3 -msgid "ChosenInlineResult" -msgstr "" - -#: aiogram.types.chosen_inline_result.ChosenInlineResult:1 of -msgid "" -"Represents a `result " -"`_ of an inline " -"query that was chosen by the user and sent to their chat partner. " -"**Note:** It is necessary to enable `inline feedback " -"`_ via " -"`@BotFather `_ in order to receive these objects " -"in updates." -msgstr "" - -#: aiogram.types.chosen_inline_result.ChosenInlineResult:4 of -msgid "Source: https://core.telegram.org/bots/api#choseninlineresult" -msgstr "" - -#: ../../docstring -#: aiogram.types.chosen_inline_result.ChosenInlineResult.result_id:1 of -msgid "The unique identifier for the result that was chosen" -msgstr "" - -#: ../../docstring -#: aiogram.types.chosen_inline_result.ChosenInlineResult.from_user:1 of -msgid "The user that chose the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.chosen_inline_result.ChosenInlineResult.query:1 of -msgid "The query that was used to obtain the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.chosen_inline_result.ChosenInlineResult.location:1 of -msgid "*Optional*. Sender location, only for bots that require user location" -msgstr "" - -#: ../../docstring -#: aiogram.types.chosen_inline_result.ChosenInlineResult.inline_message_id:1 of -msgid "" -"*Optional*. Identifier of the sent inline message. Available only if " -"there is an `inline keyboard " -"`_ attached to " -"the message. Will be also received in `callback queries " -"`_ and can be used to " -"`edit `_ the " -"message." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/contact.po b/docs/locale/en/LC_MESSAGES/api/types/contact.po deleted file mode 100644 index 7e9f5102..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/contact.po +++ /dev/null @@ -1,57 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/contact.rst:3 -msgid "Contact" -msgstr "" - -#: aiogram.types.contact.Contact:1 of -msgid "This object represents a phone contact." -msgstr "" - -#: aiogram.types.contact.Contact:3 of -msgid "Source: https://core.telegram.org/bots/api#contact" -msgstr "" - -#: ../../docstring aiogram.types.contact.Contact.phone_number:1 of -msgid "Contact's phone number" -msgstr "" - -#: ../../docstring aiogram.types.contact.Contact.first_name:1 of -msgid "Contact's first name" -msgstr "" - -#: ../../docstring aiogram.types.contact.Contact.last_name:1 of -msgid "*Optional*. Contact's last name" -msgstr "" - -#: ../../docstring aiogram.types.contact.Contact.user_id:1 of -msgid "" -"*Optional*. Contact's user identifier in Telegram. This number may have " -"more than 32 significant bits and some programming languages may have " -"difficulty/silent defects in interpreting it. But it has at most 52 " -"significant bits, so a 64-bit integer or double-precision float type are " -"safe for storing this identifier." -msgstr "" - -#: ../../docstring aiogram.types.contact.Contact.vcard:1 of -msgid "" -"*Optional*. Additional data about the contact in the form of a `vCard " -"`_" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/dice.po b/docs/locale/en/LC_MESSAGES/api/types/dice.po deleted file mode 100644 index 55baf589..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/dice.po +++ /dev/null @@ -1,40 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/dice.rst:3 -msgid "Dice" -msgstr "" - -#: aiogram.types.dice.Dice:1 of -msgid "This object represents an animated emoji that displays a random value." -msgstr "" - -#: aiogram.types.dice.Dice:3 of -msgid "Source: https://core.telegram.org/bots/api#dice" -msgstr "" - -#: ../../docstring aiogram.types.dice.Dice.emoji:1 of -msgid "Emoji on which the dice throw animation is based" -msgstr "" - -#: ../../docstring aiogram.types.dice.Dice.value:1 of -msgid "" -"Value of the dice, 1-6 for '🎲', '🎯' and '🎳' base emoji, 1-5 for '🏀' and " -"'⚽' base emoji, 1-64 for '🎰' base emoji" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/document.po b/docs/locale/en/LC_MESSAGES/api/types/document.po deleted file mode 100644 index 0295a948..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/document.po +++ /dev/null @@ -1,64 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/document.rst:3 -msgid "Document" -msgstr "" - -#: aiogram.types.document.Document:1 of -msgid "" -"This object represents a general file (as opposed to `photos " -"`_, `voice messages " -"`_ and `audio files " -"`_)." -msgstr "" - -#: aiogram.types.document.Document:3 of -msgid "Source: https://core.telegram.org/bots/api#document" -msgstr "" - -#: ../../docstring aiogram.types.document.Document.file_id:1 of -msgid "Identifier for this file, which can be used to download or reuse the file" -msgstr "" - -#: ../../docstring aiogram.types.document.Document.file_unique_id:1 of -msgid "" -"Unique identifier for this file, which is supposed to be the same over " -"time and for different bots. Can't be used to download or reuse the file." -msgstr "" - -#: ../../docstring aiogram.types.document.Document.thumb:1 of -msgid "*Optional*. Document thumbnail as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.document.Document.file_name:1 of -msgid "*Optional*. Original filename as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.document.Document.mime_type:1 of -msgid "*Optional*. MIME type of the file as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.document.Document.file_size:1 of -msgid "" -"*Optional*. File size in bytes. It can be bigger than 2^31 and some " -"programming languages may have difficulty/silent defects in interpreting " -"it. But it has at most 52 significant bits, so a signed 64-bit integer or" -" double-precision float type are safe for storing this value." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/encrypted_credentials.po b/docs/locale/en/LC_MESSAGES/api/types/encrypted_credentials.po deleted file mode 100644 index ef407694..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/encrypted_credentials.po +++ /dev/null @@ -1,56 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/encrypted_credentials.rst:3 -msgid "EncryptedCredentials" -msgstr "" - -#: aiogram.types.encrypted_credentials.EncryptedCredentials:1 of -msgid "" -"Describes data required for decrypting and authenticating " -":class:`aiogram.types.encrypted_passport_element.EncryptedPassportElement`." -" See the `Telegram Passport Documentation " -"`_ for a " -"complete description of the data decryption and authentication processes." -msgstr "" - -#: aiogram.types.encrypted_credentials.EncryptedCredentials:3 of -msgid "Source: https://core.telegram.org/bots/api#encryptedcredentials" -msgstr "" - -#: ../../docstring -#: aiogram.types.encrypted_credentials.EncryptedCredentials.data:1 of -msgid "" -"Base64-encoded encrypted JSON-serialized data with unique user's payload," -" data hashes and secrets required for " -":class:`aiogram.types.encrypted_passport_element.EncryptedPassportElement`" -" decryption and authentication" -msgstr "" - -#: ../../docstring -#: aiogram.types.encrypted_credentials.EncryptedCredentials.hash:1 of -msgid "Base64-encoded data hash for data authentication" -msgstr "" - -#: ../../docstring -#: aiogram.types.encrypted_credentials.EncryptedCredentials.secret:1 of -msgid "" -"Base64-encoded secret, encrypted with the bot's public RSA key, required " -"for data decryption" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/encrypted_passport_element.po b/docs/locale/en/LC_MESSAGES/api/types/encrypted_passport_element.po deleted file mode 100644 index d0a915ce..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/encrypted_passport_element.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/encrypted_passport_element.rst:3 -msgid "EncryptedPassportElement" -msgstr "" - -#: aiogram.types.encrypted_passport_element.EncryptedPassportElement:1 of -msgid "" -"Describes documents or other Telegram Passport elements shared with the " -"bot by the user." -msgstr "" - -#: aiogram.types.encrypted_passport_element.EncryptedPassportElement:3 of -msgid "Source: https://core.telegram.org/bots/api#encryptedpassportelement" -msgstr "" - -#: ../../docstring -#: aiogram.types.encrypted_passport_element.EncryptedPassportElement.type:1 of -msgid "" -"Element type. One of 'personal_details', 'passport', 'driver_license', " -"'identity_card', 'internal_passport', 'address', 'utility_bill', " -"'bank_statement', 'rental_agreement', 'passport_registration', " -"'temporary_registration', 'phone_number', 'email'." -msgstr "" - -#: ../../docstring -#: aiogram.types.encrypted_passport_element.EncryptedPassportElement.hash:1 of -msgid "" -"Base64-encoded element hash for using in " -":class:`aiogram.types.passport_element_error_unspecified.PassportElementErrorUnspecified`" -msgstr "" - -#: ../../docstring -#: aiogram.types.encrypted_passport_element.EncryptedPassportElement.data:1 of -msgid "" -"*Optional*. Base64-encoded encrypted Telegram Passport element data " -"provided by the user, available for 'personal_details', 'passport', " -"'driver_license', 'identity_card', 'internal_passport' and 'address' " -"types. Can be decrypted and verified using the accompanying " -":class:`aiogram.types.encrypted_credentials.EncryptedCredentials`." -msgstr "" - -#: ../../docstring -#: aiogram.types.encrypted_passport_element.EncryptedPassportElement.phone_number:1 -#: of -msgid "" -"*Optional*. User's verified phone number, available only for " -"'phone_number' type" -msgstr "" - -#: ../../docstring -#: aiogram.types.encrypted_passport_element.EncryptedPassportElement.email:1 of -msgid "*Optional*. User's verified email address, available only for 'email' type" -msgstr "" - -#: ../../docstring -#: aiogram.types.encrypted_passport_element.EncryptedPassportElement.files:1 of -msgid "" -"*Optional*. Array of encrypted files with documents provided by the user," -" available for 'utility_bill', 'bank_statement', 'rental_agreement', " -"'passport_registration' and 'temporary_registration' types. Files can be " -"decrypted and verified using the accompanying " -":class:`aiogram.types.encrypted_credentials.EncryptedCredentials`." -msgstr "" - -#: ../../docstring -#: aiogram.types.encrypted_passport_element.EncryptedPassportElement.front_side:1 -#: of -msgid "" -"*Optional*. Encrypted file with the front side of the document, provided " -"by the user. Available for 'passport', 'driver_license', 'identity_card' " -"and 'internal_passport'. The file can be decrypted and verified using the" -" accompanying " -":class:`aiogram.types.encrypted_credentials.EncryptedCredentials`." -msgstr "" - -#: ../../docstring -#: aiogram.types.encrypted_passport_element.EncryptedPassportElement.reverse_side:1 -#: of -msgid "" -"*Optional*. Encrypted file with the reverse side of the document, " -"provided by the user. Available for 'driver_license' and 'identity_card'." -" The file can be decrypted and verified using the accompanying " -":class:`aiogram.types.encrypted_credentials.EncryptedCredentials`." -msgstr "" - -#: ../../docstring -#: aiogram.types.encrypted_passport_element.EncryptedPassportElement.selfie:1 -#: of -msgid "" -"*Optional*. Encrypted file with the selfie of the user holding a " -"document, provided by the user; available for 'passport', " -"'driver_license', 'identity_card' and 'internal_passport'. The file can " -"be decrypted and verified using the accompanying " -":class:`aiogram.types.encrypted_credentials.EncryptedCredentials`." -msgstr "" - -#: ../../docstring -#: aiogram.types.encrypted_passport_element.EncryptedPassportElement.translation:1 -#: of -msgid "" -"*Optional*. Array of encrypted files with translated versions of " -"documents provided by the user. Available if requested for 'passport', " -"'driver_license', 'identity_card', 'internal_passport', 'utility_bill', " -"'bank_statement', 'rental_agreement', 'passport_registration' and " -"'temporary_registration' types. Files can be decrypted and verified using" -" the accompanying " -":class:`aiogram.types.encrypted_credentials.EncryptedCredentials`." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/error_event.po b/docs/locale/en/LC_MESSAGES/api/types/error_event.po deleted file mode 100644 index fbaceb09..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/error_event.po +++ /dev/null @@ -1,40 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/error_event.rst:3 -msgid "ErrorEvent" -msgstr "" - -#: aiogram.types.error_event.ErrorEvent:1 of -msgid "" -"Internal event, should be used to receive errors while processing Updates" -" from Telegram" -msgstr "" - -#: aiogram.types.error_event.ErrorEvent:3 of -msgid "Source: https://core.telegram.org/bots/api#error-event" -msgstr "" - -#: ../../docstring aiogram.types.error_event.ErrorEvent.update:1 of -msgid "Received update" -msgstr "" - -#: ../../docstring aiogram.types.error_event.ErrorEvent.exception:1 of -msgid "Exception" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/file.po b/docs/locale/en/LC_MESSAGES/api/types/file.po deleted file mode 100644 index 7b0c0c2c..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/file.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/file.rst:3 -msgid "File" -msgstr "" - -#: aiogram.types.file.File:1 of -msgid "" -"This object represents a file ready to be downloaded. The file can be " -"downloaded via the link " -":code:`https://api.telegram.org/file/bot/`. 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`." -msgstr "" - -#: aiogram.types.file.File:3 of -msgid "The maximum file size to download is 20 MB" -msgstr "" - -#: aiogram.types.file.File:5 of -msgid "Source: https://core.telegram.org/bots/api#file" -msgstr "" - -#: ../../docstring aiogram.types.file.File.file_id:1 of -msgid "Identifier for this file, which can be used to download or reuse the file" -msgstr "" - -#: ../../docstring aiogram.types.file.File.file_unique_id:1 of -msgid "" -"Unique identifier for this file, which is supposed to be the same over " -"time and for different bots. Can't be used to download or reuse the file." -msgstr "" - -#: ../../docstring aiogram.types.file.File.file_size:1 of -msgid "" -"*Optional*. File size in bytes. It can be bigger than 2^31 and some " -"programming languages may have difficulty/silent defects in interpreting " -"it. But it has at most 52 significant bits, so a signed 64-bit integer or" -" double-precision float type are safe for storing this value." -msgstr "" - -#: ../../docstring aiogram.types.file.File.file_path:1 of -msgid "" -"*Optional*. File path. Use " -":code:`https://api.telegram.org/file/bot/` to get the " -"file." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/force_reply.po b/docs/locale/en/LC_MESSAGES/api/types/force_reply.po deleted file mode 100644 index 6e408b99..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/force_reply.po +++ /dev/null @@ -1,98 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/force_reply.rst:3 -msgid "ForceReply" -msgstr "" - -#: aiogram.types.force_reply.ForceReply:1 of -msgid "" -"Upon receiving a message with this object, Telegram clients will display " -"a reply interface to the user (act as if the user has selected the bot's " -"message and tapped 'Reply'). This can be extremely useful if you want to " -"create user-friendly step-by-step interfaces without having to sacrifice " -"`privacy mode `_." -msgstr "" - -#: aiogram.types.force_reply.ForceReply:3 of -msgid "" -"**Example:** A `poll bot `_ for groups runs in " -"privacy mode (only receives commands, replies to its messages and " -"mentions). There could be two ways to create a new poll:" -msgstr "" - -#: aiogram.types.force_reply.ForceReply:5 of -msgid "" -"Explain the user how to send a command with parameters (e.g. /newpoll " -"question answer1 answer2). May be appealing for hardcore users but lacks " -"modern day polish." -msgstr "" - -#: aiogram.types.force_reply.ForceReply:6 of -msgid "" -"Guide the user through a step-by-step process. 'Please send me your " -"question', 'Cool, now let's add the first answer option', 'Great. Keep " -"adding answer options, then send /done when you're ready'." -msgstr "" - -#: aiogram.types.force_reply.ForceReply:8 of -msgid "" -"The last option is definitely more attractive. And if you use " -":class:`aiogram.types.force_reply.ForceReply` in your bot's questions, it" -" will receive the user's answers even if it only receives replies, " -"commands and mentions - without any extra work for the user." -msgstr "" - -#: aiogram.types.force_reply.ForceReply:10 of -msgid "Source: https://core.telegram.org/bots/api#forcereply" -msgstr "" - -#: ../../docstring aiogram.types.force_reply.ForceReply.force_reply:1 of -msgid "" -"Shows reply interface to the user, as if they manually selected the bot's" -" message and tapped 'Reply'" -msgstr "" - -#: ../../docstring -#: aiogram.types.force_reply.ForceReply.input_field_placeholder:1 of -msgid "" -"*Optional*. The placeholder to be shown in the input field when the reply" -" is active; 1-64 characters" -msgstr "" - -#: ../../docstring aiogram.types.force_reply.ForceReply.selective:1 of -msgid "" -"*Optional*. Use this parameter if you want to force reply from specific " -"users only. Targets: 1) users that are @mentioned in the *text* of the " -":class:`aiogram.types.message.Message` object; 2) if the bot's message is" -" a reply (has *reply_to_message_id*), sender of the original message." -msgstr "" - -#~ msgid "" -#~ "Upon receiving a message with this " -#~ "object, Telegram clients will display a" -#~ " reply interface to the user (act " -#~ "as if the user has selected the" -#~ " bot's message and tapped 'Reply'). " -#~ "This can be extremely useful if " -#~ "you want to create user-friendly " -#~ "step-by-step interfaces without having " -#~ "to sacrifice `privacy mode " -#~ "`_." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/forum_topic.po b/docs/locale/en/LC_MESSAGES/api/types/forum_topic.po deleted file mode 100644 index c59c0698..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/forum_topic.po +++ /dev/null @@ -1,47 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/forum_topic.rst:3 -msgid "ForumTopic" -msgstr "" - -#: aiogram.types.forum_topic.ForumTopic:1 of -msgid "This object represents a forum topic." -msgstr "" - -#: aiogram.types.forum_topic.ForumTopic:3 of -msgid "Source: https://core.telegram.org/bots/api#forumtopic" -msgstr "" - -#: ../../docstring aiogram.types.forum_topic.ForumTopic.message_thread_id:1 of -msgid "Unique identifier of the forum topic" -msgstr "" - -#: ../../docstring aiogram.types.forum_topic.ForumTopic.name:1 of -msgid "Name of the topic" -msgstr "" - -#: ../../docstring aiogram.types.forum_topic.ForumTopic.icon_color:1 of -msgid "Color of the topic icon in RGB format" -msgstr "" - -#: ../../docstring aiogram.types.forum_topic.ForumTopic.icon_custom_emoji_id:1 -#: of -msgid "*Optional*. Unique identifier of the custom emoji shown as the topic icon" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/forum_topic_closed.po b/docs/locale/en/LC_MESSAGES/api/types/forum_topic_closed.po deleted file mode 100644 index 9fadeb3d..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/forum_topic_closed.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/forum_topic_closed.rst:3 -msgid "ForumTopicClosed" -msgstr "" - -#: aiogram.types.forum_topic_closed.ForumTopicClosed:1 of -msgid "" -"This object represents a service message about a forum topic closed in " -"the chat. Currently holds no information." -msgstr "" - -#: aiogram.types.forum_topic_closed.ForumTopicClosed:3 of -msgid "Source: https://core.telegram.org/bots/api#forumtopicclosed" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/forum_topic_created.po b/docs/locale/en/LC_MESSAGES/api/types/forum_topic_created.po deleted file mode 100644 index 59855d81..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/forum_topic_created.po +++ /dev/null @@ -1,48 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/forum_topic_created.rst:3 -msgid "ForumTopicCreated" -msgstr "" - -#: aiogram.types.forum_topic_created.ForumTopicCreated:1 of -msgid "" -"This object represents a service message about a new forum topic created " -"in the chat." -msgstr "" - -#: aiogram.types.forum_topic_created.ForumTopicCreated:3 of -msgid "Source: https://core.telegram.org/bots/api#forumtopiccreated" -msgstr "" - -#: ../../docstring aiogram.types.forum_topic_created.ForumTopicCreated.name:1 -#: of -msgid "Name of the topic" -msgstr "" - -#: ../../docstring -#: aiogram.types.forum_topic_created.ForumTopicCreated.icon_color:1 of -msgid "Color of the topic icon in RGB format" -msgstr "" - -#: ../../docstring -#: aiogram.types.forum_topic_created.ForumTopicCreated.icon_custom_emoji_id:1 -#: of -msgid "*Optional*. Unique identifier of the custom emoji shown as the topic icon" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/forum_topic_edited.po b/docs/locale/en/LC_MESSAGES/api/types/forum_topic_edited.po deleted file mode 100644 index 26fe021a..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/forum_topic_edited.po +++ /dev/null @@ -1,41 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/forum_topic_edited.rst:3 -msgid "ForumTopicEdited" -msgstr "" - -#: aiogram.types.forum_topic_edited.ForumTopicEdited:1 of -msgid "This object represents a service message about an edited forum topic." -msgstr "" - -#: aiogram.types.forum_topic_edited.ForumTopicEdited:3 of -msgid "Source: https://core.telegram.org/bots/api#forumtopicedited" -msgstr "" - -#: ../../docstring aiogram.types.forum_topic_edited.ForumTopicEdited.name:1 of -msgid "*Optional*. New name of the topic, if it was edited" -msgstr "" - -#: ../../docstring -#: aiogram.types.forum_topic_edited.ForumTopicEdited.icon_custom_emoji_id:1 of -msgid "" -"*Optional*. New identifier of the custom emoji shown as the topic icon, " -"if it was edited; an empty string if the icon was removed" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/forum_topic_reopened.po b/docs/locale/en/LC_MESSAGES/api/types/forum_topic_reopened.po deleted file mode 100644 index 0d202ed8..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/forum_topic_reopened.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/forum_topic_reopened.rst:3 -msgid "ForumTopicReopened" -msgstr "" - -#: aiogram.types.forum_topic_reopened.ForumTopicReopened:1 of -msgid "" -"This object represents a service message about a forum topic reopened in " -"the chat. Currently holds no information." -msgstr "" - -#: aiogram.types.forum_topic_reopened.ForumTopicReopened:3 of -msgid "Source: https://core.telegram.org/bots/api#forumtopicreopened" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/game.po b/docs/locale/en/LC_MESSAGES/api/types/game.po deleted file mode 100644 index 2e2df85b..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/game.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/game.rst:3 -msgid "Game" -msgstr "" - -#: aiogram.types.game.Game:1 of -msgid "" -"This object represents a game. Use BotFather to create and edit games, " -"their short names will act as unique identifiers." -msgstr "" - -#: aiogram.types.game.Game:3 of -msgid "Source: https://core.telegram.org/bots/api#game" -msgstr "" - -#: ../../docstring aiogram.types.game.Game.title:1 of -msgid "Title of the game" -msgstr "" - -#: ../../docstring aiogram.types.game.Game.description:1 of -msgid "Description of the game" -msgstr "" - -#: ../../docstring aiogram.types.game.Game.photo:1 of -msgid "Photo that will be displayed in the game message in chats." -msgstr "" - -#: ../../docstring aiogram.types.game.Game.text:1 of -msgid "" -"*Optional*. Brief description of the game or high scores included in the " -"game message. Can be automatically edited to include current high scores " -"for the game when the bot calls " -":class:`aiogram.methods.set_game_score.SetGameScore`, or manually edited " -"using :class:`aiogram.methods.edit_message_text.EditMessageText`. 0-4096 " -"characters." -msgstr "" - -#: ../../docstring aiogram.types.game.Game.text_entities:1 of -msgid "" -"*Optional*. Special entities that appear in *text*, such as usernames, " -"URLs, bot commands, etc." -msgstr "" - -#: ../../docstring aiogram.types.game.Game.animation:1 of -msgid "" -"*Optional*. Animation that will be displayed in the game message in " -"chats. Upload via `BotFather `_" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/game_high_score.po b/docs/locale/en/LC_MESSAGES/api/types/game_high_score.po deleted file mode 100644 index bcfb27bd..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/game_high_score.po +++ /dev/null @@ -1,51 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/game_high_score.rst:3 -msgid "GameHighScore" -msgstr "" - -#: aiogram.types.game_high_score.GameHighScore:1 of -msgid "" -"This object represents one row of the high scores table for a game. And " -"that's about all we've got for now." -msgstr "" - -#: aiogram.types.game_high_score.GameHighScore:4 of -msgid "" -"If you've got any questions, please check out our " -"`https://core.telegram.org/bots/faq " -"`_ **Bot FAQ »**" -msgstr "" - -#: aiogram.types.game_high_score.GameHighScore:6 of -msgid "Source: https://core.telegram.org/bots/api#gamehighscore" -msgstr "" - -#: ../../docstring aiogram.types.game_high_score.GameHighScore.position:1 of -msgid "Position in high score table for the game" -msgstr "" - -#: ../../docstring aiogram.types.game_high_score.GameHighScore.user:1 of -msgid "User" -msgstr "" - -#: ../../docstring aiogram.types.game_high_score.GameHighScore.score:1 of -msgid "Score" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/general_forum_topic_hidden.po b/docs/locale/en/LC_MESSAGES/api/types/general_forum_topic_hidden.po deleted file mode 100644 index 0cb7dbe1..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/general_forum_topic_hidden.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/general_forum_topic_hidden.rst:3 -msgid "GeneralForumTopicHidden" -msgstr "" - -#: aiogram.types.general_forum_topic_hidden.GeneralForumTopicHidden:1 of -msgid "" -"This object represents a service message about General forum topic hidden" -" in the chat. Currently holds no information." -msgstr "" - -#: aiogram.types.general_forum_topic_hidden.GeneralForumTopicHidden:3 of -msgid "Source: https://core.telegram.org/bots/api#generalforumtopichidden" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/general_forum_topic_unhidden.po b/docs/locale/en/LC_MESSAGES/api/types/general_forum_topic_unhidden.po deleted file mode 100644 index 84782543..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/general_forum_topic_unhidden.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/general_forum_topic_unhidden.rst:3 -msgid "GeneralForumTopicUnhidden" -msgstr "" - -#: aiogram.types.general_forum_topic_unhidden.GeneralForumTopicUnhidden:1 of -msgid "" -"This object represents a service message about General forum topic " -"unhidden in the chat. Currently holds no information." -msgstr "" - -#: aiogram.types.general_forum_topic_unhidden.GeneralForumTopicUnhidden:3 of -msgid "Source: https://core.telegram.org/bots/api#generalforumtopicunhidden" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/index.po b/docs/locale/en/LC_MESSAGES/api/types/index.po deleted file mode 100644 index dd347157..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/index.po +++ /dev/null @@ -1,60 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/index.rst:3 -msgid "Types" -msgstr "" - -#: ../../api/types/index.rst:5 -msgid "Here is list of all available API types:" -msgstr "" - -#: ../../api/types/index.rst:9 -msgid "Inline mode" -msgstr "" - -#: ../../api/types/index.rst:47 -msgid "Available types" -msgstr "" - -#: ../../api/types/index.rst:143 -msgid "Telegram Passport" -msgstr "" - -#: ../../api/types/index.rst:164 -msgid "Getting updates" -msgstr "" - -#: ../../api/types/index.rst:173 -msgid "Stickers" -msgstr "" - -#: ../../api/types/index.rst:184 -msgid "Payments" -msgstr "" - -#: ../../api/types/index.rst:199 -msgid "Games" -msgstr "" - -#~ msgid "Internal events" -#~ msgstr "" - -#~ msgid "Internals" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_keyboard_button.po b/docs/locale/en/LC_MESSAGES/api/types/inline_keyboard_button.po deleted file mode 100644 index 3db47e31..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_keyboard_button.po +++ /dev/null @@ -1,115 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_keyboard_button.rst:3 -msgid "InlineKeyboardButton" -msgstr "" - -#: aiogram.types.inline_keyboard_button.InlineKeyboardButton:1 of -msgid "" -"This object represents one button of an inline keyboard. You **must** use" -" exactly one of the optional fields." -msgstr "" - -#: aiogram.types.inline_keyboard_button.InlineKeyboardButton:3 of -msgid "Source: https://core.telegram.org/bots/api#inlinekeyboardbutton" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_keyboard_button.InlineKeyboardButton.text:1 of -msgid "Label text on the button" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_keyboard_button.InlineKeyboardButton.url:1 of -msgid "" -"*Optional*. HTTP or tg:// URL to be opened when the button is pressed. " -"Links :code:`tg://user?id=` can be used to mention a user by " -"their ID without using a username, if this is allowed by their privacy " -"settings." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_keyboard_button.InlineKeyboardButton.callback_data:1 of -msgid "" -"*Optional*. Data to be sent in a `callback query " -"`_ to the bot when " -"button is pressed, 1-64 bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_keyboard_button.InlineKeyboardButton.web_app:1 of -msgid "" -"*Optional*. Description of the `Web App " -"`_ that will be launched when the" -" user presses the button. The Web App will be able to send an arbitrary " -"message on behalf of the user using the method " -":class:`aiogram.methods.answer_web_app_query.AnswerWebAppQuery`. " -"Available only in private chats between a user and the bot." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_keyboard_button.InlineKeyboardButton.login_url:1 of -msgid "" -"*Optional*. An HTTPS URL used to automatically authorize the user. Can be" -" used as a replacement for the `Telegram Login Widget " -"`_." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_keyboard_button.InlineKeyboardButton.switch_inline_query:1 -#: of -msgid "" -"*Optional*. If set, pressing the button will prompt the user to select " -"one of their chats, open that chat and insert the bot's username and the " -"specified inline query in the input field. May be empty, in which case " -"just the bot's username will be inserted." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_keyboard_button.InlineKeyboardButton.switch_inline_query_current_chat:1 -#: of -msgid "" -"*Optional*. If set, pressing the button will insert the bot's username " -"and the specified inline query in the current chat's input field. May be " -"empty, in which case only the bot's username will be inserted." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_keyboard_button.InlineKeyboardButton.switch_inline_query_chosen_chat:1 -#: of -msgid "" -"*Optional*. If set, pressing the button will prompt the user to select " -"one of their chats of the specified type, open that chat and insert the " -"bot's username and the specified inline query in the input field" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_keyboard_button.InlineKeyboardButton.callback_game:1 of -msgid "" -"*Optional*. Description of the game that will be launched when the user " -"presses the button." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_keyboard_button.InlineKeyboardButton.pay:1 of -msgid "" -"*Optional*. Specify :code:`True`, to send a `Pay button " -"`_." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_keyboard_markup.po b/docs/locale/en/LC_MESSAGES/api/types/inline_keyboard_markup.po deleted file mode 100644 index b516034d..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_keyboard_markup.po +++ /dev/null @@ -1,56 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_keyboard_markup.rst:3 -msgid "InlineKeyboardMarkup" -msgstr "" - -#: aiogram.types.inline_keyboard_markup.InlineKeyboardMarkup:1 of -msgid "" -"This object represents an `inline keyboard " -"`_ that appears" -" right next to the message it belongs to. **Note:** This will only work " -"in Telegram versions released after 9 April, 2016. Older clients will " -"display *unsupported message*." -msgstr "" - -#: aiogram.types.inline_keyboard_markup.InlineKeyboardMarkup:4 of -msgid "Source: https://core.telegram.org/bots/api#inlinekeyboardmarkup" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_keyboard_markup.InlineKeyboardMarkup.inline_keyboard:1 -#: of -msgid "" -"Array of button rows, each represented by an Array of " -":class:`aiogram.types.inline_keyboard_button.InlineKeyboardButton` " -"objects" -msgstr "" - -#~ msgid "" -#~ "This object represents an `inline " -#~ "keyboard `_ " -#~ "that appears right next to the " -#~ "message it belongs to. **Note:** This" -#~ " will only work in Telegram versions" -#~ " released after 9 April, 2016. Older" -#~ " clients will display *unsupported " -#~ "message*." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query.po deleted file mode 100644 index f848f5d0..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query.po +++ /dev/null @@ -1,155 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query.rst:3 -msgid "InlineQuery" -msgstr "" - -#: aiogram.types.inline_query.InlineQuery:1 of -msgid "" -"This object represents an incoming inline query. When the user sends an " -"empty query, your bot could return some default or trending results." -msgstr "" - -#: aiogram.types.inline_query.InlineQuery:3 of -msgid "Source: https://core.telegram.org/bots/api#inlinequery" -msgstr "" - -#: ../../docstring aiogram.types.inline_query.InlineQuery.id:1 of -msgid "Unique identifier for this query" -msgstr "" - -#: ../../docstring aiogram.types.inline_query.InlineQuery.from_user:1 of -msgid "Sender" -msgstr "" - -#: ../../docstring aiogram.types.inline_query.InlineQuery.query:1 of -msgid "Text of the query (up to 256 characters)" -msgstr "" - -#: ../../docstring aiogram.types.inline_query.InlineQuery.offset:1 of -msgid "Offset of the results to be returned, can be controlled by the bot" -msgstr "" - -#: ../../docstring aiogram.types.inline_query.InlineQuery.chat_type:1 of -msgid "" -"*Optional*. Type of the chat from which the inline query was sent. Can be" -" either 'sender' for a private chat with the inline query sender, " -"'private', 'group', 'supergroup', or 'channel'. The chat type should be " -"always known for requests sent from official clients and most third-party" -" clients, unless the request was sent from a secret chat" -msgstr "" - -#: ../../docstring aiogram.types.inline_query.InlineQuery.location:1 of -msgid "*Optional*. Sender location, only for bots that request user location" -msgstr "" - -#: aiogram.types.inline_query.InlineQuery.answer:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.answer_inline_query.AnswerInlineQuery` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.inline_query.InlineQuery.answer:4 of -msgid ":code:`inline_query_id`" -msgstr "" - -#: aiogram.types.inline_query.InlineQuery.answer:6 of -msgid "" -"Use this method to send answers to an inline query. On success, " -":code:`True` is returned." -msgstr "" - -#: aiogram.types.inline_query.InlineQuery.answer:8 of -msgid "No more than **50** results per query are allowed." -msgstr "" - -#: aiogram.types.inline_query.InlineQuery.answer:10 of -msgid "Source: https://core.telegram.org/bots/api#answerinlinequery" -msgstr "" - -#: aiogram.types.inline_query.InlineQuery.answer of -msgid "Parameters" -msgstr "" - -#: aiogram.types.inline_query.InlineQuery.answer:12 of -msgid "A JSON-serialized array of results for the inline query" -msgstr "" - -#: aiogram.types.inline_query.InlineQuery.answer:13 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 "" - -#: aiogram.types.inline_query.InlineQuery.answer:14 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 "" - -#: aiogram.types.inline_query.InlineQuery.answer:15 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 "" - -#: aiogram.types.inline_query.InlineQuery.answer:16 of -msgid "" -"A JSON-serialized object describing a button to be shown above inline " -"query results" -msgstr "" - -#: aiogram.types.inline_query.InlineQuery.answer:17 of -msgid "" -"`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 "" - -#: aiogram.types.inline_query.InlineQuery.answer:18 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 "" - -#: aiogram.types.inline_query.InlineQuery.answer of -msgid "Returns" -msgstr "" - -#: aiogram.types.inline_query.InlineQuery.answer:19 of -msgid "" -"instance of method " -":class:`aiogram.methods.answer_inline_query.AnswerInlineQuery`" -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 "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result.po deleted file mode 100644 index e5213929..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result.rst:3 -msgid "InlineQueryResult" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:1 of -msgid "" -"This object represents one result of an inline query. Telegram clients " -"currently support results of the following 20 types:" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:3 of -msgid ":class:`aiogram.types.inline_query_result_cached_audio.InlineQueryResultCachedAudio`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:4 of -msgid ":class:`aiogram.types.inline_query_result_cached_document.InlineQueryResultCachedDocument`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:5 of -msgid ":class:`aiogram.types.inline_query_result_cached_gif.InlineQueryResultCachedGif`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:6 of -msgid ":class:`aiogram.types.inline_query_result_cached_mpeg4_gif.InlineQueryResultCachedMpeg4Gif`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:7 of -msgid ":class:`aiogram.types.inline_query_result_cached_photo.InlineQueryResultCachedPhoto`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:8 of -msgid ":class:`aiogram.types.inline_query_result_cached_sticker.InlineQueryResultCachedSticker`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:9 of -msgid ":class:`aiogram.types.inline_query_result_cached_video.InlineQueryResultCachedVideo`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:10 of -msgid ":class:`aiogram.types.inline_query_result_cached_voice.InlineQueryResultCachedVoice`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:11 of -msgid ":class:`aiogram.types.inline_query_result_article.InlineQueryResultArticle`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:12 of -msgid ":class:`aiogram.types.inline_query_result_audio.InlineQueryResultAudio`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:13 of -msgid ":class:`aiogram.types.inline_query_result_contact.InlineQueryResultContact`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:14 of -msgid ":class:`aiogram.types.inline_query_result_game.InlineQueryResultGame`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:15 of -msgid ":class:`aiogram.types.inline_query_result_document.InlineQueryResultDocument`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:16 of -msgid ":class:`aiogram.types.inline_query_result_gif.InlineQueryResultGif`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:17 of -msgid ":class:`aiogram.types.inline_query_result_location.InlineQueryResultLocation`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:18 of -msgid ":class:`aiogram.types.inline_query_result_mpeg4_gif.InlineQueryResultMpeg4Gif`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:19 of -msgid ":class:`aiogram.types.inline_query_result_photo.InlineQueryResultPhoto`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:20 of -msgid ":class:`aiogram.types.inline_query_result_venue.InlineQueryResultVenue`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:21 of -msgid ":class:`aiogram.types.inline_query_result_video.InlineQueryResultVideo`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:22 of -msgid ":class:`aiogram.types.inline_query_result_voice.InlineQueryResultVoice`" -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:24 of -msgid "" -"**Note:** All URLs passed in inline query results will be available to " -"end users and therefore must be assumed to be **public**." -msgstr "" - -#: aiogram.types.inline_query_result.InlineQueryResult:26 of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresult" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_article.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_article.po deleted file mode 100644 index 6615989c..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_article.po +++ /dev/null @@ -1,104 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_article.rst:3 -msgid "InlineQueryResultArticle" -msgstr "" - -#: aiogram.types.inline_query_result_article.InlineQueryResultArticle:1 of -msgid "Represents a link to an article or web page." -msgstr "" - -#: aiogram.types.inline_query_result_article.InlineQueryResultArticle:3 of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultarticle" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_article.InlineQueryResultArticle.type:1 of -msgid "Type of the result, must be *article*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_article.InlineQueryResultArticle.id:1 of -msgid "Unique identifier for this result, 1-64 Bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_article.InlineQueryResultArticle.title:1 -#: of -msgid "Title of the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_article.InlineQueryResultArticle.input_message_content:1 -#: of -msgid "Content of the message to be sent" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_article.InlineQueryResultArticle.reply_markup:1 -#: of -msgid "" -"*Optional*. `Inline keyboard `_ attached to the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_article.InlineQueryResultArticle.url:1 of -msgid "*Optional*. URL of the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_article.InlineQueryResultArticle.hide_url:1 -#: of -msgid "" -"*Optional*. Pass :code:`True` if you don't want the URL to be shown in " -"the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_article.InlineQueryResultArticle.description:1 -#: of -msgid "*Optional*. Short description of the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_article.InlineQueryResultArticle.thumb_url:1 -#: of -msgid "*Optional*. Url of the thumbnail for the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_article.InlineQueryResultArticle.thumb_width:1 -#: of -msgid "*Optional*. Thumbnail width" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_article.InlineQueryResultArticle.thumb_height:1 -#: of -msgid "*Optional*. Thumbnail height" -msgstr "" - -#~ msgid "" -#~ "*Optional*. `Inline keyboard " -#~ "`_ attached to " -#~ "the message" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_audio.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_audio.po deleted file mode 100644 index 9ee8ea87..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_audio.po +++ /dev/null @@ -1,111 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_audio.rst:3 -msgid "InlineQueryResultAudio" -msgstr "" - -#: aiogram.types.inline_query_result_audio.InlineQueryResultAudio:1 of -msgid "" -"Represents a link to an MP3 audio file. By default, this audio file will " -"be sent by the user. Alternatively, you can use *input_message_content* " -"to send a message with the specified content instead of the audio. " -"**Note:** This will only work in Telegram versions released after 9 " -"April, 2016. Older clients will ignore them." -msgstr "" - -#: aiogram.types.inline_query_result_audio.InlineQueryResultAudio:4 of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultaudio" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_audio.InlineQueryResultAudio.type:1 of -msgid "Type of the result, must be *audio*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_audio.InlineQueryResultAudio.id:1 of -msgid "Unique identifier for this result, 1-64 bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_audio.InlineQueryResultAudio.audio_url:1 -#: of -msgid "A valid URL for the audio file" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_audio.InlineQueryResultAudio.title:1 of -msgid "Title" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_audio.InlineQueryResultAudio.caption:1 of -msgid "*Optional*. Caption, 0-1024 characters after entities parsing" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_audio.InlineQueryResultAudio.parse_mode:1 -#: of -msgid "" -"*Optional*. Mode for parsing entities in the audio caption. See " -"`formatting options `_ for more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_audio.InlineQueryResultAudio.caption_entities:1 -#: of -msgid "" -"*Optional*. List of special entities that appear in the caption, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_audio.InlineQueryResultAudio.performer:1 -#: of -msgid "*Optional*. Performer" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_audio.InlineQueryResultAudio.audio_duration:1 -#: of -msgid "*Optional*. Audio duration in seconds" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_audio.InlineQueryResultAudio.reply_markup:1 -#: of -msgid "" -"*Optional*. `Inline keyboard `_ attached to the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_audio.InlineQueryResultAudio.input_message_content:1 -#: of -msgid "*Optional*. Content of the message to be sent instead of the audio" -msgstr "" - -#~ msgid "" -#~ "*Optional*. `Inline keyboard " -#~ "`_ attached to " -#~ "the message" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_audio.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_audio.po deleted file mode 100644 index 5accdb13..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_audio.po +++ /dev/null @@ -1,99 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_cached_audio.rst:3 -msgid "InlineQueryResultCachedAudio" -msgstr "" - -#: aiogram.types.inline_query_result_cached_audio.InlineQueryResultCachedAudio:1 -#: of -msgid "" -"Represents a link to an MP3 audio file stored on the Telegram servers. By" -" default, this audio file will be sent by the user. Alternatively, you " -"can use *input_message_content* to send a message with the specified " -"content instead of the audio. **Note:** This will only work in Telegram " -"versions released after 9 April, 2016. Older clients will ignore them." -msgstr "" - -#: aiogram.types.inline_query_result_cached_audio.InlineQueryResultCachedAudio:4 -#: of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultcachedaudio" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_audio.InlineQueryResultCachedAudio.type:1 -#: of -msgid "Type of the result, must be *audio*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_audio.InlineQueryResultCachedAudio.id:1 -#: of -msgid "Unique identifier for this result, 1-64 bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_audio.InlineQueryResultCachedAudio.audio_file_id:1 -#: of -msgid "A valid file identifier for the audio file" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_audio.InlineQueryResultCachedAudio.caption:1 -#: of -msgid "*Optional*. Caption, 0-1024 characters after entities parsing" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_audio.InlineQueryResultCachedAudio.parse_mode:1 -#: of -msgid "" -"*Optional*. Mode for parsing entities in the audio caption. See " -"`formatting options `_ for more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_audio.InlineQueryResultCachedAudio.caption_entities:1 -#: of -msgid "" -"*Optional*. List of special entities that appear in the caption, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_audio.InlineQueryResultCachedAudio.reply_markup:1 -#: of -msgid "" -"*Optional*. `Inline keyboard `_ attached to the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_audio.InlineQueryResultCachedAudio.input_message_content:1 -#: of -msgid "*Optional*. Content of the message to be sent instead of the audio" -msgstr "" - -#~ msgid "" -#~ "*Optional*. `Inline keyboard " -#~ "`_ attached to " -#~ "the message" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_document.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_document.po deleted file mode 100644 index eb805a02..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_document.po +++ /dev/null @@ -1,114 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_cached_document.rst:3 -msgid "InlineQueryResultCachedDocument" -msgstr "" - -#: aiogram.types.inline_query_result_cached_document.InlineQueryResultCachedDocument:1 -#: of -msgid "" -"Represents a link to a file stored on the Telegram servers. By default, " -"this file will be sent by the user with an optional caption. " -"Alternatively, you can use *input_message_content* to send a message with" -" the specified content instead of the file. **Note:** This will only work" -" in Telegram versions released after 9 April, 2016. Older clients will " -"ignore them." -msgstr "" - -#: aiogram.types.inline_query_result_cached_document.InlineQueryResultCachedDocument:4 -#: of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultcacheddocument" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_document.InlineQueryResultCachedDocument.type:1 -#: of -msgid "Type of the result, must be *document*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_document.InlineQueryResultCachedDocument.id:1 -#: of -msgid "Unique identifier for this result, 1-64 bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_document.InlineQueryResultCachedDocument.title:1 -#: of -msgid "Title for the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_document.InlineQueryResultCachedDocument.document_file_id:1 -#: of -msgid "A valid file identifier for the file" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_document.InlineQueryResultCachedDocument.description:1 -#: of -msgid "*Optional*. Short description of the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_document.InlineQueryResultCachedDocument.caption:1 -#: of -msgid "" -"*Optional*. Caption of the document to be sent, 0-1024 characters after " -"entities parsing" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_document.InlineQueryResultCachedDocument.parse_mode:1 -#: of -msgid "" -"*Optional*. Mode for parsing entities in the document caption. See " -"`formatting options `_ for more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_document.InlineQueryResultCachedDocument.caption_entities:1 -#: of -msgid "" -"*Optional*. List of special entities that appear in the caption, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_document.InlineQueryResultCachedDocument.reply_markup:1 -#: of -msgid "" -"*Optional*. `Inline keyboard `_ attached to the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_document.InlineQueryResultCachedDocument.input_message_content:1 -#: of -msgid "*Optional*. Content of the message to be sent instead of the file" -msgstr "" - -#~ msgid "" -#~ "*Optional*. `Inline keyboard " -#~ "`_ attached to " -#~ "the message" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_gif.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_gif.po deleted file mode 100644 index ffc4e8f0..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_gif.po +++ /dev/null @@ -1,104 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_cached_gif.rst:3 -msgid "InlineQueryResultCachedGif" -msgstr "" - -#: aiogram.types.inline_query_result_cached_gif.InlineQueryResultCachedGif:1 of -msgid "" -"Represents a link to an animated GIF file stored on the Telegram servers." -" By default, this animated GIF file will be sent by the user with an " -"optional caption. Alternatively, you can use *input_message_content* to " -"send a message with specified content instead of the animation." -msgstr "" - -#: aiogram.types.inline_query_result_cached_gif.InlineQueryResultCachedGif:3 of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultcachedgif" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_gif.InlineQueryResultCachedGif.type:1 -#: of -msgid "Type of the result, must be *gif*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_gif.InlineQueryResultCachedGif.id:1 -#: of -msgid "Unique identifier for this result, 1-64 bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_gif.InlineQueryResultCachedGif.gif_file_id:1 -#: of -msgid "A valid file identifier for the GIF file" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_gif.InlineQueryResultCachedGif.title:1 -#: of -msgid "*Optional*. Title for the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_gif.InlineQueryResultCachedGif.caption:1 -#: of -msgid "" -"*Optional*. Caption of the GIF file to be sent, 0-1024 characters after " -"entities parsing" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_gif.InlineQueryResultCachedGif.parse_mode:1 -#: of -msgid "" -"*Optional*. Mode for parsing entities in the caption. See `formatting " -"options `_ for " -"more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_gif.InlineQueryResultCachedGif.caption_entities:1 -#: of -msgid "" -"*Optional*. List of special entities that appear in the caption, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_gif.InlineQueryResultCachedGif.reply_markup:1 -#: of -msgid "" -"*Optional*. `Inline keyboard `_ attached to the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_gif.InlineQueryResultCachedGif.input_message_content:1 -#: of -msgid "*Optional*. Content of the message to be sent instead of the GIF animation" -msgstr "" - -#~ msgid "" -#~ "*Optional*. `Inline keyboard " -#~ "`_ attached to " -#~ "the message" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_mpeg4_gif.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_mpeg4_gif.po deleted file mode 100644 index 96885946..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_mpeg4_gif.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_cached_mpeg4_gif.rst:3 -msgid "InlineQueryResultCachedMpeg4Gif" -msgstr "" - -#: aiogram.types.inline_query_result_cached_mpeg4_gif.InlineQueryResultCachedMpeg4Gif:1 -#: of -msgid "" -"Represents a link to a video animation (H.264/MPEG-4 AVC video without " -"sound) stored on the Telegram servers. By default, this animated MPEG-4 " -"file will be sent by the user with an optional caption. Alternatively, " -"you can use *input_message_content* to send a message with the specified " -"content instead of the animation." -msgstr "" - -#: aiogram.types.inline_query_result_cached_mpeg4_gif.InlineQueryResultCachedMpeg4Gif:3 -#: of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultcachedmpeg4gif" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_mpeg4_gif.InlineQueryResultCachedMpeg4Gif.type:1 -#: of -msgid "Type of the result, must be *mpeg4_gif*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_mpeg4_gif.InlineQueryResultCachedMpeg4Gif.id:1 -#: of -msgid "Unique identifier for this result, 1-64 bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_mpeg4_gif.InlineQueryResultCachedMpeg4Gif.mpeg4_file_id:1 -#: of -msgid "A valid file identifier for the MPEG4 file" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_mpeg4_gif.InlineQueryResultCachedMpeg4Gif.title:1 -#: of -msgid "*Optional*. Title for the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_mpeg4_gif.InlineQueryResultCachedMpeg4Gif.caption:1 -#: of -msgid "" -"*Optional*. Caption of the MPEG-4 file to be sent, 0-1024 characters " -"after entities parsing" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_mpeg4_gif.InlineQueryResultCachedMpeg4Gif.parse_mode:1 -#: of -msgid "" -"*Optional*. Mode for parsing entities in the caption. See `formatting " -"options `_ for " -"more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_mpeg4_gif.InlineQueryResultCachedMpeg4Gif.caption_entities:1 -#: of -msgid "" -"*Optional*. List of special entities that appear in the caption, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_mpeg4_gif.InlineQueryResultCachedMpeg4Gif.reply_markup:1 -#: of -msgid "" -"*Optional*. `Inline keyboard `_ attached to the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_mpeg4_gif.InlineQueryResultCachedMpeg4Gif.input_message_content:1 -#: of -msgid "" -"*Optional*. Content of the message to be sent instead of the video " -"animation" -msgstr "" - -#~ msgid "" -#~ "*Optional*. `Inline keyboard " -#~ "`_ attached to " -#~ "the message" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_photo.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_photo.po deleted file mode 100644 index 965f8ad7..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_photo.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_cached_photo.rst:3 -msgid "InlineQueryResultCachedPhoto" -msgstr "" - -#: aiogram.types.inline_query_result_cached_photo.InlineQueryResultCachedPhoto:1 -#: of -msgid "" -"Represents a link to a photo stored on the Telegram servers. By default, " -"this photo will be sent by the user with an optional caption. " -"Alternatively, you can use *input_message_content* to send a message with" -" the specified content instead of the photo." -msgstr "" - -#: aiogram.types.inline_query_result_cached_photo.InlineQueryResultCachedPhoto:3 -#: of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultcachedphoto" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_photo.InlineQueryResultCachedPhoto.type:1 -#: of -msgid "Type of the result, must be *photo*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_photo.InlineQueryResultCachedPhoto.id:1 -#: of -msgid "Unique identifier for this result, 1-64 bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_photo.InlineQueryResultCachedPhoto.photo_file_id:1 -#: of -msgid "A valid file identifier of the photo" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_photo.InlineQueryResultCachedPhoto.title:1 -#: of -msgid "*Optional*. Title for the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_photo.InlineQueryResultCachedPhoto.description:1 -#: of -msgid "*Optional*. Short description of the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_photo.InlineQueryResultCachedPhoto.caption:1 -#: of -msgid "" -"*Optional*. Caption of the photo to be sent, 0-1024 characters after " -"entities parsing" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_photo.InlineQueryResultCachedPhoto.parse_mode:1 -#: of -msgid "" -"*Optional*. Mode for parsing entities in the photo caption. See " -"`formatting options `_ for more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_photo.InlineQueryResultCachedPhoto.caption_entities:1 -#: of -msgid "" -"*Optional*. List of special entities that appear in the caption, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_photo.InlineQueryResultCachedPhoto.reply_markup:1 -#: of -msgid "" -"*Optional*. `Inline keyboard `_ attached to the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_photo.InlineQueryResultCachedPhoto.input_message_content:1 -#: of -msgid "*Optional*. Content of the message to be sent instead of the photo" -msgstr "" - -#~ msgid "" -#~ "*Optional*. `Inline keyboard " -#~ "`_ attached to " -#~ "the message" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_sticker.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_sticker.po deleted file mode 100644 index dc79cbca..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_sticker.po +++ /dev/null @@ -1,78 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_cached_sticker.rst:3 -msgid "InlineQueryResultCachedSticker" -msgstr "" - -#: aiogram.types.inline_query_result_cached_sticker.InlineQueryResultCachedSticker:1 -#: of -msgid "" -"Represents a link to a sticker stored on the Telegram servers. By " -"default, this sticker will be sent by the user. Alternatively, you can " -"use *input_message_content* to send a message with the specified content " -"instead of the sticker. **Note:** This will only work in Telegram " -"versions released after 9 April, 2016 for static stickers and after 06 " -"July, 2019 for `animated stickers `_. Older clients will ignore them." -msgstr "" - -#: aiogram.types.inline_query_result_cached_sticker.InlineQueryResultCachedSticker:4 -#: of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultcachedsticker" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_sticker.InlineQueryResultCachedSticker.type:1 -#: of -msgid "Type of the result, must be *sticker*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_sticker.InlineQueryResultCachedSticker.id:1 -#: of -msgid "Unique identifier for this result, 1-64 bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_sticker.InlineQueryResultCachedSticker.sticker_file_id:1 -#: of -msgid "A valid file identifier of the sticker" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_sticker.InlineQueryResultCachedSticker.reply_markup:1 -#: of -msgid "" -"*Optional*. `Inline keyboard `_ attached to the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_sticker.InlineQueryResultCachedSticker.input_message_content:1 -#: of -msgid "*Optional*. Content of the message to be sent instead of the sticker" -msgstr "" - -#~ msgid "" -#~ "*Optional*. `Inline keyboard " -#~ "`_ attached to " -#~ "the message" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_video.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_video.po deleted file mode 100644 index 3836cf30..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_video.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_cached_video.rst:3 -msgid "InlineQueryResultCachedVideo" -msgstr "" - -#: aiogram.types.inline_query_result_cached_video.InlineQueryResultCachedVideo:1 -#: of -msgid "" -"Represents a link to a video file stored on the Telegram servers. By " -"default, this video file will be sent by the user with an optional " -"caption. Alternatively, you can use *input_message_content* to send a " -"message with the specified content instead of the video." -msgstr "" - -#: aiogram.types.inline_query_result_cached_video.InlineQueryResultCachedVideo:3 -#: of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultcachedvideo" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_video.InlineQueryResultCachedVideo.type:1 -#: of -msgid "Type of the result, must be *video*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_video.InlineQueryResultCachedVideo.id:1 -#: of -msgid "Unique identifier for this result, 1-64 bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_video.InlineQueryResultCachedVideo.video_file_id:1 -#: of -msgid "A valid file identifier for the video file" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_video.InlineQueryResultCachedVideo.title:1 -#: of -msgid "Title for the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_video.InlineQueryResultCachedVideo.description:1 -#: of -msgid "*Optional*. Short description of the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_video.InlineQueryResultCachedVideo.caption:1 -#: of -msgid "" -"*Optional*. Caption of the video to be sent, 0-1024 characters after " -"entities parsing" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_video.InlineQueryResultCachedVideo.parse_mode:1 -#: of -msgid "" -"*Optional*. Mode for parsing entities in the video caption. See " -"`formatting options `_ for more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_video.InlineQueryResultCachedVideo.caption_entities:1 -#: of -msgid "" -"*Optional*. List of special entities that appear in the caption, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_video.InlineQueryResultCachedVideo.reply_markup:1 -#: of -msgid "" -"*Optional*. `Inline keyboard `_ attached to the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_video.InlineQueryResultCachedVideo.input_message_content:1 -#: of -msgid "*Optional*. Content of the message to be sent instead of the video" -msgstr "" - -#~ msgid "" -#~ "*Optional*. `Inline keyboard " -#~ "`_ attached to " -#~ "the message" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_voice.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_voice.po deleted file mode 100644 index d2bb9f10..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_cached_voice.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_cached_voice.rst:3 -msgid "InlineQueryResultCachedVoice" -msgstr "" - -#: aiogram.types.inline_query_result_cached_voice.InlineQueryResultCachedVoice:1 -#: of -msgid "" -"Represents a link to a voice message stored on the Telegram servers. By " -"default, this voice message will be sent by the user. Alternatively, you " -"can use *input_message_content* to send a message with the specified " -"content instead of the voice message. **Note:** This will only work in " -"Telegram versions released after 9 April, 2016. Older clients will ignore" -" them." -msgstr "" - -#: aiogram.types.inline_query_result_cached_voice.InlineQueryResultCachedVoice:4 -#: of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultcachedvoice" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_voice.InlineQueryResultCachedVoice.type:1 -#: of -msgid "Type of the result, must be *voice*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_voice.InlineQueryResultCachedVoice.id:1 -#: of -msgid "Unique identifier for this result, 1-64 bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_voice.InlineQueryResultCachedVoice.voice_file_id:1 -#: of -msgid "A valid file identifier for the voice message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_voice.InlineQueryResultCachedVoice.title:1 -#: of -msgid "Voice message title" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_voice.InlineQueryResultCachedVoice.caption:1 -#: of -msgid "*Optional*. Caption, 0-1024 characters after entities parsing" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_voice.InlineQueryResultCachedVoice.parse_mode:1 -#: of -msgid "" -"*Optional*. Mode for parsing entities in the voice message caption. See " -"`formatting options `_ for more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_voice.InlineQueryResultCachedVoice.caption_entities:1 -#: of -msgid "" -"*Optional*. List of special entities that appear in the caption, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_voice.InlineQueryResultCachedVoice.reply_markup:1 -#: of -msgid "" -"*Optional*. `Inline keyboard `_ attached to the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_cached_voice.InlineQueryResultCachedVoice.input_message_content:1 -#: of -msgid "*Optional*. Content of the message to be sent instead of the voice message" -msgstr "" - -#~ msgid "" -#~ "*Optional*. `Inline keyboard " -#~ "`_ attached to " -#~ "the message" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_contact.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_contact.po deleted file mode 100644 index d9620a12..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_contact.po +++ /dev/null @@ -1,110 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_contact.rst:3 -msgid "InlineQueryResultContact" -msgstr "" - -#: aiogram.types.inline_query_result_contact.InlineQueryResultContact:1 of -msgid "" -"Represents a contact with a phone number. By default, this contact will " -"be sent by the user. Alternatively, you can use *input_message_content* " -"to send a message with the specified content instead of the contact. " -"**Note:** This will only work in Telegram versions released after 9 " -"April, 2016. Older clients will ignore them." -msgstr "" - -#: aiogram.types.inline_query_result_contact.InlineQueryResultContact:4 of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultcontact" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_contact.InlineQueryResultContact.type:1 of -msgid "Type of the result, must be *contact*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_contact.InlineQueryResultContact.id:1 of -msgid "Unique identifier for this result, 1-64 Bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_contact.InlineQueryResultContact.phone_number:1 -#: of -msgid "Contact's phone number" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_contact.InlineQueryResultContact.first_name:1 -#: of -msgid "Contact's first name" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_contact.InlineQueryResultContact.last_name:1 -#: of -msgid "*Optional*. Contact's last name" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_contact.InlineQueryResultContact.vcard:1 -#: of -msgid "" -"*Optional*. Additional data about the contact in the form of a `vCard " -"`_, 0-2048 bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_contact.InlineQueryResultContact.reply_markup:1 -#: of -msgid "" -"*Optional*. `Inline keyboard `_ attached to the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_contact.InlineQueryResultContact.input_message_content:1 -#: of -msgid "*Optional*. Content of the message to be sent instead of the contact" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_contact.InlineQueryResultContact.thumb_url:1 -#: of -msgid "*Optional*. Url of the thumbnail for the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_contact.InlineQueryResultContact.thumb_width:1 -#: of -msgid "*Optional*. Thumbnail width" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_contact.InlineQueryResultContact.thumb_height:1 -#: of -msgid "*Optional*. Thumbnail height" -msgstr "" - -#~ msgid "" -#~ "*Optional*. `Inline keyboard " -#~ "`_ attached to " -#~ "the message" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_document.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_document.po deleted file mode 100644 index 9931e7ee..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_document.po +++ /dev/null @@ -1,128 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_document.rst:3 -msgid "InlineQueryResultDocument" -msgstr "" - -#: aiogram.types.inline_query_result_document.InlineQueryResultDocument:1 of -msgid "" -"Represents a link to a file. By default, this file will be sent by the " -"user with an optional caption. Alternatively, you can use " -"*input_message_content* to send a message with the specified content " -"instead of the file. Currently, only **.PDF** and **.ZIP** files can be " -"sent using this method. **Note:** This will only work in Telegram " -"versions released after 9 April, 2016. Older clients will ignore them." -msgstr "" - -#: aiogram.types.inline_query_result_document.InlineQueryResultDocument:4 of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultdocument" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_document.InlineQueryResultDocument.type:1 -#: of -msgid "Type of the result, must be *document*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_document.InlineQueryResultDocument.id:1 of -msgid "Unique identifier for this result, 1-64 bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_document.InlineQueryResultDocument.title:1 -#: of -msgid "Title for the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_document.InlineQueryResultDocument.document_url:1 -#: of -msgid "A valid URL for the file" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_document.InlineQueryResultDocument.mime_type:1 -#: of -msgid "" -"MIME type of the content of the file, either 'application/pdf' or " -"'application/zip'" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_document.InlineQueryResultDocument.caption:1 -#: of -msgid "" -"*Optional*. Caption of the document to be sent, 0-1024 characters after " -"entities parsing" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_document.InlineQueryResultDocument.parse_mode:1 -#: of -msgid "" -"*Optional*. Mode for parsing entities in the document caption. See " -"`formatting options `_ for more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_document.InlineQueryResultDocument.caption_entities:1 -#: of -msgid "" -"*Optional*. List of special entities that appear in the caption, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_document.InlineQueryResultDocument.description:1 -#: of -msgid "*Optional*. Short description of the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_document.InlineQueryResultDocument.reply_markup:1 -#: of -msgid "*Optional*. Inline keyboard attached to the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_document.InlineQueryResultDocument.input_message_content:1 -#: of -msgid "*Optional*. Content of the message to be sent instead of the file" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_document.InlineQueryResultDocument.thumb_url:1 -#: of -msgid "*Optional*. URL of the thumbnail (JPEG only) for the file" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_document.InlineQueryResultDocument.thumb_width:1 -#: of -msgid "*Optional*. Thumbnail width" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_document.InlineQueryResultDocument.thumb_height:1 -#: of -msgid "*Optional*. Thumbnail height" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_game.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_game.po deleted file mode 100644 index a82f430f..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_game.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_game.rst:3 -msgid "InlineQueryResultGame" -msgstr "" - -#: aiogram.types.inline_query_result_game.InlineQueryResultGame:1 of -msgid "" -"Represents a `Game `_. " -"**Note:** This will only work in Telegram versions released after October" -" 1, 2016. Older clients will not display any inline results if a game " -"result is among them." -msgstr "" - -#: aiogram.types.inline_query_result_game.InlineQueryResultGame:4 of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultgame" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_game.InlineQueryResultGame.type:1 of -msgid "Type of the result, must be *game*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_game.InlineQueryResultGame.id:1 of -msgid "Unique identifier for this result, 1-64 bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_game.InlineQueryResultGame.game_short_name:1 -#: of -msgid "Short name of the game" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_game.InlineQueryResultGame.reply_markup:1 -#: of -msgid "" -"*Optional*. `Inline keyboard `_ attached to the message" -msgstr "" - -#~ msgid "" -#~ "*Optional*. `Inline keyboard " -#~ "`_ attached to " -#~ "the message" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_gif.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_gif.po deleted file mode 100644 index 0e298f7f..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_gif.po +++ /dev/null @@ -1,127 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_gif.rst:3 -msgid "InlineQueryResultGif" -msgstr "" - -#: aiogram.types.inline_query_result_gif.InlineQueryResultGif:1 of -msgid "" -"Represents a link to an animated GIF file. By default, this animated GIF " -"file will be sent by the user with optional caption. Alternatively, you " -"can use *input_message_content* to send a message with the specified " -"content instead of the animation." -msgstr "" - -#: aiogram.types.inline_query_result_gif.InlineQueryResultGif:3 of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultgif" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_gif.InlineQueryResultGif.type:1 of -msgid "Type of the result, must be *gif*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_gif.InlineQueryResultGif.id:1 of -msgid "Unique identifier for this result, 1-64 bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_gif.InlineQueryResultGif.gif_url:1 of -msgid "A valid URL for the GIF file. File size must not exceed 1MB" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_gif.InlineQueryResultGif.thumb_url:1 of -msgid "" -"URL of the static (JPEG or GIF) or animated (MPEG4) thumbnail for the " -"result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_gif.InlineQueryResultGif.gif_width:1 of -msgid "*Optional*. Width of the GIF" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_gif.InlineQueryResultGif.gif_height:1 of -msgid "*Optional*. Height of the GIF" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_gif.InlineQueryResultGif.gif_duration:1 of -msgid "*Optional*. Duration of the GIF in seconds" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_gif.InlineQueryResultGif.thumb_mime_type:1 -#: of -msgid "" -"*Optional*. MIME type of the thumbnail, must be one of 'image/jpeg', " -"'image/gif', or 'video/mp4'. Defaults to 'image/jpeg'" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_gif.InlineQueryResultGif.title:1 of -msgid "*Optional*. Title for the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_gif.InlineQueryResultGif.caption:1 of -msgid "" -"*Optional*. Caption of the GIF file to be sent, 0-1024 characters after " -"entities parsing" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_gif.InlineQueryResultGif.parse_mode:1 of -msgid "" -"*Optional*. Mode for parsing entities in the caption. See `formatting " -"options `_ for " -"more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_gif.InlineQueryResultGif.caption_entities:1 -#: of -msgid "" -"*Optional*. List of special entities that appear in the caption, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_gif.InlineQueryResultGif.reply_markup:1 of -msgid "" -"*Optional*. `Inline keyboard `_ attached to the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_gif.InlineQueryResultGif.input_message_content:1 -#: of -msgid "*Optional*. Content of the message to be sent instead of the GIF animation" -msgstr "" - -#~ msgid "" -#~ "*Optional*. `Inline keyboard " -#~ "`_ attached to " -#~ "the message" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_location.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_location.po deleted file mode 100644 index aee2b822..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_location.po +++ /dev/null @@ -1,136 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_location.rst:3 -msgid "InlineQueryResultLocation" -msgstr "" - -#: aiogram.types.inline_query_result_location.InlineQueryResultLocation:1 of -msgid "" -"Represents a location on a map. By default, the location will be sent by " -"the user. Alternatively, you can use *input_message_content* to send a " -"message with the specified content instead of the location. **Note:** " -"This will only work in Telegram versions released after 9 April, 2016. " -"Older clients will ignore them." -msgstr "" - -#: aiogram.types.inline_query_result_location.InlineQueryResultLocation:4 of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultlocation" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_location.InlineQueryResultLocation.type:1 -#: of -msgid "Type of the result, must be *location*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_location.InlineQueryResultLocation.id:1 of -msgid "Unique identifier for this result, 1-64 Bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_location.InlineQueryResultLocation.latitude:1 -#: of -msgid "Location latitude in degrees" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_location.InlineQueryResultLocation.longitude:1 -#: of -msgid "Location longitude in degrees" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_location.InlineQueryResultLocation.title:1 -#: of -msgid "Location title" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_location.InlineQueryResultLocation.horizontal_accuracy:1 -#: of -msgid "" -"*Optional*. The radius of uncertainty for the location, measured in " -"meters; 0-1500" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_location.InlineQueryResultLocation.live_period:1 -#: of -msgid "" -"*Optional*. Period in seconds for which the location can be updated, " -"should be between 60 and 86400." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_location.InlineQueryResultLocation.heading:1 -#: of -msgid "" -"*Optional*. For live locations, a direction in which the user is moving, " -"in degrees. Must be between 1 and 360 if specified." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_location.InlineQueryResultLocation.proximity_alert_radius:1 -#: of -msgid "" -"*Optional*. For live locations, a maximum distance for proximity alerts " -"about approaching another chat member, in meters. Must be between 1 and " -"100000 if specified." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_location.InlineQueryResultLocation.reply_markup:1 -#: of -msgid "" -"*Optional*. `Inline keyboard `_ attached to the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_location.InlineQueryResultLocation.input_message_content:1 -#: of -msgid "*Optional*. Content of the message to be sent instead of the location" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_location.InlineQueryResultLocation.thumb_url:1 -#: of -msgid "*Optional*. Url of the thumbnail for the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_location.InlineQueryResultLocation.thumb_width:1 -#: of -msgid "*Optional*. Thumbnail width" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_location.InlineQueryResultLocation.thumb_height:1 -#: of -msgid "*Optional*. Thumbnail height" -msgstr "" - -#~ msgid "" -#~ "*Optional*. `Inline keyboard " -#~ "`_ attached to " -#~ "the message" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_mpeg4_gif.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_mpeg4_gif.po deleted file mode 100644 index 56c4da50..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_mpeg4_gif.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_mpeg4_gif.rst:3 -msgid "InlineQueryResultMpeg4Gif" -msgstr "" - -#: aiogram.types.inline_query_result_mpeg4_gif.InlineQueryResultMpeg4Gif:1 of -msgid "" -"Represents a link to a video animation (H.264/MPEG-4 AVC video without " -"sound). By default, this animated MPEG-4 file will be sent by the user " -"with optional caption. Alternatively, you can use *input_message_content*" -" to send a message with the specified content instead of the animation." -msgstr "" - -#: aiogram.types.inline_query_result_mpeg4_gif.InlineQueryResultMpeg4Gif:3 of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultmpeg4gif" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_mpeg4_gif.InlineQueryResultMpeg4Gif.type:1 -#: of -msgid "Type of the result, must be *mpeg4_gif*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_mpeg4_gif.InlineQueryResultMpeg4Gif.id:1 -#: of -msgid "Unique identifier for this result, 1-64 bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_mpeg4_gif.InlineQueryResultMpeg4Gif.mpeg4_url:1 -#: of -msgid "A valid URL for the MPEG4 file. File size must not exceed 1MB" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_mpeg4_gif.InlineQueryResultMpeg4Gif.thumb_url:1 -#: of -msgid "" -"URL of the static (JPEG or GIF) or animated (MPEG4) thumbnail for the " -"result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_mpeg4_gif.InlineQueryResultMpeg4Gif.mpeg4_width:1 -#: of -msgid "*Optional*. Video width" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_mpeg4_gif.InlineQueryResultMpeg4Gif.mpeg4_height:1 -#: of -msgid "*Optional*. Video height" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_mpeg4_gif.InlineQueryResultMpeg4Gif.mpeg4_duration:1 -#: of -msgid "*Optional*. Video duration in seconds" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_mpeg4_gif.InlineQueryResultMpeg4Gif.thumb_mime_type:1 -#: of -msgid "" -"*Optional*. MIME type of the thumbnail, must be one of 'image/jpeg', " -"'image/gif', or 'video/mp4'. Defaults to 'image/jpeg'" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_mpeg4_gif.InlineQueryResultMpeg4Gif.title:1 -#: of -msgid "*Optional*. Title for the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_mpeg4_gif.InlineQueryResultMpeg4Gif.caption:1 -#: of -msgid "" -"*Optional*. Caption of the MPEG-4 file to be sent, 0-1024 characters " -"after entities parsing" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_mpeg4_gif.InlineQueryResultMpeg4Gif.parse_mode:1 -#: of -msgid "" -"*Optional*. Mode for parsing entities in the caption. See `formatting " -"options `_ for " -"more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_mpeg4_gif.InlineQueryResultMpeg4Gif.caption_entities:1 -#: of -msgid "" -"*Optional*. List of special entities that appear in the caption, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_mpeg4_gif.InlineQueryResultMpeg4Gif.reply_markup:1 -#: of -msgid "" -"*Optional*. `Inline keyboard `_ attached to the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_mpeg4_gif.InlineQueryResultMpeg4Gif.input_message_content:1 -#: of -msgid "" -"*Optional*. Content of the message to be sent instead of the video " -"animation" -msgstr "" - -#~ msgid "" -#~ "*Optional*. `Inline keyboard " -#~ "`_ attached to " -#~ "the message" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_photo.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_photo.po deleted file mode 100644 index 6d189167..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_photo.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_photo.rst:3 -msgid "InlineQueryResultPhoto" -msgstr "" - -#: aiogram.types.inline_query_result_photo.InlineQueryResultPhoto:1 of -msgid "" -"Represents a link to a photo. By default, this photo will be sent by the " -"user with optional caption. Alternatively, you can use " -"*input_message_content* to send a message with the specified content " -"instead of the photo." -msgstr "" - -#: aiogram.types.inline_query_result_photo.InlineQueryResultPhoto:3 of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultphoto" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_photo.InlineQueryResultPhoto.type:1 of -msgid "Type of the result, must be *photo*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_photo.InlineQueryResultPhoto.id:1 of -msgid "Unique identifier for this result, 1-64 bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_photo.InlineQueryResultPhoto.photo_url:1 -#: of -msgid "" -"A valid URL of the photo. Photo must be in **JPEG** format. Photo size " -"must not exceed 5MB" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_photo.InlineQueryResultPhoto.thumb_url:1 -#: of -msgid "URL of the thumbnail for the photo" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_photo.InlineQueryResultPhoto.photo_width:1 -#: of -msgid "*Optional*. Width of the photo" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_photo.InlineQueryResultPhoto.photo_height:1 -#: of -msgid "*Optional*. Height of the photo" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_photo.InlineQueryResultPhoto.title:1 of -msgid "*Optional*. Title for the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_photo.InlineQueryResultPhoto.description:1 -#: of -msgid "*Optional*. Short description of the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_photo.InlineQueryResultPhoto.caption:1 of -msgid "" -"*Optional*. Caption of the photo to be sent, 0-1024 characters after " -"entities parsing" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_photo.InlineQueryResultPhoto.parse_mode:1 -#: of -msgid "" -"*Optional*. Mode for parsing entities in the photo caption. See " -"`formatting options `_ for more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_photo.InlineQueryResultPhoto.caption_entities:1 -#: of -msgid "" -"*Optional*. List of special entities that appear in the caption, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_photo.InlineQueryResultPhoto.reply_markup:1 -#: of -msgid "" -"*Optional*. `Inline keyboard `_ attached to the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_photo.InlineQueryResultPhoto.input_message_content:1 -#: of -msgid "*Optional*. Content of the message to be sent instead of the photo" -msgstr "" - -#~ msgid "" -#~ "*Optional*. `Inline keyboard " -#~ "`_ attached to " -#~ "the message" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_venue.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_venue.po deleted file mode 100644 index 2867f687..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_venue.po +++ /dev/null @@ -1,134 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_venue.rst:3 -msgid "InlineQueryResultVenue" -msgstr "" - -#: aiogram.types.inline_query_result_venue.InlineQueryResultVenue:1 of -msgid "" -"Represents a venue. By default, the venue will be sent by the user. " -"Alternatively, you can use *input_message_content* to send a message with" -" the specified content instead of the venue. **Note:** This will only " -"work in Telegram versions released after 9 April, 2016. Older clients " -"will ignore them." -msgstr "" - -#: aiogram.types.inline_query_result_venue.InlineQueryResultVenue:4 of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultvenue" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_venue.InlineQueryResultVenue.type:1 of -msgid "Type of the result, must be *venue*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_venue.InlineQueryResultVenue.id:1 of -msgid "Unique identifier for this result, 1-64 Bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_venue.InlineQueryResultVenue.latitude:1 of -msgid "Latitude of the venue location in degrees" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_venue.InlineQueryResultVenue.longitude:1 -#: of -msgid "Longitude of the venue location in degrees" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_venue.InlineQueryResultVenue.title:1 of -msgid "Title of the venue" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_venue.InlineQueryResultVenue.address:1 of -msgid "Address of the venue" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_venue.InlineQueryResultVenue.foursquare_id:1 -#: of -msgid "*Optional*. Foursquare identifier of the venue if known" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_venue.InlineQueryResultVenue.foursquare_type:1 -#: of -msgid "" -"*Optional*. Foursquare type of the venue, if known. (For example, " -"'arts_entertainment/default', 'arts_entertainment/aquarium' or " -"'food/icecream'.)" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_venue.InlineQueryResultVenue.google_place_id:1 -#: of -msgid "*Optional*. Google Places identifier of the venue" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_venue.InlineQueryResultVenue.google_place_type:1 -#: of -msgid "" -"*Optional*. Google Places type of the venue. (See `supported types " -"`_.)" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_venue.InlineQueryResultVenue.reply_markup:1 -#: of -msgid "" -"*Optional*. `Inline keyboard `_ attached to the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_venue.InlineQueryResultVenue.input_message_content:1 -#: of -msgid "*Optional*. Content of the message to be sent instead of the venue" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_venue.InlineQueryResultVenue.thumb_url:1 -#: of -msgid "*Optional*. Url of the thumbnail for the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_venue.InlineQueryResultVenue.thumb_width:1 -#: of -msgid "*Optional*. Thumbnail width" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_venue.InlineQueryResultVenue.thumb_height:1 -#: of -msgid "*Optional*. Thumbnail height" -msgstr "" - -#~ msgid "" -#~ "*Optional*. `Inline keyboard " -#~ "`_ attached to " -#~ "the message" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_video.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_video.po deleted file mode 100644 index 379ba6ed..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_video.po +++ /dev/null @@ -1,145 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_video.rst:3 -msgid "InlineQueryResultVideo" -msgstr "" - -#: aiogram.types.inline_query_result_video.InlineQueryResultVideo:1 of -msgid "" -"Represents a link to a page containing an embedded video player or a " -"video file. By default, this video file will be sent by the user with an " -"optional caption. Alternatively, you can use *input_message_content* to " -"send a message with the specified content instead of the video." -msgstr "" - -#: aiogram.types.inline_query_result_video.InlineQueryResultVideo:3 of -msgid "" -"If an InlineQueryResultVideo message contains an embedded video (e.g., " -"YouTube), you **must** replace its content using *input_message_content*." -msgstr "" - -#: aiogram.types.inline_query_result_video.InlineQueryResultVideo:5 of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultvideo" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_video.InlineQueryResultVideo.type:1 of -msgid "Type of the result, must be *video*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_video.InlineQueryResultVideo.id:1 of -msgid "Unique identifier for this result, 1-64 bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_video.InlineQueryResultVideo.video_url:1 -#: of -msgid "A valid URL for the embedded video player or video file" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_video.InlineQueryResultVideo.mime_type:1 -#: of -msgid "MIME type of the content of the video URL, 'text/html' or 'video/mp4'" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_video.InlineQueryResultVideo.thumb_url:1 -#: of -msgid "URL of the thumbnail (JPEG only) for the video" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_video.InlineQueryResultVideo.title:1 of -msgid "Title for the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_video.InlineQueryResultVideo.caption:1 of -msgid "" -"*Optional*. Caption of the video to be sent, 0-1024 characters after " -"entities parsing" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_video.InlineQueryResultVideo.parse_mode:1 -#: of -msgid "" -"*Optional*. Mode for parsing entities in the video caption. See " -"`formatting options `_ for more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_video.InlineQueryResultVideo.caption_entities:1 -#: of -msgid "" -"*Optional*. List of special entities that appear in the caption, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_video.InlineQueryResultVideo.video_width:1 -#: of -msgid "*Optional*. Video width" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_video.InlineQueryResultVideo.video_height:1 -#: of -msgid "*Optional*. Video height" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_video.InlineQueryResultVideo.video_duration:1 -#: of -msgid "*Optional*. Video duration in seconds" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_video.InlineQueryResultVideo.description:1 -#: of -msgid "*Optional*. Short description of the result" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_video.InlineQueryResultVideo.reply_markup:1 -#: of -msgid "" -"*Optional*. `Inline keyboard `_ attached to the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_video.InlineQueryResultVideo.input_message_content:1 -#: of -msgid "" -"*Optional*. Content of the message to be sent instead of the video. This " -"field is **required** if InlineQueryResultVideo is used to send an HTML-" -"page as a result (e.g., a YouTube video)." -msgstr "" - -#~ msgid "" -#~ "*Optional*. `Inline keyboard " -#~ "`_ attached to " -#~ "the message" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_voice.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_voice.po deleted file mode 100644 index 4f87318b..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_result_voice.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_result_voice.rst:3 -msgid "InlineQueryResultVoice" -msgstr "" - -#: aiogram.types.inline_query_result_voice.InlineQueryResultVoice:1 of -msgid "" -"Represents a link to a voice recording in an .OGG container encoded with " -"OPUS. By default, this voice recording will be sent by the user. " -"Alternatively, you can use *input_message_content* to send a message with" -" the specified content instead of the the voice message. **Note:** This " -"will only work in Telegram versions released after 9 April, 2016. Older " -"clients will ignore them." -msgstr "" - -#: aiogram.types.inline_query_result_voice.InlineQueryResultVoice:4 of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultvoice" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_voice.InlineQueryResultVoice.type:1 of -msgid "Type of the result, must be *voice*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_voice.InlineQueryResultVoice.id:1 of -msgid "Unique identifier for this result, 1-64 bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_voice.InlineQueryResultVoice.voice_url:1 -#: of -msgid "A valid URL for the voice recording" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_voice.InlineQueryResultVoice.title:1 of -msgid "Recording title" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_voice.InlineQueryResultVoice.caption:1 of -msgid "*Optional*. Caption, 0-1024 characters after entities parsing" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_voice.InlineQueryResultVoice.parse_mode:1 -#: of -msgid "" -"*Optional*. Mode for parsing entities in the voice message caption. See " -"`formatting options `_ for more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_voice.InlineQueryResultVoice.caption_entities:1 -#: of -msgid "" -"*Optional*. List of special entities that appear in the caption, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_voice.InlineQueryResultVoice.voice_duration:1 -#: of -msgid "*Optional*. Recording duration in seconds" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_voice.InlineQueryResultVoice.reply_markup:1 -#: of -msgid "" -"*Optional*. `Inline keyboard `_ attached to the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_result_voice.InlineQueryResultVoice.input_message_content:1 -#: of -msgid "" -"*Optional*. Content of the message to be sent instead of the voice " -"recording" -msgstr "" - -#~ msgid "" -#~ "*Optional*. `Inline keyboard " -#~ "`_ attached to " -#~ "the message" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/inline_query_results_button.po b/docs/locale/en/LC_MESSAGES/api/types/inline_query_results_button.po deleted file mode 100644 index 3dcf4f0f..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/inline_query_results_button.po +++ /dev/null @@ -1,59 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/inline_query_results_button.rst:3 -msgid "InlineQueryResultsButton" -msgstr "" - -#: aiogram.types.inline_query_results_button.InlineQueryResultsButton:1 of -msgid "" -"This object represents a button to be shown above inline query results. " -"You **must** use exactly one of the optional fields." -msgstr "" - -#: aiogram.types.inline_query_results_button.InlineQueryResultsButton:3 of -msgid "Source: https://core.telegram.org/bots/api#inlinequeryresultsbutton" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_results_button.InlineQueryResultsButton.text:1 of -msgid "Label text on the button" -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_results_button.InlineQueryResultsButton.web_app:1 -#: of -msgid "" -"*Optional*. Description of the `Web App " -"`_ that will be launched when the" -" user presses the button. The Web App will be able to switch back to the " -"inline mode using the method `switchInlineQuery " -"`_ inside " -"the Web App." -msgstr "" - -#: ../../docstring -#: aiogram.types.inline_query_results_button.InlineQueryResultsButton.start_parameter:1 -#: of -msgid "" -"*Optional*. `Deep-linking `_ parameter for the /start message sent to the bot when a user " -"presses the button. 1-64 characters, only :code:`A-Z`, :code:`a-z`, " -":code:`0-9`, :code:`_` and :code:`-` are allowed." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/input_contact_message_content.po b/docs/locale/en/LC_MESSAGES/api/types/input_contact_message_content.po deleted file mode 100644 index 16c4ac2b..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/input_contact_message_content.po +++ /dev/null @@ -1,59 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/input_contact_message_content.rst:3 -msgid "InputContactMessageContent" -msgstr "" - -#: aiogram.types.input_contact_message_content.InputContactMessageContent:1 of -msgid "" -"Represents the `content " -"`_ of a contact " -"message to be sent as the result of an inline query." -msgstr "" - -#: aiogram.types.input_contact_message_content.InputContactMessageContent:3 of -msgid "Source: https://core.telegram.org/bots/api#inputcontactmessagecontent" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_contact_message_content.InputContactMessageContent.phone_number:1 -#: of -msgid "Contact's phone number" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_contact_message_content.InputContactMessageContent.first_name:1 -#: of -msgid "Contact's first name" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_contact_message_content.InputContactMessageContent.last_name:1 -#: of -msgid "*Optional*. Contact's last name" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_contact_message_content.InputContactMessageContent.vcard:1 -#: of -msgid "" -"*Optional*. Additional data about the contact in the form of a `vCard " -"`_, 0-2048 bytes" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/input_file.po b/docs/locale/en/LC_MESSAGES/api/types/input_file.po deleted file mode 100644 index 908e1a50..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/input_file.po +++ /dev/null @@ -1,63 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/input_file.rst:3 -msgid "InputFile" -msgstr "" - -#: aiogram.types.input_file.InputFile:1 of -msgid "" -"This object represents the contents of a file to be uploaded. Must be " -"posted using multipart/form-data in the usual way that files are uploaded" -" via the browser." -msgstr "" - -#: aiogram.types.input_file.InputFile:3 of -msgid "Source: https://core.telegram.org/bots/api#inputfile" -msgstr "" - -#: aiogram.types.input_file.BufferedInputFile.from_file:1 of -msgid "Create buffer from file" -msgstr "" - -#: aiogram.types.input_file.BufferedInputFile.from_file of -msgid "Parameters" -msgstr "" - -#: aiogram.types.input_file.BufferedInputFile.from_file:3 of -msgid "Path to file" -msgstr "" - -#: aiogram.types.input_file.BufferedInputFile.from_file:4 of -msgid "" -"Filename to be propagated to telegram. By default, will be parsed from " -"path" -msgstr "" - -#: aiogram.types.input_file.BufferedInputFile.from_file:6 of -msgid "Uploading chunk size" -msgstr "" - -#: aiogram.types.input_file.BufferedInputFile.from_file of -msgid "Returns" -msgstr "" - -#: aiogram.types.input_file.BufferedInputFile.from_file:7 of -msgid "instance of :obj:`BufferedInputFile`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/input_invoice_message_content.po b/docs/locale/en/LC_MESSAGES/api/types/input_invoice_message_content.po deleted file mode 100644 index cab32cc6..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/input_invoice_message_content.po +++ /dev/null @@ -1,192 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/input_invoice_message_content.rst:3 -msgid "InputInvoiceMessageContent" -msgstr "" - -#: aiogram.types.input_invoice_message_content.InputInvoiceMessageContent:1 of -msgid "" -"Represents the `content " -"`_ of an invoice " -"message to be sent as the result of an inline query." -msgstr "" - -#: aiogram.types.input_invoice_message_content.InputInvoiceMessageContent:3 of -msgid "Source: https://core.telegram.org/bots/api#inputinvoicemessagecontent" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_invoice_message_content.InputInvoiceMessageContent.title:1 -#: of -msgid "Product name, 1-32 characters" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_invoice_message_content.InputInvoiceMessageContent.description:1 -#: of -msgid "Product description, 1-255 characters" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_invoice_message_content.InputInvoiceMessageContent.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.types.input_invoice_message_content.InputInvoiceMessageContent.provider_token:1 -#: of -msgid "" -"Payment provider token, obtained via `@BotFather " -"`_" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_invoice_message_content.InputInvoiceMessageContent.currency:1 -#: of -msgid "" -"Three-letter ISO 4217 currency code, see `more on currencies " -"`_" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_invoice_message_content.InputInvoiceMessageContent.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.types.input_invoice_message_content.InputInvoiceMessageContent.max_tip_amount:1 -#: of -msgid "" -"*Optional*. 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 " -"`_, 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.types.input_invoice_message_content.InputInvoiceMessageContent.suggested_tip_amounts:1 -#: of -msgid "" -"*Optional*. A JSON-serialized array of suggested amounts of tip 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.types.input_invoice_message_content.InputInvoiceMessageContent.provider_data:1 -#: of -msgid "" -"*Optional*. A JSON-serialized object for data about the invoice, which " -"will be shared with the payment provider. A detailed description of the " -"required fields should be provided by the payment provider." -msgstr "" - -#: ../../docstring -#: aiogram.types.input_invoice_message_content.InputInvoiceMessageContent.photo_url:1 -#: of -msgid "" -"*Optional*. 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.types.input_invoice_message_content.InputInvoiceMessageContent.photo_size:1 -#: of -msgid "*Optional*. Photo size in bytes" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_invoice_message_content.InputInvoiceMessageContent.photo_width:1 -#: of -msgid "*Optional*. Photo width" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_invoice_message_content.InputInvoiceMessageContent.photo_height:1 -#: of -msgid "*Optional*. Photo height" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_invoice_message_content.InputInvoiceMessageContent.need_name:1 -#: of -msgid "" -"*Optional*. Pass :code:`True` if you require the user's full name to " -"complete the order" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_invoice_message_content.InputInvoiceMessageContent.need_phone_number:1 -#: of -msgid "" -"*Optional*. Pass :code:`True` if you require the user's phone number to " -"complete the order" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_invoice_message_content.InputInvoiceMessageContent.need_email:1 -#: of -msgid "" -"*Optional*. Pass :code:`True` if you require the user's email address to " -"complete the order" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_invoice_message_content.InputInvoiceMessageContent.need_shipping_address:1 -#: of -msgid "" -"*Optional*. Pass :code:`True` if you require the user's shipping address " -"to complete the order" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_invoice_message_content.InputInvoiceMessageContent.send_phone_number_to_provider:1 -#: of -msgid "" -"*Optional*. Pass :code:`True` if the user's phone number should be sent " -"to provider" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_invoice_message_content.InputInvoiceMessageContent.send_email_to_provider:1 -#: of -msgid "" -"*Optional*. Pass :code:`True` if the user's email address should be sent " -"to provider" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_invoice_message_content.InputInvoiceMessageContent.is_flexible:1 -#: of -msgid "" -"*Optional*. Pass :code:`True` if the final price depends on the shipping " -"method" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/input_location_message_content.po b/docs/locale/en/LC_MESSAGES/api/types/input_location_message_content.po deleted file mode 100644 index 63866b93..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/input_location_message_content.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/input_location_message_content.rst:3 -msgid "InputLocationMessageContent" -msgstr "" - -#: aiogram.types.input_location_message_content.InputLocationMessageContent:1 -#: of -msgid "" -"Represents the `content " -"`_ of a location " -"message to be sent as the result of an inline query." -msgstr "" - -#: aiogram.types.input_location_message_content.InputLocationMessageContent:3 -#: of -msgid "Source: https://core.telegram.org/bots/api#inputlocationmessagecontent" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_location_message_content.InputLocationMessageContent.latitude:1 -#: of -msgid "Latitude of the location in degrees" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_location_message_content.InputLocationMessageContent.longitude:1 -#: of -msgid "Longitude of the location in degrees" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_location_message_content.InputLocationMessageContent.horizontal_accuracy:1 -#: of -msgid "" -"*Optional*. The radius of uncertainty for the location, measured in " -"meters; 0-1500" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_location_message_content.InputLocationMessageContent.live_period:1 -#: of -msgid "" -"*Optional*. Period in seconds for which the location can be updated, " -"should be between 60 and 86400." -msgstr "" - -#: ../../docstring -#: aiogram.types.input_location_message_content.InputLocationMessageContent.heading:1 -#: of -msgid "" -"*Optional*. For live locations, a direction in which the user is moving, " -"in degrees. Must be between 1 and 360 if specified." -msgstr "" - -#: ../../docstring -#: aiogram.types.input_location_message_content.InputLocationMessageContent.proximity_alert_radius:1 -#: of -msgid "" -"*Optional*. For live locations, a maximum distance for proximity alerts " -"about approaching another chat member, in meters. Must be between 1 and " -"100000 if specified." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/input_media.po b/docs/locale/en/LC_MESSAGES/api/types/input_media.po deleted file mode 100644 index b6740e36..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/input_media.po +++ /dev/null @@ -1,52 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/input_media.rst:3 -msgid "InputMedia" -msgstr "" - -#: aiogram.types.input_media.InputMedia:1 of -msgid "" -"This object represents the content of a media message to be sent. It " -"should be one of" -msgstr "" - -#: aiogram.types.input_media.InputMedia:3 of -msgid ":class:`aiogram.types.input_media_animation.InputMediaAnimation`" -msgstr "" - -#: aiogram.types.input_media.InputMedia:4 of -msgid ":class:`aiogram.types.input_media_document.InputMediaDocument`" -msgstr "" - -#: aiogram.types.input_media.InputMedia:5 of -msgid ":class:`aiogram.types.input_media_audio.InputMediaAudio`" -msgstr "" - -#: aiogram.types.input_media.InputMedia:6 of -msgid ":class:`aiogram.types.input_media_photo.InputMediaPhoto`" -msgstr "" - -#: aiogram.types.input_media.InputMedia:7 of -msgid ":class:`aiogram.types.input_media_video.InputMediaVideo`" -msgstr "" - -#: aiogram.types.input_media.InputMedia:9 of -msgid "Source: https://core.telegram.org/bots/api#inputmedia" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/input_media_animation.po b/docs/locale/en/LC_MESSAGES/api/types/input_media_animation.po deleted file mode 100644 index e19c352d..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/input_media_animation.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/input_media_animation.rst:3 -msgid "InputMediaAnimation" -msgstr "" - -#: aiogram.types.input_media_animation.InputMediaAnimation:1 of -msgid "" -"Represents an animation file (GIF or H.264/MPEG-4 AVC video without " -"sound) to be sent." -msgstr "" - -#: aiogram.types.input_media_animation.InputMediaAnimation:3 of -msgid "Source: https://core.telegram.org/bots/api#inputmediaanimation" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_animation.InputMediaAnimation.type:1 of -msgid "Type of the result, must be *animation*" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_animation.InputMediaAnimation.media:1 of -msgid "" -"File to send. Pass a file_id to send a file that exists on the Telegram " -"servers (recommended), pass an HTTP URL for Telegram to get a file from " -"the Internet, or pass 'attach://' to upload a new one " -"using multipart/form-data under name. :ref:`More " -"information on Sending Files » `" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_animation.InputMediaAnimation.thumb:1 of -msgid "" -"*Optional*. 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://' if the " -"thumbnail was uploaded using multipart/form-data under " -". :ref:`More information on Sending Files » `" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_animation.InputMediaAnimation.caption:1 of -msgid "" -"*Optional*. Caption of the animation to be sent, 0-1024 characters after " -"entities parsing" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_animation.InputMediaAnimation.parse_mode:1 of -msgid "" -"*Optional*. Mode for parsing entities in the animation caption. See " -"`formatting options `_ for more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_animation.InputMediaAnimation.caption_entities:1 -#: of -msgid "" -"*Optional*. List of special entities that appear in the caption, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_animation.InputMediaAnimation.width:1 of -msgid "*Optional*. Animation width" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_animation.InputMediaAnimation.height:1 of -msgid "*Optional*. Animation height" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_animation.InputMediaAnimation.duration:1 of -msgid "*Optional*. Animation duration in seconds" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_animation.InputMediaAnimation.has_spoiler:1 of -msgid "" -"*Optional*. Pass :code:`True` if the animation needs to be covered with a" -" spoiler animation" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/input_media_audio.po b/docs/locale/en/LC_MESSAGES/api/types/input_media_audio.po deleted file mode 100644 index 7273e1ac..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/input_media_audio.po +++ /dev/null @@ -1,91 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/input_media_audio.rst:3 -msgid "InputMediaAudio" -msgstr "" - -#: aiogram.types.input_media_audio.InputMediaAudio:1 of -msgid "Represents an audio file to be treated as music to be sent." -msgstr "" - -#: aiogram.types.input_media_audio.InputMediaAudio:3 of -msgid "Source: https://core.telegram.org/bots/api#inputmediaaudio" -msgstr "" - -#: ../../docstring aiogram.types.input_media_audio.InputMediaAudio.type:1 of -msgid "Type of the result, must be *audio*" -msgstr "" - -#: ../../docstring aiogram.types.input_media_audio.InputMediaAudio.media:1 of -msgid "" -"File to send. Pass a file_id to send a file that exists on the Telegram " -"servers (recommended), pass an HTTP URL for Telegram to get a file from " -"the Internet, or pass 'attach://' to upload a new one " -"using multipart/form-data under name. :ref:`More " -"information on Sending Files » `" -msgstr "" - -#: ../../docstring aiogram.types.input_media_audio.InputMediaAudio.thumb:1 of -msgid "" -"*Optional*. 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://' if the " -"thumbnail was uploaded using multipart/form-data under " -". :ref:`More information on Sending Files » `" -msgstr "" - -#: ../../docstring aiogram.types.input_media_audio.InputMediaAudio.caption:1 of -msgid "" -"*Optional*. Caption of the audio to be sent, 0-1024 characters after " -"entities parsing" -msgstr "" - -#: ../../docstring aiogram.types.input_media_audio.InputMediaAudio.parse_mode:1 -#: of -msgid "" -"*Optional*. Mode for parsing entities in the audio caption. See " -"`formatting options `_ for more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_audio.InputMediaAudio.caption_entities:1 of -msgid "" -"*Optional*. List of special entities that appear in the caption, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring aiogram.types.input_media_audio.InputMediaAudio.duration:1 -#: of -msgid "*Optional*. Duration of the audio in seconds" -msgstr "" - -#: ../../docstring aiogram.types.input_media_audio.InputMediaAudio.performer:1 -#: of -msgid "*Optional*. Performer of the audio" -msgstr "" - -#: ../../docstring aiogram.types.input_media_audio.InputMediaAudio.title:1 of -msgid "*Optional*. Title of the audio" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/input_media_document.po b/docs/locale/en/LC_MESSAGES/api/types/input_media_document.po deleted file mode 100644 index 5ea2a3d9..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/input_media_document.po +++ /dev/null @@ -1,90 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/input_media_document.rst:3 -msgid "InputMediaDocument" -msgstr "" - -#: aiogram.types.input_media_document.InputMediaDocument:1 of -msgid "Represents a general file to be sent." -msgstr "" - -#: aiogram.types.input_media_document.InputMediaDocument:3 of -msgid "Source: https://core.telegram.org/bots/api#inputmediadocument" -msgstr "" - -#: ../../docstring aiogram.types.input_media_document.InputMediaDocument.type:1 -#: of -msgid "Type of the result, must be *document*" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_document.InputMediaDocument.media:1 of -msgid "" -"File to send. Pass a file_id to send a file that exists on the Telegram " -"servers (recommended), pass an HTTP URL for Telegram to get a file from " -"the Internet, or pass 'attach://' to upload a new one " -"using multipart/form-data under name. :ref:`More " -"information on Sending Files » `" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_document.InputMediaDocument.thumb:1 of -msgid "" -"*Optional*. 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://' if the " -"thumbnail was uploaded using multipart/form-data under " -". :ref:`More information on Sending Files » `" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_document.InputMediaDocument.caption:1 of -msgid "" -"*Optional*. Caption of the document to be sent, 0-1024 characters after " -"entities parsing" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_document.InputMediaDocument.parse_mode:1 of -msgid "" -"*Optional*. Mode for parsing entities in the document caption. See " -"`formatting options `_ for more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_document.InputMediaDocument.caption_entities:1 of -msgid "" -"*Optional*. List of special entities that appear in the caption, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_document.InputMediaDocument.disable_content_type_detection:1 -#: of -msgid "" -"*Optional*. Disables automatic server-side content type detection for " -"files uploaded using multipart/form-data. Always :code:`True`, if the " -"document is sent as part of an album." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/input_media_photo.po b/docs/locale/en/LC_MESSAGES/api/types/input_media_photo.po deleted file mode 100644 index 10a634e9..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/input_media_photo.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/input_media_photo.rst:3 -msgid "InputMediaPhoto" -msgstr "" - -#: aiogram.types.input_media_photo.InputMediaPhoto:1 of -msgid "Represents a photo to be sent." -msgstr "" - -#: aiogram.types.input_media_photo.InputMediaPhoto:3 of -msgid "Source: https://core.telegram.org/bots/api#inputmediaphoto" -msgstr "" - -#: ../../docstring aiogram.types.input_media_photo.InputMediaPhoto.type:1 of -msgid "Type of the result, must be *photo*" -msgstr "" - -#: ../../docstring aiogram.types.input_media_photo.InputMediaPhoto.media:1 of -msgid "" -"File to send. Pass a file_id to send a file that exists on the Telegram " -"servers (recommended), pass an HTTP URL for Telegram to get a file from " -"the Internet, or pass 'attach://' to upload a new one " -"using multipart/form-data under name. :ref:`More " -"information on Sending Files » `" -msgstr "" - -#: ../../docstring aiogram.types.input_media_photo.InputMediaPhoto.caption:1 of -msgid "" -"*Optional*. Caption of the photo to be sent, 0-1024 characters after " -"entities parsing" -msgstr "" - -#: ../../docstring aiogram.types.input_media_photo.InputMediaPhoto.parse_mode:1 -#: of -msgid "" -"*Optional*. Mode for parsing entities in the photo caption. See " -"`formatting options `_ for more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_photo.InputMediaPhoto.caption_entities:1 of -msgid "" -"*Optional*. List of special entities that appear in the caption, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_photo.InputMediaPhoto.has_spoiler:1 of -msgid "" -"*Optional*. Pass :code:`True` if the photo needs to be covered with a " -"spoiler animation" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/input_media_video.po b/docs/locale/en/LC_MESSAGES/api/types/input_media_video.po deleted file mode 100644 index eef2e134..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/input_media_video.po +++ /dev/null @@ -1,104 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/input_media_video.rst:3 -msgid "InputMediaVideo" -msgstr "" - -#: aiogram.types.input_media_video.InputMediaVideo:1 of -msgid "Represents a video to be sent." -msgstr "" - -#: aiogram.types.input_media_video.InputMediaVideo:3 of -msgid "Source: https://core.telegram.org/bots/api#inputmediavideo" -msgstr "" - -#: ../../docstring aiogram.types.input_media_video.InputMediaVideo.type:1 of -msgid "Type of the result, must be *video*" -msgstr "" - -#: ../../docstring aiogram.types.input_media_video.InputMediaVideo.media:1 of -msgid "" -"File to send. Pass a file_id to send a file that exists on the Telegram " -"servers (recommended), pass an HTTP URL for Telegram to get a file from " -"the Internet, or pass 'attach://' to upload a new one " -"using multipart/form-data under name. :ref:`More " -"information on Sending Files » `" -msgstr "" - -#: ../../docstring aiogram.types.input_media_video.InputMediaVideo.thumb:1 of -msgid "" -"*Optional*. 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://' if the " -"thumbnail was uploaded using multipart/form-data under " -". :ref:`More information on Sending Files » `" -msgstr "" - -#: ../../docstring aiogram.types.input_media_video.InputMediaVideo.caption:1 of -msgid "" -"*Optional*. Caption of the video to be sent, 0-1024 characters after " -"entities parsing" -msgstr "" - -#: ../../docstring aiogram.types.input_media_video.InputMediaVideo.parse_mode:1 -#: of -msgid "" -"*Optional*. Mode for parsing entities in the video caption. See " -"`formatting options `_ for more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_video.InputMediaVideo.caption_entities:1 of -msgid "" -"*Optional*. List of special entities that appear in the caption, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring aiogram.types.input_media_video.InputMediaVideo.width:1 of -msgid "*Optional*. Video width" -msgstr "" - -#: ../../docstring aiogram.types.input_media_video.InputMediaVideo.height:1 of -msgid "*Optional*. Video height" -msgstr "" - -#: ../../docstring aiogram.types.input_media_video.InputMediaVideo.duration:1 -#: of -msgid "*Optional*. Video duration in seconds" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_video.InputMediaVideo.supports_streaming:1 of -msgid "" -"*Optional*. Pass :code:`True` if the uploaded video is suitable for " -"streaming" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_media_video.InputMediaVideo.has_spoiler:1 of -msgid "" -"*Optional*. Pass :code:`True` if the video needs to be covered with a " -"spoiler animation" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/input_message_content.po b/docs/locale/en/LC_MESSAGES/api/types/input_message_content.po deleted file mode 100644 index cb7a6f5f..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/input_message_content.po +++ /dev/null @@ -1,53 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/input_message_content.rst:3 -msgid "InputMessageContent" -msgstr "" - -#: aiogram.types.input_message_content.InputMessageContent:1 of -msgid "" -"This object represents the content of a message to be sent as a result of" -" an inline query. Telegram clients currently support the following 5 " -"types:" -msgstr "" - -#: aiogram.types.input_message_content.InputMessageContent:3 of -msgid ":class:`aiogram.types.input_text_message_content.InputTextMessageContent`" -msgstr "" - -#: aiogram.types.input_message_content.InputMessageContent:4 of -msgid ":class:`aiogram.types.input_location_message_content.InputLocationMessageContent`" -msgstr "" - -#: aiogram.types.input_message_content.InputMessageContent:5 of -msgid ":class:`aiogram.types.input_venue_message_content.InputVenueMessageContent`" -msgstr "" - -#: aiogram.types.input_message_content.InputMessageContent:6 of -msgid ":class:`aiogram.types.input_contact_message_content.InputContactMessageContent`" -msgstr "" - -#: aiogram.types.input_message_content.InputMessageContent:7 of -msgid ":class:`aiogram.types.input_invoice_message_content.InputInvoiceMessageContent`" -msgstr "" - -#: aiogram.types.input_message_content.InputMessageContent:9 of -msgid "Source: https://core.telegram.org/bots/api#inputmessagecontent" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/input_sticker.po b/docs/locale/en/LC_MESSAGES/api/types/input_sticker.po deleted file mode 100644 index fb2433c4..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/input_sticker.po +++ /dev/null @@ -1,72 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/input_sticker.rst:3 -msgid "InputSticker" -msgstr "" - -#: aiogram.types.input_sticker.InputSticker:1 of -msgid "This object describes a sticker to be added to a sticker set." -msgstr "" - -#: aiogram.types.input_sticker.InputSticker:3 of -msgid "Source: https://core.telegram.org/bots/api#inputsticker" -msgstr "" - -#: ../../docstring aiogram.types.input_sticker.InputSticker.sticker:1 of -msgid "" -"The added sticker. 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, upload a new one using " -"multipart/form-data, or pass 'attach://' to upload a " -"new one using multipart/form-data under name. Animated" -" and video stickers can't be uploaded via HTTP URL. :ref:`More " -"information on Sending Files » `" -msgstr "" - -#: ../../docstring aiogram.types.input_sticker.InputSticker.emoji_list:1 of -msgid "List of 1-20 emoji associated with the sticker" -msgstr "" - -#: ../../docstring aiogram.types.input_sticker.InputSticker.mask_position:1 of -msgid "" -"*Optional*. Position where the mask should be placed on faces. For 'mask'" -" stickers only." -msgstr "" - -#: ../../docstring aiogram.types.input_sticker.InputSticker.keywords:1 of -msgid "" -"*Optional*. List of 0-20 search keywords for the sticker with total " -"length of up to 64 characters. For 'regular' and 'custom_emoji' stickers " -"only." -msgstr "" - -#~ msgid "" -#~ "The added sticker. 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. " -#~ "Animated and video stickers can't be " -#~ "uploaded via HTTP URL. :ref:`More " -#~ "information on Sending Files » " -#~ "`" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/input_text_message_content.po b/docs/locale/en/LC_MESSAGES/api/types/input_text_message_content.po deleted file mode 100644 index 071e0c64..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/input_text_message_content.po +++ /dev/null @@ -1,62 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/input_text_message_content.rst:3 -msgid "InputTextMessageContent" -msgstr "" - -#: aiogram.types.input_text_message_content.InputTextMessageContent:1 of -msgid "" -"Represents the `content " -"`_ of a text " -"message to be sent as the result of an inline query." -msgstr "" - -#: aiogram.types.input_text_message_content.InputTextMessageContent:3 of -msgid "Source: https://core.telegram.org/bots/api#inputtextmessagecontent" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_text_message_content.InputTextMessageContent.message_text:1 -#: of -msgid "Text of the message to be sent, 1-4096 characters" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_text_message_content.InputTextMessageContent.parse_mode:1 -#: of -msgid "" -"*Optional*. Mode for parsing entities in the message text. See " -"`formatting options `_ for more details." -msgstr "" - -#: ../../docstring -#: aiogram.types.input_text_message_content.InputTextMessageContent.entities:1 -#: of -msgid "" -"*Optional*. List of special entities that appear in message text, which " -"can be specified instead of *parse_mode*" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_text_message_content.InputTextMessageContent.disable_web_page_preview:1 -#: of -msgid "*Optional*. Disables link previews for links in the sent message" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/input_venue_message_content.po b/docs/locale/en/LC_MESSAGES/api/types/input_venue_message_content.po deleted file mode 100644 index 631d4d2b..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/input_venue_message_content.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/input_venue_message_content.rst:3 -msgid "InputVenueMessageContent" -msgstr "" - -#: aiogram.types.input_venue_message_content.InputVenueMessageContent:1 of -msgid "" -"Represents the `content " -"`_ of a venue " -"message to be sent as the result of an inline query." -msgstr "" - -#: aiogram.types.input_venue_message_content.InputVenueMessageContent:3 of -msgid "Source: https://core.telegram.org/bots/api#inputvenuemessagecontent" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_venue_message_content.InputVenueMessageContent.latitude:1 -#: of -msgid "Latitude of the venue in degrees" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_venue_message_content.InputVenueMessageContent.longitude:1 -#: of -msgid "Longitude of the venue in degrees" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_venue_message_content.InputVenueMessageContent.title:1 -#: of -msgid "Name of the venue" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_venue_message_content.InputVenueMessageContent.address:1 -#: of -msgid "Address of the venue" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_venue_message_content.InputVenueMessageContent.foursquare_id:1 -#: of -msgid "*Optional*. Foursquare identifier of the venue, if known" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_venue_message_content.InputVenueMessageContent.foursquare_type:1 -#: of -msgid "" -"*Optional*. Foursquare type of the venue, if known. (For example, " -"'arts_entertainment/default', 'arts_entertainment/aquarium' or " -"'food/icecream'.)" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_venue_message_content.InputVenueMessageContent.google_place_id:1 -#: of -msgid "*Optional*. Google Places identifier of the venue" -msgstr "" - -#: ../../docstring -#: aiogram.types.input_venue_message_content.InputVenueMessageContent.google_place_type:1 -#: of -msgid "" -"*Optional*. Google Places type of the venue. (See `supported types " -"`_.)" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/invoice.po b/docs/locale/en/LC_MESSAGES/api/types/invoice.po deleted file mode 100644 index 85c30c9e..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/invoice.po +++ /dev/null @@ -1,60 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/invoice.rst:3 -msgid "Invoice" -msgstr "" - -#: aiogram.types.invoice.Invoice:1 of -msgid "This object contains basic information about an invoice." -msgstr "" - -#: aiogram.types.invoice.Invoice:3 of -msgid "Source: https://core.telegram.org/bots/api#invoice" -msgstr "" - -#: ../../docstring aiogram.types.invoice.Invoice.title:1 of -msgid "Product name" -msgstr "" - -#: ../../docstring aiogram.types.invoice.Invoice.description:1 of -msgid "Product description" -msgstr "" - -#: ../../docstring aiogram.types.invoice.Invoice.start_parameter:1 of -msgid "" -"Unique bot deep-linking parameter that can be used to generate this " -"invoice" -msgstr "" - -#: ../../docstring aiogram.types.invoice.Invoice.currency:1 of -msgid "" -"Three-letter ISO 4217 `currency `_ code" -msgstr "" - -#: ../../docstring aiogram.types.invoice.Invoice.total_amount:1 of -msgid "" -"Total price in the *smallest units* of the currency (integer, **not** " -"float/double). For example, for a price of :code:`US$ 1.45` pass " -":code:`amount = 145`. See the *exp* parameter in `currencies.json " -"`_, it shows the" -" number of digits past the decimal point for each currency (2 for the " -"majority of currencies)." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/keyboard_button.po b/docs/locale/en/LC_MESSAGES/api/types/keyboard_button.po deleted file mode 100644 index a2578af9..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/keyboard_button.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/keyboard_button.rst:3 -msgid "KeyboardButton" -msgstr "" - -#: aiogram.types.keyboard_button.KeyboardButton:1 of -msgid "" -"This object represents one button of the reply keyboard. For simple text " -"buttons, *String* can be used instead of this object to specify the " -"button text. The optional fields *web_app*, *request_user*, " -"*request_chat*, *request_contact*, *request_location*, and *request_poll*" -" are mutually exclusive. **Note:** *request_contact* and " -"*request_location* options will only work in Telegram versions released " -"after 9 April, 2016. Older clients will display *unsupported message*." -msgstr "" - -#: aiogram.types.keyboard_button.KeyboardButton:4 of -msgid "" -"**Note:** *request_poll* option will only work in Telegram versions " -"released after 23 January, 2020. Older clients will display *unsupported " -"message*." -msgstr "" - -#: aiogram.types.keyboard_button.KeyboardButton:6 of -msgid "" -"**Note:** *web_app* option will only work in Telegram versions released " -"after 16 April, 2022. Older clients will display *unsupported message*." -msgstr "" - -#: aiogram.types.keyboard_button.KeyboardButton:8 of -msgid "" -"**Note:** *request_user* and *request_chat* options will only work in " -"Telegram versions released after 3 February, 2023. Older clients will " -"display *unsupported message*." -msgstr "" - -#: aiogram.types.keyboard_button.KeyboardButton:10 of -msgid "Source: https://core.telegram.org/bots/api#keyboardbutton" -msgstr "" - -#: ../../docstring aiogram.types.keyboard_button.KeyboardButton.text:1 of -msgid "" -"Text of the button. If none of the optional fields are used, it will be " -"sent as a message when the button is pressed" -msgstr "" - -#: ../../docstring aiogram.types.keyboard_button.KeyboardButton.request_user:1 -#: of -msgid "" -"*Optional.* If specified, pressing the button will open a list of " -"suitable users. Tapping on any user will send their identifier to the bot" -" in a 'user_shared' service message. Available in private chats only." -msgstr "" - -#: ../../docstring aiogram.types.keyboard_button.KeyboardButton.request_chat:1 -#: of -msgid "" -"*Optional.* If specified, pressing the button will open a list of " -"suitable chats. Tapping on a chat will send its identifier to the bot in " -"a 'chat_shared' service message. Available in private chats only." -msgstr "" - -#: ../../docstring -#: aiogram.types.keyboard_button.KeyboardButton.request_contact:1 of -msgid "" -"*Optional*. If :code:`True`, the user's phone number will be sent as a " -"contact when the button is pressed. Available in private chats only." -msgstr "" - -#: ../../docstring -#: aiogram.types.keyboard_button.KeyboardButton.request_location:1 of -msgid "" -"*Optional*. If :code:`True`, the user's current location will be sent " -"when the button is pressed. Available in private chats only." -msgstr "" - -#: ../../docstring aiogram.types.keyboard_button.KeyboardButton.request_poll:1 -#: of -msgid "" -"*Optional*. If specified, the user will be asked to create a poll and " -"send it to the bot when the button is pressed. Available in private chats" -" only." -msgstr "" - -#: ../../docstring aiogram.types.keyboard_button.KeyboardButton.web_app:1 of -msgid "" -"*Optional*. If specified, the described `Web App " -"`_ will be launched when the " -"button is pressed. The Web App will be able to send a 'web_app_data' " -"service message. Available in private chats only." -msgstr "" - -#~ msgid "" -#~ "This object represents one button of " -#~ "the reply keyboard. For simple text " -#~ "buttons *String* can be used instead " -#~ "of this object to specify text of" -#~ " the button. Optional fields *web_app*, " -#~ "*request_contact*, *request_location*, and " -#~ "*request_poll* are mutually exclusive. " -#~ "**Note:** *request_contact* and *request_location*" -#~ " options will only work in Telegram" -#~ " versions released after 9 April, " -#~ "2016. Older clients will display " -#~ "*unsupported message*." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/keyboard_button_poll_type.po b/docs/locale/en/LC_MESSAGES/api/types/keyboard_button_poll_type.po deleted file mode 100644 index 32adde2e..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/keyboard_button_poll_type.po +++ /dev/null @@ -1,41 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/keyboard_button_poll_type.rst:3 -msgid "KeyboardButtonPollType" -msgstr "" - -#: aiogram.types.keyboard_button_poll_type.KeyboardButtonPollType:1 of -msgid "" -"This object represents type of a poll, which is allowed to be created and" -" sent when the corresponding button is pressed." -msgstr "" - -#: aiogram.types.keyboard_button_poll_type.KeyboardButtonPollType:3 of -msgid "Source: https://core.telegram.org/bots/api#keyboardbuttonpolltype" -msgstr "" - -#: ../../docstring -#: aiogram.types.keyboard_button_poll_type.KeyboardButtonPollType.type:1 of -msgid "" -"*Optional*. If *quiz* is passed, the user will be allowed to create only " -"polls in the quiz mode. If *regular* is passed, only regular polls will " -"be allowed. Otherwise, the user will be allowed to create a poll of any " -"type." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/keyboard_button_request_chat.po b/docs/locale/en/LC_MESSAGES/api/types/keyboard_button_request_chat.po deleted file mode 100644 index 2912a3f0..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/keyboard_button_request_chat.po +++ /dev/null @@ -1,113 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/keyboard_button_request_chat.rst:3 -msgid "KeyboardButtonRequestChat" -msgstr "" - -#: aiogram.types.keyboard_button_request_chat.KeyboardButtonRequestChat:1 of -msgid "" -"This object defines the criteria used to request a suitable chat. The " -"identifier of the selected chat will be shared with the bot when the " -"corresponding button is pressed. `More about requesting chats » " -"`_" -msgstr "" - -#: aiogram.types.keyboard_button_request_chat.KeyboardButtonRequestChat:3 of -msgid "Source: https://core.telegram.org/bots/api#keyboardbuttonrequestchat" -msgstr "" - -#: ../../docstring -#: aiogram.types.keyboard_button_request_chat.KeyboardButtonRequestChat.request_id:1 -#: of -msgid "" -"Signed 32-bit identifier of the request, which will be received back in " -"the :class:`aiogram.types.chat_shared.ChatShared` object. Must be unique " -"within the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.keyboard_button_request_chat.KeyboardButtonRequestChat.chat_is_channel:1 -#: of -msgid "" -"Pass :code:`True` to request a channel chat, pass :code:`False` to " -"request a group or a supergroup chat." -msgstr "" - -#: ../../docstring -#: aiogram.types.keyboard_button_request_chat.KeyboardButtonRequestChat.chat_is_forum:1 -#: of -msgid "" -"*Optional*. Pass :code:`True` to request a forum supergroup, pass " -":code:`False` to request a non-forum chat. If not specified, no " -"additional restrictions are applied." -msgstr "" - -#: ../../docstring -#: aiogram.types.keyboard_button_request_chat.KeyboardButtonRequestChat.chat_has_username:1 -#: of -msgid "" -"*Optional*. Pass :code:`True` to request a supergroup or a channel with a" -" username, pass :code:`False` to request a chat without a username. If " -"not specified, no additional restrictions are applied." -msgstr "" - -#: ../../docstring -#: aiogram.types.keyboard_button_request_chat.KeyboardButtonRequestChat.chat_is_created:1 -#: of -msgid "" -"*Optional*. Pass :code:`True` to request a chat owned by the user. " -"Otherwise, no additional restrictions are applied." -msgstr "" - -#: ../../docstring -#: aiogram.types.keyboard_button_request_chat.KeyboardButtonRequestChat.user_administrator_rights:1 -#: of -msgid "" -"*Optional*. A JSON-serialized object listing the required administrator " -"rights of the user in the chat. The rights must be a superset of " -"*bot_administrator_rights*. If not specified, no additional restrictions " -"are applied." -msgstr "" - -#: ../../docstring -#: aiogram.types.keyboard_button_request_chat.KeyboardButtonRequestChat.bot_administrator_rights:1 -#: of -msgid "" -"*Optional*. A JSON-serialized object listing the required administrator " -"rights of the bot in the chat. The rights must be a subset of " -"*user_administrator_rights*. If not specified, no additional restrictions" -" are applied." -msgstr "" - -#: ../../docstring -#: aiogram.types.keyboard_button_request_chat.KeyboardButtonRequestChat.bot_is_member:1 -#: of -msgid "" -"*Optional*. Pass :code:`True` to request a chat with the bot as a member." -" Otherwise, no additional restrictions are applied." -msgstr "" - -#~ msgid "" -#~ "This object defines the criteria used" -#~ " to request a suitable chat. The " -#~ "identifier of the selected chat will " -#~ "be shared with the bot when the" -#~ " corresponding button is pressed." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/keyboard_button_request_user.po b/docs/locale/en/LC_MESSAGES/api/types/keyboard_button_request_user.po deleted file mode 100644 index 1e0bca68..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/keyboard_button_request_user.po +++ /dev/null @@ -1,69 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/keyboard_button_request_user.rst:3 -msgid "KeyboardButtonRequestUser" -msgstr "" - -#: aiogram.types.keyboard_button_request_user.KeyboardButtonRequestUser:1 of -msgid "" -"This object defines the criteria used to request a suitable user. The " -"identifier of the selected user will be shared with the bot when the " -"corresponding button is pressed. `More about requesting users » " -"`_" -msgstr "" - -#: aiogram.types.keyboard_button_request_user.KeyboardButtonRequestUser:3 of -msgid "Source: https://core.telegram.org/bots/api#keyboardbuttonrequestuser" -msgstr "" - -#: ../../docstring -#: aiogram.types.keyboard_button_request_user.KeyboardButtonRequestUser.request_id:1 -#: of -msgid "" -"Signed 32-bit identifier of the request, which will be received back in " -"the :class:`aiogram.types.user_shared.UserShared` object. Must be unique " -"within the message" -msgstr "" - -#: ../../docstring -#: aiogram.types.keyboard_button_request_user.KeyboardButtonRequestUser.user_is_bot:1 -#: of -msgid "" -"*Optional*. Pass :code:`True` to request a bot, pass :code:`False` to " -"request a regular user. If not specified, no additional restrictions are " -"applied." -msgstr "" - -#: ../../docstring -#: aiogram.types.keyboard_button_request_user.KeyboardButtonRequestUser.user_is_premium:1 -#: of -msgid "" -"*Optional*. Pass :code:`True` to request a premium user, pass " -":code:`False` to request a non-premium user. If not specified, no " -"additional restrictions are applied." -msgstr "" - -#~ msgid "" -#~ "This object defines the criteria used" -#~ " to request a suitable user. The " -#~ "identifier of the selected user will " -#~ "be shared with the bot when the" -#~ " corresponding button is pressed." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/labeled_price.po b/docs/locale/en/LC_MESSAGES/api/types/labeled_price.po deleted file mode 100644 index 6b3f1406..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/labeled_price.po +++ /dev/null @@ -1,46 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/labeled_price.rst:3 -msgid "LabeledPrice" -msgstr "" - -#: aiogram.types.labeled_price.LabeledPrice:1 of -msgid "This object represents a portion of the price for goods or services." -msgstr "" - -#: aiogram.types.labeled_price.LabeledPrice:3 of -msgid "Source: https://core.telegram.org/bots/api#labeledprice" -msgstr "" - -#: ../../docstring aiogram.types.labeled_price.LabeledPrice.label:1 of -msgid "Portion label" -msgstr "" - -#: ../../docstring aiogram.types.labeled_price.LabeledPrice.amount:1 of -msgid "" -"Price of the product in the *smallest units* of the `currency " -"`_ " -"(integer, **not** float/double). For example, for a price of :code:`US$ " -"1.45` pass :code:`amount = 145`. See the *exp* parameter in " -"`currencies.json " -"`_, it shows the" -" number of digits past the decimal point for each currency (2 for the " -"majority of currencies)." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/location.po b/docs/locale/en/LC_MESSAGES/api/types/location.po deleted file mode 100644 index c3826725..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/location.po +++ /dev/null @@ -1,62 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/location.rst:3 -msgid "Location" -msgstr "" - -#: aiogram.types.location.Location:1 of -msgid "This object represents a point on the map." -msgstr "" - -#: aiogram.types.location.Location:3 of -msgid "Source: https://core.telegram.org/bots/api#location" -msgstr "" - -#: ../../docstring aiogram.types.location.Location.longitude:1 of -msgid "Longitude as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.location.Location.latitude:1 of -msgid "Latitude as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.location.Location.horizontal_accuracy:1 of -msgid "" -"*Optional*. The radius of uncertainty for the location, measured in " -"meters; 0-1500" -msgstr "" - -#: ../../docstring aiogram.types.location.Location.live_period:1 of -msgid "" -"*Optional*. Time relative to the message sending date, during which the " -"location can be updated; in seconds. For active live locations only." -msgstr "" - -#: ../../docstring aiogram.types.location.Location.heading:1 of -msgid "" -"*Optional*. The direction in which user is moving, in degrees; 1-360. For" -" active live locations only." -msgstr "" - -#: ../../docstring aiogram.types.location.Location.proximity_alert_radius:1 of -msgid "" -"*Optional*. The maximum distance for proximity alerts about approaching " -"another chat member, in meters. For sent live locations only." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/login_url.po b/docs/locale/en/LC_MESSAGES/api/types/login_url.po deleted file mode 100644 index 1aca7150..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/login_url.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/login_url.rst:3 -msgid "LoginUrl" -msgstr "" - -#: aiogram.types.login_url.LoginUrl:1 of -msgid "" -"This object represents a parameter of the inline keyboard button used to " -"automatically authorize a user. Serves as a great replacement for the " -"`Telegram Login Widget `_ when " -"the user is coming from Telegram. All the user needs to do is tap/click a" -" button and confirm that they want to log in: Telegram apps support these" -" buttons as of `version 5.7 `_." -msgstr "" - -#: aiogram.types.login_url.LoginUrl:4 of -msgid "Sample bot: `@discussbot `_" -msgstr "" - -#: aiogram.types.login_url.LoginUrl:6 of -msgid "Source: https://core.telegram.org/bots/api#loginurl" -msgstr "" - -#: ../../docstring aiogram.types.login_url.LoginUrl.url:1 of -msgid "" -"An HTTPS URL to be opened with user authorization data added to the query" -" string when the button is pressed. If the user refuses to provide " -"authorization data, the original URL without information about the user " -"will be opened. The data added is the same as described in `Receiving " -"authorization data `_." -msgstr "" - -#: ../../docstring aiogram.types.login_url.LoginUrl.forward_text:1 of -msgid "*Optional*. New text of the button in forwarded messages." -msgstr "" - -#: ../../docstring aiogram.types.login_url.LoginUrl.bot_username:1 of -msgid "" -"*Optional*. Username of a bot, which will be used for user authorization." -" See `Setting up a bot `_ for more details. If not specified, the current bot's " -"username will be assumed. The *url*'s domain must be the same as the " -"domain linked with the bot. See `Linking your domain to the bot " -"`_ for more details." -msgstr "" - -#: ../../docstring aiogram.types.login_url.LoginUrl.request_write_access:1 of -msgid "" -"*Optional*. Pass :code:`True` to request the permission for your bot to " -"send messages to the user." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/mask_position.po b/docs/locale/en/LC_MESSAGES/api/types/mask_position.po deleted file mode 100644 index 5ab98120..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/mask_position.po +++ /dev/null @@ -1,56 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/mask_position.rst:3 -msgid "MaskPosition" -msgstr "" - -#: aiogram.types.mask_position.MaskPosition:1 of -msgid "" -"This object describes the position on faces where a mask should be placed" -" by default." -msgstr "" - -#: aiogram.types.mask_position.MaskPosition:3 of -msgid "Source: https://core.telegram.org/bots/api#maskposition" -msgstr "" - -#: ../../docstring aiogram.types.mask_position.MaskPosition.point:1 of -msgid "" -"The part of the face relative to which the mask should be placed. One of " -"'forehead', 'eyes', 'mouth', or 'chin'." -msgstr "" - -#: ../../docstring aiogram.types.mask_position.MaskPosition.x_shift:1 of -msgid "" -"Shift by X-axis measured in widths of the mask scaled to the face size, " -"from left to right. For example, choosing -1.0 will place mask just to " -"the left of the default mask position." -msgstr "" - -#: ../../docstring aiogram.types.mask_position.MaskPosition.y_shift:1 of -msgid "" -"Shift by Y-axis measured in heights of the mask scaled to the face size, " -"from top to bottom. For example, 1.0 will place the mask just below the " -"default mask position." -msgstr "" - -#: ../../docstring aiogram.types.mask_position.MaskPosition.scale:1 of -msgid "Mask scaling coefficient. For example, 2.0 means double size." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/menu_button.po b/docs/locale/en/LC_MESSAGES/api/types/menu_button.po deleted file mode 100644 index ad862f22..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/menu_button.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/menu_button.rst:3 -msgid "MenuButton" -msgstr "" - -#: aiogram.types.menu_button.MenuButton:1 of -msgid "" -"This object describes the bot's menu button in a private chat. It should " -"be one of" -msgstr "" - -#: aiogram.types.menu_button.MenuButton:3 of -msgid ":class:`aiogram.types.menu_button_commands.MenuButtonCommands`" -msgstr "" - -#: aiogram.types.menu_button.MenuButton:4 of -msgid ":class:`aiogram.types.menu_button_web_app.MenuButtonWebApp`" -msgstr "" - -#: aiogram.types.menu_button.MenuButton:5 of -msgid ":class:`aiogram.types.menu_button_default.MenuButtonDefault`" -msgstr "" - -#: aiogram.types.menu_button.MenuButton:7 of -msgid "" -"If a menu button other than " -":class:`aiogram.types.menu_button_default.MenuButtonDefault` is set for a" -" private chat, then it is applied in the chat. Otherwise the default menu" -" button is applied. By default, the menu button opens the list of bot " -"commands." -msgstr "" - -#: aiogram.types.menu_button.MenuButton:9 of -msgid "Source: https://core.telegram.org/bots/api#menubutton" -msgstr "" - -#: ../../docstring aiogram.types.menu_button.MenuButton.type:1 of -msgid "Type of the button" -msgstr "" - -#: ../../docstring aiogram.types.menu_button.MenuButton.text:1 of -msgid "*Optional*. Text on the button" -msgstr "" - -#: ../../docstring aiogram.types.menu_button.MenuButton.web_app:1 of -msgid "" -"*Optional*. Description of the Web App that will be launched when the " -"user presses the button. The Web App will be able to send an arbitrary " -"message on behalf of the user using the method " -":class:`aiogram.methods.answer_web_app_query.AnswerWebAppQuery`." -msgstr "" - -#~ msgid "..." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/menu_button_commands.po b/docs/locale/en/LC_MESSAGES/api/types/menu_button_commands.po deleted file mode 100644 index 6e0e12cc..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/menu_button_commands.po +++ /dev/null @@ -1,35 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/menu_button_commands.rst:3 -msgid "MenuButtonCommands" -msgstr "" - -#: aiogram.types.menu_button_commands.MenuButtonCommands:1 of -msgid "Represents a menu button, which opens the bot's list of commands." -msgstr "" - -#: aiogram.types.menu_button_commands.MenuButtonCommands:3 of -msgid "Source: https://core.telegram.org/bots/api#menubuttoncommands" -msgstr "" - -#: ../../docstring aiogram.types.menu_button_commands.MenuButtonCommands.type:1 -#: of -msgid "Type of the button, must be *commands*" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/menu_button_default.po b/docs/locale/en/LC_MESSAGES/api/types/menu_button_default.po deleted file mode 100644 index 93e8b337..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/menu_button_default.po +++ /dev/null @@ -1,35 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/menu_button_default.rst:3 -msgid "MenuButtonDefault" -msgstr "" - -#: aiogram.types.menu_button_default.MenuButtonDefault:1 of -msgid "Describes that no specific value for the menu button was set." -msgstr "" - -#: aiogram.types.menu_button_default.MenuButtonDefault:3 of -msgid "Source: https://core.telegram.org/bots/api#menubuttondefault" -msgstr "" - -#: ../../docstring aiogram.types.menu_button_default.MenuButtonDefault.type:1 -#: of -msgid "Type of the button, must be *default*" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/menu_button_web_app.po b/docs/locale/en/LC_MESSAGES/api/types/menu_button_web_app.po deleted file mode 100644 index 21b08c57..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/menu_button_web_app.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/menu_button_web_app.rst:3 -msgid "MenuButtonWebApp" -msgstr "" - -#: aiogram.types.menu_button_web_app.MenuButtonWebApp:1 of -msgid "" -"Represents a menu button, which launches a `Web App " -"`_." -msgstr "" - -#: aiogram.types.menu_button_web_app.MenuButtonWebApp:3 of -msgid "Source: https://core.telegram.org/bots/api#menubuttonwebapp" -msgstr "" - -#: ../../docstring aiogram.types.menu_button_web_app.MenuButtonWebApp.type:1 of -msgid "Type of the button, must be *web_app*" -msgstr "" - -#: ../../docstring aiogram.types.menu_button_web_app.MenuButtonWebApp.text:1 of -msgid "Text on the button" -msgstr "" - -#: ../../docstring aiogram.types.menu_button_web_app.MenuButtonWebApp.web_app:1 -#: of -msgid "" -"Description of the Web App that will be launched when the user presses " -"the button. The Web App will be able to send an arbitrary message on " -"behalf of the user using the method " -":class:`aiogram.methods.answer_web_app_query.AnswerWebAppQuery`." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/message.po b/docs/locale/en/LC_MESSAGES/api/types/message.po deleted file mode 100644 index 8c20ee62..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/message.po +++ /dev/null @@ -1,2591 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 2022. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aiogram \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-26 23:17+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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/types/message.rst:3 -msgid "Message" -msgstr "" - -#: aiogram.types.message.Message:1 of -msgid "This object represents a message." -msgstr "" - -#: aiogram.types.message.Message:3 of -msgid "Source: https://core.telegram.org/bots/api#message" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.message_id:1 of -msgid "Unique message identifier inside this chat" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.date:1 of -msgid "Date the message was sent in Unix time" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.chat:1 of -msgid "Conversation the message belongs to" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.message_thread_id:1 of -msgid "" -"*Optional*. Unique identifier of a message thread to which the message " -"belongs; for supergroups only" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.from_user:1 of -msgid "" -"*Optional*. Sender of the message; empty for messages sent to channels. " -"For backward compatibility, the field contains a fake sender user in non-" -"channel chats, if the message was sent on behalf of a chat." -msgstr "" - -#: ../../docstring aiogram.types.message.Message.sender_chat:1 of -msgid "" -"*Optional*. Sender of the message, sent on behalf of a chat. For example," -" the channel itself for channel posts, the supergroup itself for messages" -" from anonymous group administrators, the linked channel for messages " -"automatically forwarded to the discussion group. For backward " -"compatibility, the field *from* contains a fake sender user in non-" -"channel chats, if the message was sent on behalf of a chat." -msgstr "" - -#: ../../docstring aiogram.types.message.Message.forward_from:1 of -msgid "*Optional*. For forwarded messages, sender of the original message" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.forward_from_chat:1 of -msgid "" -"*Optional*. For messages forwarded from channels or from anonymous " -"administrators, information about the original sender chat" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.forward_from_message_id:1 of -msgid "" -"*Optional*. For messages forwarded from channels, identifier of the " -"original message in the channel" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.forward_signature:1 of -msgid "" -"*Optional*. For forwarded messages that were originally sent in channels " -"or by an anonymous chat administrator, signature of the message sender if" -" present" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.forward_sender_name:1 of -msgid "" -"*Optional*. Sender's name for messages forwarded from users who disallow " -"adding a link to their account in forwarded messages" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.forward_date:1 of -msgid "" -"*Optional*. For forwarded messages, date the original message was sent in" -" Unix time" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.is_topic_message:1 of -msgid "*Optional*. :code:`True`, if the message is sent to a forum topic" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.is_automatic_forward:1 of -msgid "" -"*Optional*. :code:`True`, if the message is a channel post that was " -"automatically forwarded to the connected discussion group" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.reply_to_message:1 of -msgid "" -"*Optional*. For replies, the original message. Note that the Message " -"object in this field will not contain further *reply_to_message* fields " -"even if it itself is a reply." -msgstr "" - -#: ../../docstring aiogram.types.message.Message.via_bot:1 of -msgid "*Optional*. Bot through which the message was sent" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.edit_date:1 of -msgid "*Optional*. Date the message was last edited in Unix time" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.has_protected_content:1 of -msgid "*Optional*. :code:`True`, if the message can't be forwarded" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.media_group_id:1 of -msgid "" -"*Optional*. The unique identifier of a media message group this message " -"belongs to" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.author_signature:1 of -msgid "" -"*Optional*. Signature of the post author for messages in channels, or the" -" custom title of an anonymous group administrator" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.text:1 of -msgid "*Optional*. For text messages, the actual UTF-8 text of the message" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.entities:1 of -msgid "" -"*Optional*. For text messages, special entities like usernames, URLs, bot" -" commands, etc. that appear in the text" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.animation:1 of -msgid "" -"*Optional*. Message is an animation, information about the animation. For" -" backward compatibility, when this field is set, the *document* field " -"will also be set" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.audio:1 of -msgid "*Optional*. Message is an audio file, information about the file" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.document:1 of -msgid "*Optional*. Message is a general file, information about the file" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.photo:1 of -msgid "*Optional*. Message is a photo, available sizes of the photo" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.sticker:1 of -msgid "*Optional*. Message is a sticker, information about the sticker" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.story:1 of -msgid "*Optional*. Message is a forwarded story" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.video:1 of -msgid "*Optional*. Message is a video, information about the video" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.video_note:1 of -msgid "" -"*Optional*. Message is a `video note `_, information about the video message" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.voice:1 of -msgid "*Optional*. Message is a voice message, information about the file" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.caption:1 of -msgid "" -"*Optional*. Caption for the animation, audio, document, photo, video or " -"voice" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.caption_entities:1 of -msgid "" -"*Optional*. For messages with a caption, special entities like usernames," -" URLs, bot commands, etc. that appear in the caption" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.has_media_spoiler:1 of -msgid "" -"*Optional*. :code:`True`, if the message media is covered by a spoiler " -"animation" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.contact:1 of -msgid "*Optional*. Message is a shared contact, information about the contact" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.dice:1 of -msgid "*Optional*. Message is a dice with random value" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.game:1 of -msgid "" -"*Optional*. Message is a game, information about the game. `More about " -"games » `_" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.poll:1 of -msgid "*Optional*. Message is a native poll, information about the poll" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.venue:1 of -msgid "" -"*Optional*. Message is a venue, information about the venue. For backward" -" compatibility, when this field is set, the *location* field will also be" -" set" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.location:1 of -msgid "*Optional*. Message is a shared location, information about the location" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.new_chat_members:1 of -msgid "" -"*Optional*. New members that were added to the group or supergroup and " -"information about them (the bot itself may be one of these members)" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.left_chat_member:1 of -msgid "" -"*Optional*. A member was removed from the group, information about them " -"(this member may be the bot itself)" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.new_chat_title:1 of -msgid "*Optional*. A chat title was changed to this value" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.new_chat_photo:1 of -msgid "*Optional*. A chat photo was change to this value" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.delete_chat_photo:1 of -msgid "*Optional*. Service message: the chat photo was deleted" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.group_chat_created:1 of -msgid "*Optional*. Service message: the group has been created" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.supergroup_chat_created:1 of -msgid "" -"*Optional*. Service message: the supergroup has been created. This field " -"can't be received in a message coming through updates, because bot can't " -"be a member of a supergroup when it is created. It can only be found in " -"reply_to_message if someone replies to a very first message in a directly" -" created supergroup." -msgstr "" - -#: ../../docstring aiogram.types.message.Message.channel_chat_created:1 of -msgid "" -"*Optional*. Service message: the channel has been created. This field " -"can't be received in a message coming through updates, because bot can't " -"be a member of a channel when it is created. It can only be found in " -"reply_to_message if someone replies to a very first message in a channel." -msgstr "" - -#: ../../docstring -#: aiogram.types.message.Message.message_auto_delete_timer_changed:1 of -msgid "" -"*Optional*. Service message: auto-delete timer settings changed in the " -"chat" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.migrate_to_chat_id:1 of -msgid "" -"*Optional*. The group has been migrated to a supergroup with the " -"specified identifier. This number may have more than 32 significant bits " -"and some programming languages may have difficulty/silent defects in " -"interpreting it. But it has at most 52 significant bits, so a signed " -"64-bit integer or double-precision float type are safe for storing this " -"identifier." -msgstr "" - -#: ../../docstring aiogram.types.message.Message.migrate_from_chat_id:1 of -msgid "" -"*Optional*. The supergroup has been migrated from a group with the " -"specified identifier. This number may have more than 32 significant bits " -"and some programming languages may have difficulty/silent defects in " -"interpreting it. But it has at most 52 significant bits, so a signed " -"64-bit integer or double-precision float type are safe for storing this " -"identifier." -msgstr "" - -#: ../../docstring aiogram.types.message.Message.pinned_message:1 of -msgid "" -"*Optional*. Specified message was pinned. Note that the Message object in" -" this field will not contain further *reply_to_message* fields even if it" -" is itself a reply." -msgstr "" - -#: ../../docstring aiogram.types.message.Message.invoice:1 of -msgid "" -"*Optional*. Message is an invoice for a `payment " -"`_, information about the " -"invoice. `More about payments » " -"`_" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.successful_payment:1 of -msgid "" -"*Optional*. Message is a service message about a successful payment, " -"information about the payment. `More about payments » " -"`_" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.user_shared:1 of -msgid "*Optional*. Service message: a user was shared with the bot" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.chat_shared:1 of -msgid "*Optional*. Service message: a chat was shared with the bot" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.connected_website:1 of -msgid "" -"*Optional*. The domain name of the website on which the user has logged " -"in. `More about Telegram Login » " -"`_" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.write_access_allowed:1 of -msgid "" -"*Optional*. Service message: the user allowed the bot added to the " -"attachment menu to write messages" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.passport_data:1 of -msgid "*Optional*. Telegram Passport data" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.proximity_alert_triggered:1 of -msgid "" -"*Optional*. Service message. A user in the chat triggered another user's " -"proximity alert while sharing Live Location." -msgstr "" - -#: ../../docstring aiogram.types.message.Message.forum_topic_created:1 of -msgid "*Optional*. Service message: forum topic created" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.forum_topic_edited:1 of -msgid "*Optional*. Service message: forum topic edited" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.forum_topic_closed:1 of -msgid "*Optional*. Service message: forum topic closed" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.forum_topic_reopened:1 of -msgid "*Optional*. Service message: forum topic reopened" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.general_forum_topic_hidden:1 -#: of -msgid "*Optional*. Service message: the 'General' forum topic hidden" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.general_forum_topic_unhidden:1 -#: of -msgid "*Optional*. Service message: the 'General' forum topic unhidden" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.video_chat_scheduled:1 of -msgid "*Optional*. Service message: video chat scheduled" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.video_chat_started:1 of -msgid "*Optional*. Service message: video chat started" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.video_chat_ended:1 of -msgid "*Optional*. Service message: video chat ended" -msgstr "" - -#: ../../docstring -#: aiogram.types.message.Message.video_chat_participants_invited:1 of -msgid "*Optional*. Service message: new participants invited to a video chat" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.web_app_data:1 of -msgid "*Optional*. Service message: data sent by a Web App" -msgstr "" - -#: ../../docstring aiogram.types.message.Message.reply_markup:1 of -msgid "" -"*Optional*. Inline keyboard attached to the message. :code:`login_url` " -"buttons are represented as ordinary :code:`url` buttons." -msgstr "" - -#: aiogram.types.message.Message.answer_animation:1 -#: aiogram.types.message.Message.reply_animation:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_animation.SendAnimation`" -" will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.answer:4 -#: aiogram.types.message.Message.answer_animation:4 -#: aiogram.types.message.Message.answer_audio:4 -#: aiogram.types.message.Message.answer_contact:4 -#: aiogram.types.message.Message.answer_dice:4 -#: aiogram.types.message.Message.answer_document:4 -#: aiogram.types.message.Message.answer_game:4 -#: aiogram.types.message.Message.answer_invoice:4 -#: aiogram.types.message.Message.answer_location:4 -#: aiogram.types.message.Message.answer_media_group:4 -#: aiogram.types.message.Message.answer_photo:4 -#: aiogram.types.message.Message.answer_poll:4 -#: aiogram.types.message.Message.answer_sticker:4 -#: aiogram.types.message.Message.answer_venue:4 -#: aiogram.types.message.Message.answer_video:4 -#: aiogram.types.message.Message.answer_video_note:4 -#: aiogram.types.message.Message.answer_voice:4 -#: aiogram.types.message.Message.delete:4 -#: aiogram.types.message.Message.delete_reply_markup:4 -#: aiogram.types.message.Message.edit_caption:4 -#: aiogram.types.message.Message.edit_live_location:4 -#: aiogram.types.message.Message.edit_media:4 -#: aiogram.types.message.Message.edit_reply_markup:4 -#: aiogram.types.message.Message.edit_text:4 -#: aiogram.types.message.Message.pin:4 aiogram.types.message.Message.reply:4 -#: aiogram.types.message.Message.reply_animation:4 -#: aiogram.types.message.Message.reply_audio:4 -#: aiogram.types.message.Message.reply_contact:4 -#: aiogram.types.message.Message.reply_dice:4 -#: aiogram.types.message.Message.reply_document:4 -#: aiogram.types.message.Message.reply_game:4 -#: aiogram.types.message.Message.reply_invoice:4 -#: aiogram.types.message.Message.reply_location:4 -#: aiogram.types.message.Message.reply_media_group:4 -#: aiogram.types.message.Message.reply_photo:4 -#: aiogram.types.message.Message.reply_poll:4 -#: aiogram.types.message.Message.reply_sticker:4 -#: aiogram.types.message.Message.reply_venue:4 -#: aiogram.types.message.Message.reply_video:4 -#: aiogram.types.message.Message.reply_video_note:4 -#: aiogram.types.message.Message.reply_voice:4 -#: aiogram.types.message.Message.stop_live_location:4 -#: aiogram.types.message.Message.unpin:4 of -msgid ":code:`chat_id`" -msgstr "" - -#: aiogram.types.message.Message.answer:5 -#: aiogram.types.message.Message.answer_animation:5 -#: aiogram.types.message.Message.answer_audio:5 -#: aiogram.types.message.Message.answer_contact:5 -#: aiogram.types.message.Message.answer_dice:5 -#: aiogram.types.message.Message.answer_document:5 -#: aiogram.types.message.Message.answer_game:5 -#: aiogram.types.message.Message.answer_invoice:5 -#: aiogram.types.message.Message.answer_location:5 -#: aiogram.types.message.Message.answer_media_group:5 -#: aiogram.types.message.Message.answer_photo:5 -#: aiogram.types.message.Message.answer_poll:5 -#: aiogram.types.message.Message.answer_sticker:5 -#: aiogram.types.message.Message.answer_venue:5 -#: aiogram.types.message.Message.answer_video:5 -#: aiogram.types.message.Message.answer_video_note:5 -#: aiogram.types.message.Message.answer_voice:5 -#: aiogram.types.message.Message.reply:5 -#: aiogram.types.message.Message.reply_animation:5 -#: aiogram.types.message.Message.reply_audio:5 -#: aiogram.types.message.Message.reply_contact:5 -#: aiogram.types.message.Message.reply_dice:5 -#: aiogram.types.message.Message.reply_document:5 -#: aiogram.types.message.Message.reply_game:5 -#: aiogram.types.message.Message.reply_invoice:5 -#: aiogram.types.message.Message.reply_location:5 -#: aiogram.types.message.Message.reply_media_group:5 -#: aiogram.types.message.Message.reply_photo:5 -#: aiogram.types.message.Message.reply_poll:5 -#: aiogram.types.message.Message.reply_sticker:5 -#: aiogram.types.message.Message.reply_venue:5 -#: aiogram.types.message.Message.reply_video:5 -#: aiogram.types.message.Message.reply_video_note:5 -#: aiogram.types.message.Message.reply_voice:5 of -msgid ":code:`message_thread_id`" -msgstr "" - -#: aiogram.types.message.Message.reply:6 -#: aiogram.types.message.Message.reply_animation:6 -#: aiogram.types.message.Message.reply_audio:6 -#: aiogram.types.message.Message.reply_contact:6 -#: aiogram.types.message.Message.reply_dice:6 -#: aiogram.types.message.Message.reply_document:6 -#: aiogram.types.message.Message.reply_game:6 -#: aiogram.types.message.Message.reply_invoice:6 -#: aiogram.types.message.Message.reply_location:6 -#: aiogram.types.message.Message.reply_media_group:6 -#: aiogram.types.message.Message.reply_photo:6 -#: aiogram.types.message.Message.reply_poll:6 -#: aiogram.types.message.Message.reply_sticker:6 -#: aiogram.types.message.Message.reply_venue:6 -#: aiogram.types.message.Message.reply_video:6 -#: aiogram.types.message.Message.reply_video_note:6 -#: aiogram.types.message.Message.reply_voice:6 of -msgid ":code:`reply_to_message_id`" -msgstr "" - -#: aiogram.types.message.Message.answer_animation:7 -#: aiogram.types.message.Message.reply_animation:8 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.types.message.Message.answer_animation:9 -#: aiogram.types.message.Message.reply_animation:10 of -msgid "Source: https://core.telegram.org/bots/api#sendanimation" -msgstr "" - -#: aiogram.types.message.Message.answer -#: aiogram.types.message.Message.answer_animation -#: aiogram.types.message.Message.answer_audio -#: aiogram.types.message.Message.answer_contact -#: aiogram.types.message.Message.answer_dice -#: aiogram.types.message.Message.answer_document -#: aiogram.types.message.Message.answer_game -#: aiogram.types.message.Message.answer_invoice -#: aiogram.types.message.Message.answer_location -#: aiogram.types.message.Message.answer_media_group -#: aiogram.types.message.Message.answer_photo -#: aiogram.types.message.Message.answer_poll -#: aiogram.types.message.Message.answer_sticker -#: aiogram.types.message.Message.answer_venue -#: aiogram.types.message.Message.answer_video -#: aiogram.types.message.Message.answer_video_note -#: aiogram.types.message.Message.answer_voice -#: aiogram.types.message.Message.copy_to -#: aiogram.types.message.Message.delete_reply_markup -#: aiogram.types.message.Message.edit_caption -#: aiogram.types.message.Message.edit_live_location -#: aiogram.types.message.Message.edit_media -#: aiogram.types.message.Message.edit_reply_markup -#: aiogram.types.message.Message.edit_text -#: aiogram.types.message.Message.forward aiogram.types.message.Message.get_url -#: aiogram.types.message.Message.pin aiogram.types.message.Message.reply -#: aiogram.types.message.Message.reply_animation -#: aiogram.types.message.Message.reply_audio -#: aiogram.types.message.Message.reply_contact -#: aiogram.types.message.Message.reply_dice -#: aiogram.types.message.Message.reply_document -#: aiogram.types.message.Message.reply_game -#: aiogram.types.message.Message.reply_invoice -#: aiogram.types.message.Message.reply_location -#: aiogram.types.message.Message.reply_media_group -#: aiogram.types.message.Message.reply_photo -#: aiogram.types.message.Message.reply_poll -#: aiogram.types.message.Message.reply_sticker -#: aiogram.types.message.Message.reply_venue -#: aiogram.types.message.Message.reply_video -#: aiogram.types.message.Message.reply_video_note -#: aiogram.types.message.Message.reply_voice -#: aiogram.types.message.Message.send_copy -#: aiogram.types.message.Message.stop_live_location of -msgid "Parameters" -msgstr "" - -#: aiogram.types.message.Message.answer_animation:11 -#: aiogram.types.message.Message.reply_animation:12 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 » `" -msgstr "" - -#: aiogram.types.message.Message.answer_animation:12 -#: aiogram.types.message.Message.reply_animation:13 of -msgid "Duration of sent animation in seconds" -msgstr "" - -#: aiogram.types.message.Message.answer_animation:13 -#: aiogram.types.message.Message.reply_animation:14 of -msgid "Animation width" -msgstr "" - -#: aiogram.types.message.Message.answer_animation:14 -#: aiogram.types.message.Message.reply_animation:15 of -msgid "Animation height" -msgstr "" - -#: aiogram.types.message.Message.answer_animation:15 -#: aiogram.types.message.Message.answer_audio:19 -#: aiogram.types.message.Message.answer_document:12 -#: aiogram.types.message.Message.answer_video:15 -#: aiogram.types.message.Message.answer_video_note:14 -#: aiogram.types.message.Message.reply_animation:16 -#: aiogram.types.message.Message.reply_audio:20 -#: aiogram.types.message.Message.reply_document:13 -#: aiogram.types.message.Message.reply_video:16 -#: aiogram.types.message.Message.reply_video_note:15 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://' if the thumbnail was " -"uploaded using multipart/form-data under . :ref:`More " -"information on Sending Files » `" -msgstr "" - -#: aiogram.types.message.Message.answer_animation:16 -#: aiogram.types.message.Message.reply_animation:17 of -msgid "" -"Animation caption (may also be used when resending animation by " -"*file_id*), 0-1024 characters after entities parsing" -msgstr "" - -#: aiogram.types.message.Message.answer_animation:17 -#: aiogram.types.message.Message.reply_animation:18 of -msgid "" -"Mode for parsing entities in the animation caption. See `formatting " -"options `_ for " -"more details." -msgstr "" - -#: aiogram.types.message.Message.answer_animation:18 -#: aiogram.types.message.Message.answer_audio:15 -#: aiogram.types.message.Message.answer_document:15 -#: aiogram.types.message.Message.answer_photo:14 -#: aiogram.types.message.Message.answer_video:18 -#: aiogram.types.message.Message.answer_voice:14 -#: aiogram.types.message.Message.edit_caption:14 -#: aiogram.types.message.Message.reply_animation:19 -#: aiogram.types.message.Message.reply_audio:16 -#: aiogram.types.message.Message.reply_document:16 -#: aiogram.types.message.Message.reply_photo:15 -#: aiogram.types.message.Message.reply_video:19 -#: aiogram.types.message.Message.reply_voice:15 of -msgid "" -"A JSON-serialized list of special entities that appear in the caption, " -"which can be specified instead of *parse_mode*" -msgstr "" - -#: aiogram.types.message.Message.answer_animation:19 -#: aiogram.types.message.Message.reply_animation:20 of -msgid "" -"Pass :code:`True` if the animation needs to be covered with a spoiler " -"animation" -msgstr "" - -#: aiogram.types.message.Message.answer:15 -#: aiogram.types.message.Message.answer_animation:20 -#: aiogram.types.message.Message.answer_audio:20 -#: aiogram.types.message.Message.answer_contact:15 -#: aiogram.types.message.Message.answer_dice:12 -#: aiogram.types.message.Message.answer_document:17 -#: aiogram.types.message.Message.answer_game:12 -#: aiogram.types.message.Message.answer_invoice:32 -#: aiogram.types.message.Message.answer_location:17 -#: aiogram.types.message.Message.answer_photo:16 -#: aiogram.types.message.Message.answer_poll:23 -#: aiogram.types.message.Message.answer_sticker:13 -#: aiogram.types.message.Message.answer_venue:19 -#: aiogram.types.message.Message.answer_video:21 -#: aiogram.types.message.Message.answer_video_note:15 -#: aiogram.types.message.Message.answer_voice:16 -#: aiogram.types.message.Message.copy_to:16 -#: aiogram.types.message.Message.forward:13 -#: aiogram.types.message.Message.reply:16 -#: aiogram.types.message.Message.reply_animation:21 -#: aiogram.types.message.Message.reply_audio:21 -#: aiogram.types.message.Message.reply_contact:16 -#: aiogram.types.message.Message.reply_dice:13 -#: aiogram.types.message.Message.reply_document:18 -#: aiogram.types.message.Message.reply_game:13 -#: aiogram.types.message.Message.reply_invoice:33 -#: aiogram.types.message.Message.reply_location:18 -#: aiogram.types.message.Message.reply_photo:17 -#: aiogram.types.message.Message.reply_poll:24 -#: aiogram.types.message.Message.reply_sticker:14 -#: aiogram.types.message.Message.reply_venue:20 -#: aiogram.types.message.Message.reply_video:22 -#: aiogram.types.message.Message.reply_video_note:16 -#: aiogram.types.message.Message.reply_voice:17 of -msgid "" -"Sends the message `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: aiogram.types.message.Message.answer:16 -#: aiogram.types.message.Message.answer_animation:21 -#: aiogram.types.message.Message.answer_audio:21 -#: aiogram.types.message.Message.answer_contact:16 -#: aiogram.types.message.Message.answer_document:18 -#: aiogram.types.message.Message.answer_game:13 -#: aiogram.types.message.Message.answer_invoice:33 -#: aiogram.types.message.Message.answer_location:18 -#: aiogram.types.message.Message.answer_photo:17 -#: aiogram.types.message.Message.answer_poll:24 -#: aiogram.types.message.Message.answer_sticker:14 -#: aiogram.types.message.Message.answer_venue:20 -#: aiogram.types.message.Message.answer_video:22 -#: aiogram.types.message.Message.answer_video_note:16 -#: aiogram.types.message.Message.answer_voice:17 -#: aiogram.types.message.Message.copy_to:17 -#: aiogram.types.message.Message.reply:17 -#: aiogram.types.message.Message.reply_animation:22 -#: aiogram.types.message.Message.reply_audio:22 -#: aiogram.types.message.Message.reply_contact:17 -#: aiogram.types.message.Message.reply_document:19 -#: aiogram.types.message.Message.reply_game:14 -#: aiogram.types.message.Message.reply_invoice:34 -#: aiogram.types.message.Message.reply_location:19 -#: aiogram.types.message.Message.reply_photo:18 -#: aiogram.types.message.Message.reply_poll:25 -#: aiogram.types.message.Message.reply_sticker:15 -#: aiogram.types.message.Message.reply_venue:21 -#: aiogram.types.message.Message.reply_video:23 -#: aiogram.types.message.Message.reply_video_note:17 -#: aiogram.types.message.Message.reply_voice:18 of -msgid "Protects the contents of the sent message from forwarding and saving" -msgstr "" - -#: aiogram.types.message.Message.answer:18 -#: aiogram.types.message.Message.answer_animation:23 -#: aiogram.types.message.Message.answer_audio:23 -#: aiogram.types.message.Message.answer_contact:18 -#: aiogram.types.message.Message.answer_dice:15 -#: aiogram.types.message.Message.answer_document:20 -#: aiogram.types.message.Message.answer_game:15 -#: aiogram.types.message.Message.answer_invoice:35 -#: aiogram.types.message.Message.answer_location:20 -#: aiogram.types.message.Message.answer_media_group:15 -#: aiogram.types.message.Message.answer_photo:19 -#: aiogram.types.message.Message.answer_poll:26 -#: aiogram.types.message.Message.answer_sticker:16 -#: aiogram.types.message.Message.answer_venue:22 -#: aiogram.types.message.Message.answer_video:24 -#: aiogram.types.message.Message.answer_video_note:18 -#: aiogram.types.message.Message.answer_voice:19 -#: aiogram.types.message.Message.copy_to:19 -#: aiogram.types.message.Message.reply:18 -#: aiogram.types.message.Message.reply_animation:23 -#: aiogram.types.message.Message.reply_audio:23 -#: aiogram.types.message.Message.reply_contact:18 -#: aiogram.types.message.Message.reply_dice:15 -#: aiogram.types.message.Message.reply_document:20 -#: aiogram.types.message.Message.reply_game:15 -#: aiogram.types.message.Message.reply_invoice:35 -#: aiogram.types.message.Message.reply_location:20 -#: aiogram.types.message.Message.reply_media_group:15 -#: aiogram.types.message.Message.reply_photo:19 -#: aiogram.types.message.Message.reply_poll:26 -#: aiogram.types.message.Message.reply_sticker:16 -#: aiogram.types.message.Message.reply_venue:22 -#: aiogram.types.message.Message.reply_video:24 -#: aiogram.types.message.Message.reply_video_note:18 -#: aiogram.types.message.Message.reply_voice:19 of -msgid "" -"Pass :code:`True` if the message should be sent even if the specified " -"replied-to message is not found" -msgstr "" - -#: aiogram.types.message.Message.answer:19 -#: aiogram.types.message.Message.answer_animation:24 -#: aiogram.types.message.Message.answer_audio:24 -#: aiogram.types.message.Message.answer_contact:19 -#: aiogram.types.message.Message.answer_dice:16 -#: aiogram.types.message.Message.answer_document:21 -#: aiogram.types.message.Message.answer_location:21 -#: aiogram.types.message.Message.answer_photo:20 -#: aiogram.types.message.Message.answer_poll:27 -#: aiogram.types.message.Message.answer_sticker:17 -#: aiogram.types.message.Message.answer_venue:23 -#: aiogram.types.message.Message.answer_video:25 -#: aiogram.types.message.Message.answer_video_note:19 -#: aiogram.types.message.Message.answer_voice:20 -#: aiogram.types.message.Message.copy_to:20 -#: aiogram.types.message.Message.reply:19 -#: aiogram.types.message.Message.reply_animation:24 -#: aiogram.types.message.Message.reply_audio:24 -#: aiogram.types.message.Message.reply_contact:19 -#: aiogram.types.message.Message.reply_dice:16 -#: aiogram.types.message.Message.reply_document:21 -#: aiogram.types.message.Message.reply_location:21 -#: aiogram.types.message.Message.reply_photo:20 -#: aiogram.types.message.Message.reply_poll:27 -#: aiogram.types.message.Message.reply_sticker:17 -#: aiogram.types.message.Message.reply_venue:23 -#: aiogram.types.message.Message.reply_video:25 -#: aiogram.types.message.Message.reply_video_note:19 -#: aiogram.types.message.Message.reply_voice:20 of -msgid "" -"Additional interface options. A JSON-serialized object for an `inline " -"keyboard `_, " -"`custom reply keyboard " -"`_, instructions to " -"remove reply keyboard or to force a reply from the user." -msgstr "" - -#: aiogram.types.message.Message.answer -#: aiogram.types.message.Message.answer_animation -#: aiogram.types.message.Message.answer_audio -#: aiogram.types.message.Message.answer_contact -#: aiogram.types.message.Message.answer_dice -#: aiogram.types.message.Message.answer_document -#: aiogram.types.message.Message.answer_game -#: aiogram.types.message.Message.answer_invoice -#: aiogram.types.message.Message.answer_location -#: aiogram.types.message.Message.answer_media_group -#: aiogram.types.message.Message.answer_photo -#: aiogram.types.message.Message.answer_poll -#: aiogram.types.message.Message.answer_sticker -#: aiogram.types.message.Message.answer_venue -#: aiogram.types.message.Message.answer_video -#: aiogram.types.message.Message.answer_video_note -#: aiogram.types.message.Message.answer_voice -#: aiogram.types.message.Message.copy_to aiogram.types.message.Message.delete -#: aiogram.types.message.Message.delete_reply_markup -#: aiogram.types.message.Message.edit_caption -#: aiogram.types.message.Message.edit_live_location -#: aiogram.types.message.Message.edit_media -#: aiogram.types.message.Message.edit_reply_markup -#: aiogram.types.message.Message.edit_text -#: aiogram.types.message.Message.forward aiogram.types.message.Message.get_url -#: aiogram.types.message.Message.pin aiogram.types.message.Message.reply -#: aiogram.types.message.Message.reply_animation -#: aiogram.types.message.Message.reply_audio -#: aiogram.types.message.Message.reply_contact -#: aiogram.types.message.Message.reply_dice -#: aiogram.types.message.Message.reply_document -#: aiogram.types.message.Message.reply_game -#: aiogram.types.message.Message.reply_invoice -#: aiogram.types.message.Message.reply_location -#: aiogram.types.message.Message.reply_media_group -#: aiogram.types.message.Message.reply_photo -#: aiogram.types.message.Message.reply_poll -#: aiogram.types.message.Message.reply_sticker -#: aiogram.types.message.Message.reply_venue -#: aiogram.types.message.Message.reply_video -#: aiogram.types.message.Message.reply_video_note -#: aiogram.types.message.Message.reply_voice -#: aiogram.types.message.Message.send_copy -#: aiogram.types.message.Message.stop_live_location -#: aiogram.types.message.Message.unpin of -msgid "Returns" -msgstr "" - -#: aiogram.types.message.Message.answer_animation:25 -#: aiogram.types.message.Message.reply_animation:25 of -msgid "instance of method :class:`aiogram.methods.send_animation.SendAnimation`" -msgstr "" - -#: aiogram.types.message.Message.answer:17 -#: aiogram.types.message.Message.answer_animation:22 -#: aiogram.types.message.Message.answer_audio:22 -#: aiogram.types.message.Message.answer_contact:17 -#: aiogram.types.message.Message.answer_dice:14 -#: aiogram.types.message.Message.answer_document:19 -#: aiogram.types.message.Message.answer_game:14 -#: aiogram.types.message.Message.answer_invoice:34 -#: aiogram.types.message.Message.answer_location:19 -#: aiogram.types.message.Message.answer_photo:18 -#: aiogram.types.message.Message.answer_poll:25 -#: aiogram.types.message.Message.answer_sticker:15 -#: aiogram.types.message.Message.answer_venue:21 -#: aiogram.types.message.Message.answer_video:23 -#: aiogram.types.message.Message.answer_video_note:17 -#: aiogram.types.message.Message.answer_voice:18 -#: aiogram.types.message.Message.copy_to:18 of -msgid "If the message is a reply, ID of the original message" -msgstr "" - -#: aiogram.types.message.Message.answer_audio:1 -#: aiogram.types.message.Message.reply_audio:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_audio.SendAudio` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.answer_audio:7 -#: aiogram.types.message.Message.reply_audio:8 of -msgid "" -"Use this method to send audio files, if you want Telegram clients to " -"display them in the music player. Your audio must be in the .MP3 or .M4A " -"format. On success, the sent :class:`aiogram.types.message.Message` is " -"returned. Bots can currently send audio files of up to 50 MB in size, " -"this limit may be changed in the future. For sending voice messages, use " -"the :class:`aiogram.methods.send_voice.SendVoice` method instead." -msgstr "" - -#: aiogram.types.message.Message.answer_audio:10 -#: aiogram.types.message.Message.reply_audio:11 of -msgid "Source: https://core.telegram.org/bots/api#sendaudio" -msgstr "" - -#: aiogram.types.message.Message.answer_audio:12 -#: aiogram.types.message.Message.reply_audio:13 of -msgid "" -"Audio file to send. Pass a file_id as String to send an audio file that " -"exists on the Telegram servers (recommended), pass an HTTP URL as a " -"String for Telegram to get an audio file from the Internet, or upload a " -"new one using multipart/form-data. :ref:`More information on Sending " -"Files » `" -msgstr "" - -#: aiogram.types.message.Message.answer_audio:13 -#: aiogram.types.message.Message.reply_audio:14 of -msgid "Audio caption, 0-1024 characters after entities parsing" -msgstr "" - -#: aiogram.types.message.Message.answer_audio:14 -#: aiogram.types.message.Message.reply_audio:15 of -msgid "" -"Mode for parsing entities in the audio caption. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: aiogram.types.message.Message.answer_audio:16 -#: aiogram.types.message.Message.reply_audio:17 of -msgid "Duration of the audio in seconds" -msgstr "" - -#: aiogram.types.message.Message.answer_audio:17 -#: aiogram.types.message.Message.reply_audio:18 of -msgid "Performer" -msgstr "" - -#: aiogram.types.message.Message.answer_audio:18 -#: aiogram.types.message.Message.reply_audio:19 of -msgid "Track name" -msgstr "" - -#: aiogram.types.message.Message.answer_audio:25 -#: aiogram.types.message.Message.reply_audio:25 of -msgid "instance of method :class:`aiogram.methods.send_audio.SendAudio`" -msgstr "" - -#: aiogram.types.message.Message.answer_contact:1 -#: aiogram.types.message.Message.reply_contact:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_contact.SendContact` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.answer_contact:7 -#: aiogram.types.message.Message.reply_contact:8 of -msgid "" -"Use this method to send phone contacts. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.message.Message.answer_contact:9 -#: aiogram.types.message.Message.reply_contact:10 of -msgid "Source: https://core.telegram.org/bots/api#sendcontact" -msgstr "" - -#: aiogram.types.message.Message.answer_contact:11 -#: aiogram.types.message.Message.reply_contact:12 of -msgid "Contact's phone number" -msgstr "" - -#: aiogram.types.message.Message.answer_contact:12 -#: aiogram.types.message.Message.reply_contact:13 of -msgid "Contact's first name" -msgstr "" - -#: aiogram.types.message.Message.answer_contact:13 -#: aiogram.types.message.Message.reply_contact:14 of -msgid "Contact's last name" -msgstr "" - -#: aiogram.types.message.Message.answer_contact:14 -#: aiogram.types.message.Message.reply_contact:15 of -msgid "" -"Additional data about the contact in the form of a `vCard " -"`_, 0-2048 bytes" -msgstr "" - -#: aiogram.types.message.Message.answer_contact:20 -#: aiogram.types.message.Message.reply_contact:20 of -msgid "instance of method :class:`aiogram.methods.send_contact.SendContact`" -msgstr "" - -#: aiogram.types.message.Message.answer_document:1 -#: aiogram.types.message.Message.reply_document:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_document.SendDocument` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.answer_document:7 -#: aiogram.types.message.Message.reply_document:8 of -msgid "" -"Use this method to send general files. On success, the sent " -":class:`aiogram.types.message.Message` is returned. Bots can currently " -"send files of any type of up to 50 MB in size, this limit may be changed " -"in the future." -msgstr "" - -#: aiogram.types.message.Message.answer_document:9 -#: aiogram.types.message.Message.reply_document:10 of -msgid "Source: https://core.telegram.org/bots/api#senddocument" -msgstr "" - -#: aiogram.types.message.Message.answer_document:11 -#: aiogram.types.message.Message.reply_document:12 of -msgid "" -"File to send. Pass a file_id as String to send a file that exists on the " -"Telegram servers (recommended), pass an HTTP URL as a String for Telegram" -" to get a file from the Internet, or upload a new one using multipart" -"/form-data. :ref:`More information on Sending Files » `" -msgstr "" - -#: aiogram.types.message.Message.answer_document:13 -#: aiogram.types.message.Message.reply_document:14 of -msgid "" -"Document caption (may also be used when resending documents by " -"*file_id*), 0-1024 characters after entities parsing" -msgstr "" - -#: aiogram.types.message.Message.answer_document:14 -#: aiogram.types.message.Message.reply_document:15 of -msgid "" -"Mode for parsing entities in the document caption. See `formatting " -"options `_ for " -"more details." -msgstr "" - -#: aiogram.types.message.Message.answer_document:16 -#: aiogram.types.message.Message.reply_document:17 of -msgid "" -"Disables automatic server-side content type detection for files uploaded " -"using multipart/form-data" -msgstr "" - -#: aiogram.types.message.Message.answer_document:22 -#: aiogram.types.message.Message.reply_document:22 of -msgid "instance of method :class:`aiogram.methods.send_document.SendDocument`" -msgstr "" - -#: aiogram.types.message.Message.answer_game:1 -#: aiogram.types.message.Message.reply_game:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_game.SendGame` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.answer_game:7 -#: aiogram.types.message.Message.reply_game:8 of -msgid "" -"Use this method to send a game. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.message.Message.answer_game:9 -#: aiogram.types.message.Message.reply_game:10 of -msgid "Source: https://core.telegram.org/bots/api#sendgame" -msgstr "" - -#: aiogram.types.message.Message.answer_game:11 -#: aiogram.types.message.Message.reply_game:12 of -msgid "" -"Short name of the game, serves as the unique identifier for the game. Set" -" up your games via `@BotFather `_." -msgstr "" - -#: aiogram.types.message.Message.answer_game:16 -#: aiogram.types.message.Message.reply_game:16 of -msgid "" -"A JSON-serialized object for an `inline keyboard " -"`_. If empty, " -"one 'Play game_title' button will be shown. If not empty, the first " -"button must launch the game." -msgstr "" - -#: aiogram.types.message.Message.answer_game:17 -#: aiogram.types.message.Message.reply_game:17 of -msgid "instance of method :class:`aiogram.methods.send_game.SendGame`" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:1 -#: aiogram.types.message.Message.reply_invoice:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_invoice.SendInvoice` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:7 -#: aiogram.types.message.Message.reply_invoice:8 of -msgid "" -"Use this method to send invoices. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:9 -#: aiogram.types.message.Message.reply_invoice:10 of -msgid "Source: https://core.telegram.org/bots/api#sendinvoice" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:11 -#: aiogram.types.message.Message.reply_invoice:12 of -msgid "Product name, 1-32 characters" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:12 -#: aiogram.types.message.Message.reply_invoice:13 of -msgid "Product description, 1-255 characters" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:13 -#: aiogram.types.message.Message.reply_invoice:14 of -msgid "" -"Bot-defined invoice payload, 1-128 bytes. This will not be displayed to " -"the user, use for your internal processes." -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:14 -#: aiogram.types.message.Message.reply_invoice:15 of -msgid "" -"Payment provider token, obtained via `@BotFather " -"`_" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:15 -#: aiogram.types.message.Message.reply_invoice:16 of -msgid "" -"Three-letter ISO 4217 currency code, see `more on currencies " -"`_" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:16 -#: aiogram.types.message.Message.reply_invoice:17 of -msgid "" -"Price breakdown, a JSON-serialized list of components (e.g. product " -"price, tax, discount, delivery cost, delivery tax, bonus, etc.)" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:17 -#: aiogram.types.message.Message.reply_invoice:18 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 " -"`_, it shows the" -" number of digits past the decimal point for each currency (2 for the " -"majority of currencies). Defaults to 0" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:18 -#: aiogram.types.message.Message.reply_invoice:19 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 "" - -#: aiogram.types.message.Message.answer_invoice:19 -#: aiogram.types.message.Message.reply_invoice:20 of -msgid "" -"Unique deep-linking parameter. If left empty, **forwarded copies** of the" -" sent message will have a *Pay* button, allowing multiple users to pay " -"directly from the forwarded message, using the same invoice. If non-" -"empty, forwarded copies of the sent message will have a *URL* button with" -" a deep link to the bot (instead of a *Pay* button), with the value used " -"as the start parameter" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:20 -#: aiogram.types.message.Message.reply_invoice:21 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 "" - -#: aiogram.types.message.Message.answer_invoice:21 -#: aiogram.types.message.Message.reply_invoice:22 of -msgid "" -"URL of the product photo for the invoice. Can be a photo of the goods or " -"a marketing image for a service. People like it better when they see what" -" they are paying for." -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:22 -#: aiogram.types.message.Message.reply_invoice:23 of -msgid "Photo size in bytes" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:23 -#: aiogram.types.message.Message.reply_invoice:24 of -msgid "Photo width" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:24 -#: aiogram.types.message.Message.reply_invoice:25 of -msgid "Photo height" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:25 -#: aiogram.types.message.Message.reply_invoice:26 of -msgid "" -"Pass :code:`True` if you require the user's full name to complete the " -"order" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:26 -#: aiogram.types.message.Message.reply_invoice:27 of -msgid "" -"Pass :code:`True` if you require the user's phone number to complete the " -"order" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:27 -#: aiogram.types.message.Message.reply_invoice:28 of -msgid "" -"Pass :code:`True` if you require the user's email address to complete the" -" order" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:28 -#: aiogram.types.message.Message.reply_invoice:29 of -msgid "" -"Pass :code:`True` if you require the user's shipping address to complete " -"the order" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:29 -#: aiogram.types.message.Message.reply_invoice:30 of -msgid "Pass :code:`True` if the user's phone number should be sent to provider" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:30 -#: aiogram.types.message.Message.reply_invoice:31 of -msgid "Pass :code:`True` if the user's email address should be sent to provider" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:31 -#: aiogram.types.message.Message.reply_invoice:32 of -msgid "Pass :code:`True` if the final price depends on the shipping method" -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:36 -#: aiogram.types.message.Message.reply_invoice:36 of -msgid "" -"A JSON-serialized object for an `inline keyboard " -"`_. If empty, " -"one 'Pay :code:`total price`' button will be shown. If not empty, the " -"first button must be a Pay button." -msgstr "" - -#: aiogram.types.message.Message.answer_invoice:37 -#: aiogram.types.message.Message.reply_invoice:37 of -msgid "instance of method :class:`aiogram.methods.send_invoice.SendInvoice`" -msgstr "" - -#: aiogram.types.message.Message.answer_location:1 -#: aiogram.types.message.Message.reply_location:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_location.SendLocation` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.answer_location:7 -#: aiogram.types.message.Message.reply_location:8 of -msgid "" -"Use this method to send point on the map. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.message.Message.answer_location:9 -#: aiogram.types.message.Message.reply_location:10 of -msgid "Source: https://core.telegram.org/bots/api#sendlocation" -msgstr "" - -#: aiogram.types.message.Message.answer_location:11 -#: aiogram.types.message.Message.reply_location:12 of -msgid "Latitude of the location" -msgstr "" - -#: aiogram.types.message.Message.answer_location:12 -#: aiogram.types.message.Message.reply_location:13 of -msgid "Longitude of the location" -msgstr "" - -#: aiogram.types.message.Message.answer_location:13 -#: aiogram.types.message.Message.edit_live_location:14 -#: aiogram.types.message.Message.reply_location:14 of -msgid "The radius of uncertainty for the location, measured in meters; 0-1500" -msgstr "" - -#: aiogram.types.message.Message.answer_location:14 -#: aiogram.types.message.Message.reply_location:15 of -msgid "" -"Period in seconds for which the location will be updated (see `Live " -"Locations `_, should be between" -" 60 and 86400." -msgstr "" - -#: aiogram.types.message.Message.answer_location:15 -#: aiogram.types.message.Message.reply_location:16 of -msgid "" -"For live locations, a direction in which the user is moving, in degrees. " -"Must be between 1 and 360 if specified." -msgstr "" - -#: aiogram.types.message.Message.answer_location:16 -#: aiogram.types.message.Message.reply_location:17 of -msgid "" -"For live locations, a maximum distance for proximity alerts about " -"approaching another chat member, in meters. Must be between 1 and 100000 " -"if specified." -msgstr "" - -#: aiogram.types.message.Message.answer_location:22 -#: aiogram.types.message.Message.reply_location:22 of -msgid "instance of method :class:`aiogram.methods.send_location.SendLocation`" -msgstr "" - -#: aiogram.types.message.Message.answer_media_group:1 -#: aiogram.types.message.Message.reply_media_group:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.send_media_group.SendMediaGroup` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.answer_media_group:7 -#: aiogram.types.message.Message.reply_media_group:8 of -msgid "" -"Use this method to send a group of photos, videos, documents or audios as" -" an album. Documents and audio files can be only grouped in an album with" -" messages of the same type. On success, an array of `Messages " -"`_ that were sent is " -"returned." -msgstr "" - -#: aiogram.types.message.Message.answer_media_group:9 -#: aiogram.types.message.Message.reply_media_group:10 of -msgid "Source: https://core.telegram.org/bots/api#sendmediagroup" -msgstr "" - -#: aiogram.types.message.Message.answer_media_group:11 -#: aiogram.types.message.Message.reply_media_group:12 of -msgid "" -"A JSON-serialized array describing messages to be sent, must include 2-10" -" items" -msgstr "" - -#: aiogram.types.message.Message.answer_media_group:12 -#: aiogram.types.message.Message.reply_media_group:13 of -msgid "" -"Sends messages `silently `_. Users will receive a notification with no sound." -msgstr "" - -#: aiogram.types.message.Message.answer_media_group:13 -#: aiogram.types.message.Message.reply_media_group:14 of -msgid "Protects the contents of the sent messages from forwarding and saving" -msgstr "" - -#: aiogram.types.message.Message.answer_media_group:16 -#: aiogram.types.message.Message.reply_media_group:16 of -msgid "" -"instance of method " -":class:`aiogram.methods.send_media_group.SendMediaGroup`" -msgstr "" - -#: aiogram.types.message.Message.answer_media_group:14 of -msgid "If the messages are a reply, ID of the original message" -msgstr "" - -#: aiogram.types.message.Message.answer:1 aiogram.types.message.Message.reply:1 -#: of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_message.SendMessage` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.answer:7 aiogram.types.message.Message.reply:8 -#: of -msgid "" -"Use this method to send text messages. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.message.Message.answer:9 -#: aiogram.types.message.Message.reply:10 of -msgid "Source: https://core.telegram.org/bots/api#sendmessage" -msgstr "" - -#: aiogram.types.message.Message.answer:11 -#: aiogram.types.message.Message.reply:12 of -msgid "Text of the message to be sent, 1-4096 characters after entities parsing" -msgstr "" - -#: aiogram.types.message.Message.answer:12 -#: aiogram.types.message.Message.edit_text:13 -#: aiogram.types.message.Message.reply:13 of -msgid "" -"Mode for parsing entities in the message text. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: aiogram.types.message.Message.answer:13 -#: aiogram.types.message.Message.edit_text:14 -#: aiogram.types.message.Message.reply:14 of -msgid "" -"A JSON-serialized list of special entities that appear in message text, " -"which can be specified instead of *parse_mode*" -msgstr "" - -#: aiogram.types.message.Message.answer:14 -#: aiogram.types.message.Message.edit_text:15 -#: aiogram.types.message.Message.reply:15 of -msgid "Disables link previews for links in this message" -msgstr "" - -#: aiogram.types.message.Message.answer:20 -#: aiogram.types.message.Message.reply:20 of -msgid "instance of method :class:`aiogram.methods.send_message.SendMessage`" -msgstr "" - -#: aiogram.types.message.Message.answer_photo:1 -#: aiogram.types.message.Message.reply_photo:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_photo.SendPhoto` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.answer_photo:7 -#: aiogram.types.message.Message.reply_photo:8 of -msgid "" -"Use this method to send photos. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.message.Message.answer_photo:9 -#: aiogram.types.message.Message.reply_photo:10 of -msgid "Source: https://core.telegram.org/bots/api#sendphoto" -msgstr "" - -#: aiogram.types.message.Message.answer_photo:11 -#: aiogram.types.message.Message.reply_photo:12 of -msgid "" -"Photo to send. Pass a file_id as String to send a photo that exists on " -"the Telegram servers (recommended), pass an HTTP URL as a String for " -"Telegram to get a photo from the Internet, or upload a new photo using " -"multipart/form-data. The photo must be at most 10 MB in size. The photo's" -" width and height must not exceed 10000 in total. Width and height ratio " -"must be at most 20. :ref:`More information on Sending Files » `" -msgstr "" - -#: aiogram.types.message.Message.answer_photo:12 -#: aiogram.types.message.Message.reply_photo:13 of -msgid "" -"Photo caption (may also be used when resending photos by *file_id*), " -"0-1024 characters after entities parsing" -msgstr "" - -#: aiogram.types.message.Message.answer_photo:13 -#: aiogram.types.message.Message.reply_photo:14 of -msgid "" -"Mode for parsing entities in the photo caption. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: aiogram.types.message.Message.answer_photo:15 -#: aiogram.types.message.Message.reply_photo:16 of -msgid "" -"Pass :code:`True` if the photo needs to be covered with a spoiler " -"animation" -msgstr "" - -#: aiogram.types.message.Message.answer_photo:21 -#: aiogram.types.message.Message.reply_photo:21 of -msgid "instance of method :class:`aiogram.methods.send_photo.SendPhoto`" -msgstr "" - -#: aiogram.types.message.Message.answer_poll:1 -#: aiogram.types.message.Message.reply_poll:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_poll.SendPoll` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.answer_poll:7 -#: aiogram.types.message.Message.reply_poll:8 of -msgid "" -"Use this method to send a native poll. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.message.Message.answer_poll:9 -#: aiogram.types.message.Message.reply_poll:10 of -msgid "Source: https://core.telegram.org/bots/api#sendpoll" -msgstr "" - -#: aiogram.types.message.Message.answer_poll:11 -#: aiogram.types.message.Message.reply_poll:12 of -msgid "Poll question, 1-300 characters" -msgstr "" - -#: aiogram.types.message.Message.answer_poll:12 -#: aiogram.types.message.Message.reply_poll:13 of -msgid "" -"A JSON-serialized list of answer options, 2-10 strings 1-100 characters " -"each" -msgstr "" - -#: aiogram.types.message.Message.answer_poll:13 -#: aiogram.types.message.Message.reply_poll:14 of -msgid ":code:`True`, if the poll needs to be anonymous, defaults to :code:`True`" -msgstr "" - -#: aiogram.types.message.Message.answer_poll:14 -#: aiogram.types.message.Message.reply_poll:15 of -msgid "Poll type, 'quiz' or 'regular', defaults to 'regular'" -msgstr "" - -#: aiogram.types.message.Message.answer_poll:15 -#: aiogram.types.message.Message.reply_poll:16 of -msgid "" -":code:`True`, if the poll allows multiple answers, ignored for polls in " -"quiz mode, defaults to :code:`False`" -msgstr "" - -#: aiogram.types.message.Message.answer_poll:16 -#: aiogram.types.message.Message.reply_poll:17 of -msgid "" -"0-based identifier of the correct answer option, required for polls in " -"quiz mode" -msgstr "" - -#: aiogram.types.message.Message.answer_poll:17 -#: aiogram.types.message.Message.reply_poll:18 of -msgid "" -"Text that is shown when a user chooses an incorrect answer or taps on the" -" lamp icon in a quiz-style poll, 0-200 characters with at most 2 line " -"feeds after entities parsing" -msgstr "" - -#: aiogram.types.message.Message.answer_poll:18 -#: aiogram.types.message.Message.reply_poll:19 of -msgid "" -"Mode for parsing entities in the explanation. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: aiogram.types.message.Message.answer_poll:19 -#: aiogram.types.message.Message.reply_poll:20 of -msgid "" -"A JSON-serialized list of special entities that appear in the poll " -"explanation, which can be specified instead of *parse_mode*" -msgstr "" - -#: aiogram.types.message.Message.answer_poll:20 -#: aiogram.types.message.Message.reply_poll:21 of -msgid "" -"Amount of time in seconds the poll will be active after creation, 5-600. " -"Can't be used together with *close_date*." -msgstr "" - -#: aiogram.types.message.Message.answer_poll:21 -#: aiogram.types.message.Message.reply_poll:22 of -msgid "" -"Point in time (Unix timestamp) when the poll will be automatically " -"closed. Must be at least 5 and no more than 600 seconds in the future. " -"Can't be used together with *open_period*." -msgstr "" - -#: aiogram.types.message.Message.answer_poll:22 -#: aiogram.types.message.Message.reply_poll:23 of -msgid "" -"Pass :code:`True` if the poll needs to be immediately closed. This can be" -" useful for poll preview." -msgstr "" - -#: aiogram.types.message.Message.answer_poll:28 -#: aiogram.types.message.Message.reply_poll:28 of -msgid "instance of method :class:`aiogram.methods.send_poll.SendPoll`" -msgstr "" - -#: aiogram.types.message.Message.answer_dice:1 -#: aiogram.types.message.Message.reply_dice:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_dice.SendDice` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.answer_dice:7 -#: aiogram.types.message.Message.reply_dice:8 of -msgid "" -"Use this method to send an animated emoji that will display a random " -"value. On success, the sent :class:`aiogram.types.message.Message` is " -"returned." -msgstr "" - -#: aiogram.types.message.Message.answer_dice:9 -#: aiogram.types.message.Message.reply_dice:10 of -msgid "Source: https://core.telegram.org/bots/api#senddice" -msgstr "" - -#: aiogram.types.message.Message.answer_dice:11 -#: aiogram.types.message.Message.reply_dice:12 of -msgid "" -"Emoji on which the dice throw animation is based. Currently, must be one " -"of '🎲', '🎯', '🏀', '⚽', '🎳', or '🎰'. Dice can have values 1-6 for '🎲', '🎯'" -" and '🎳', values 1-5 for '🏀' and '⚽', and values 1-64 for '🎰'. Defaults " -"to '🎲'" -msgstr "" - -#: aiogram.types.message.Message.answer_dice:13 -#: aiogram.types.message.Message.reply_dice:14 of -msgid "Protects the contents of the sent message from forwarding" -msgstr "" - -#: aiogram.types.message.Message.answer_dice:17 -#: aiogram.types.message.Message.reply_dice:17 of -msgid "instance of method :class:`aiogram.methods.send_dice.SendDice`" -msgstr "" - -#: aiogram.types.message.Message.answer_sticker:1 -#: aiogram.types.message.Message.reply_sticker:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_sticker.SendSticker` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.answer_sticker:7 -#: aiogram.types.message.Message.reply_sticker:8 of -msgid "" -"Use this method to send static .WEBP, `animated " -"`_ .TGS, or `video " -"`_ .WEBM " -"stickers. On success, the sent :class:`aiogram.types.message.Message` is " -"returned." -msgstr "" - -#: aiogram.types.message.Message.answer_sticker:9 -#: aiogram.types.message.Message.reply_sticker:10 of -msgid "Source: https://core.telegram.org/bots/api#sendsticker" -msgstr "" - -#: aiogram.types.message.Message.answer_sticker:11 -#: aiogram.types.message.Message.reply_sticker:12 of -msgid "" -"Sticker to send. Pass a file_id as String to send a file that exists on " -"the Telegram servers (recommended), pass an HTTP URL as a String for " -"Telegram to get a .WEBP sticker from the Internet, or upload a new .WEBP " -"or .TGS sticker using multipart/form-data. :ref:`More information on " -"Sending Files » `. Video stickers can only be sent by a " -"file_id. Animated stickers can't be sent via an HTTP URL." -msgstr "" - -#: aiogram.types.message.Message.answer_sticker:12 -#: aiogram.types.message.Message.reply_sticker:13 of -msgid "Emoji associated with the sticker; only for just uploaded stickers" -msgstr "" - -#: aiogram.types.message.Message.answer_sticker:18 -#: aiogram.types.message.Message.reply_sticker:18 of -msgid "instance of method :class:`aiogram.methods.send_sticker.SendSticker`" -msgstr "" - -#: aiogram.types.message.Message.answer_venue:1 -#: aiogram.types.message.Message.reply_venue:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_venue.SendVenue` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.answer_venue:7 -#: aiogram.types.message.Message.reply_venue:8 of -msgid "" -"Use this method to send information about a venue. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.message.Message.answer_venue:9 -#: aiogram.types.message.Message.reply_venue:10 of -msgid "Source: https://core.telegram.org/bots/api#sendvenue" -msgstr "" - -#: aiogram.types.message.Message.answer_venue:11 -#: aiogram.types.message.Message.reply_venue:12 of -msgid "Latitude of the venue" -msgstr "" - -#: aiogram.types.message.Message.answer_venue:12 -#: aiogram.types.message.Message.reply_venue:13 of -msgid "Longitude of the venue" -msgstr "" - -#: aiogram.types.message.Message.answer_venue:13 -#: aiogram.types.message.Message.reply_venue:14 of -msgid "Name of the venue" -msgstr "" - -#: aiogram.types.message.Message.answer_venue:14 -#: aiogram.types.message.Message.reply_venue:15 of -msgid "Address of the venue" -msgstr "" - -#: aiogram.types.message.Message.answer_venue:15 -#: aiogram.types.message.Message.reply_venue:16 of -msgid "Foursquare identifier of the venue" -msgstr "" - -#: aiogram.types.message.Message.answer_venue:16 -#: aiogram.types.message.Message.reply_venue:17 of -msgid "" -"Foursquare type of the venue, if known. (For example, " -"'arts_entertainment/default', 'arts_entertainment/aquarium' or " -"'food/icecream'.)" -msgstr "" - -#: aiogram.types.message.Message.answer_venue:17 -#: aiogram.types.message.Message.reply_venue:18 of -msgid "Google Places identifier of the venue" -msgstr "" - -#: aiogram.types.message.Message.answer_venue:18 -#: aiogram.types.message.Message.reply_venue:19 of -msgid "" -"Google Places type of the venue. (See `supported types " -"`_.)" -msgstr "" - -#: aiogram.types.message.Message.answer_venue:24 -#: aiogram.types.message.Message.reply_venue:24 of -msgid "instance of method :class:`aiogram.methods.send_venue.SendVenue`" -msgstr "" - -#: aiogram.types.message.Message.answer_video:1 -#: aiogram.types.message.Message.reply_video:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_video.SendVideo` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.answer_video:7 -#: aiogram.types.message.Message.reply_video:8 of -msgid "" -"Use this method to send video files, Telegram clients support MPEG4 " -"videos (other formats may be sent as " -":class:`aiogram.types.document.Document`). On success, the sent " -":class:`aiogram.types.message.Message` is returned. Bots can currently " -"send video files of up to 50 MB in size, this limit may be changed in the" -" future." -msgstr "" - -#: aiogram.types.message.Message.answer_video:9 -#: aiogram.types.message.Message.reply_video:10 of -msgid "Source: https://core.telegram.org/bots/api#sendvideo" -msgstr "" - -#: aiogram.types.message.Message.answer_video:11 -#: aiogram.types.message.Message.reply_video:12 of -msgid "" -"Video to send. Pass a file_id as String to send a video that exists on " -"the Telegram servers (recommended), pass an HTTP URL as a String for " -"Telegram to get a video from the Internet, or upload a new video using " -"multipart/form-data. :ref:`More information on Sending Files » `" -msgstr "" - -#: aiogram.types.message.Message.answer_video:12 -#: aiogram.types.message.Message.answer_video_note:12 -#: aiogram.types.message.Message.reply_video:13 -#: aiogram.types.message.Message.reply_video_note:13 of -msgid "Duration of sent video in seconds" -msgstr "" - -#: aiogram.types.message.Message.answer_video:13 -#: aiogram.types.message.Message.reply_video:14 of -msgid "Video width" -msgstr "" - -#: aiogram.types.message.Message.answer_video:14 -#: aiogram.types.message.Message.reply_video:15 of -msgid "Video height" -msgstr "" - -#: aiogram.types.message.Message.answer_video:16 -#: aiogram.types.message.Message.reply_video:17 of -msgid "" -"Video caption (may also be used when resending videos by *file_id*), " -"0-1024 characters after entities parsing" -msgstr "" - -#: aiogram.types.message.Message.answer_video:17 -#: aiogram.types.message.Message.reply_video:18 of -msgid "" -"Mode for parsing entities in the video caption. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: aiogram.types.message.Message.answer_video:19 -#: aiogram.types.message.Message.reply_video:20 of -msgid "" -"Pass :code:`True` if the video needs to be covered with a spoiler " -"animation" -msgstr "" - -#: aiogram.types.message.Message.answer_video:20 -#: aiogram.types.message.Message.reply_video:21 of -msgid "Pass :code:`True` if the uploaded video is suitable for streaming" -msgstr "" - -#: aiogram.types.message.Message.answer_video:26 -#: aiogram.types.message.Message.reply_video:26 of -msgid "instance of method :class:`aiogram.methods.send_video.SendVideo`" -msgstr "" - -#: aiogram.types.message.Message.answer_video_note:1 -#: aiogram.types.message.Message.reply_video_note:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.send_video_note.SendVideoNote` will automatically" -" fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.answer_video_note:7 -#: aiogram.types.message.Message.reply_video_note:8 of -msgid "" -"As of `v.4.0 `_, " -"Telegram clients support rounded square MPEG4 videos of up to 1 minute " -"long. Use this method to send video messages. On success, the sent " -":class:`aiogram.types.message.Message` is returned." -msgstr "" - -#: aiogram.types.message.Message.answer_video_note:9 -#: aiogram.types.message.Message.reply_video_note:10 of -msgid "Source: https://core.telegram.org/bots/api#sendvideonote" -msgstr "" - -#: aiogram.types.message.Message.answer_video_note:11 -#: aiogram.types.message.Message.reply_video_note:12 of -msgid "" -"Video note to send. Pass a file_id as String to send a video note that " -"exists on the Telegram servers (recommended) or upload a new video using " -"multipart/form-data. :ref:`More information on Sending Files » `. Sending video notes by a URL is currently unsupported" -msgstr "" - -#: aiogram.types.message.Message.answer_video_note:13 -#: aiogram.types.message.Message.reply_video_note:14 of -msgid "Video width and height, i.e. diameter of the video message" -msgstr "" - -#: aiogram.types.message.Message.answer_video_note:20 -#: aiogram.types.message.Message.reply_video_note:20 of -msgid "instance of method :class:`aiogram.methods.send_video_note.SendVideoNote`" -msgstr "" - -#: aiogram.types.message.Message.answer_voice:1 -#: aiogram.types.message.Message.reply_voice:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.send_voice.SendVoice` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.answer_voice:7 -#: aiogram.types.message.Message.reply_voice:8 of -msgid "" -"Use this method to send audio files, if you want Telegram clients to " -"display the file as a playable voice message. For this to work, your " -"audio must be in an .OGG file encoded with OPUS (other formats may be " -"sent as :class:`aiogram.types.audio.Audio` or " -":class:`aiogram.types.document.Document`). On success, the sent " -":class:`aiogram.types.message.Message` is returned. Bots can currently " -"send voice messages of up to 50 MB in size, this limit may be changed in " -"the future." -msgstr "" - -#: aiogram.types.message.Message.answer_voice:9 -#: aiogram.types.message.Message.reply_voice:10 of -msgid "Source: https://core.telegram.org/bots/api#sendvoice" -msgstr "" - -#: aiogram.types.message.Message.answer_voice:11 -#: aiogram.types.message.Message.reply_voice:12 of -msgid "" -"Audio file to send. Pass a file_id as String to send a file that exists " -"on the Telegram servers (recommended), pass an HTTP URL as a String for " -"Telegram to get a file from the Internet, or upload a new one using " -"multipart/form-data. :ref:`More information on Sending Files » `" -msgstr "" - -#: aiogram.types.message.Message.answer_voice:12 -#: aiogram.types.message.Message.reply_voice:13 of -msgid "Voice message caption, 0-1024 characters after entities parsing" -msgstr "" - -#: aiogram.types.message.Message.answer_voice:13 -#: aiogram.types.message.Message.reply_voice:14 of -msgid "" -"Mode for parsing entities in the voice message caption. See `formatting " -"options `_ for " -"more details." -msgstr "" - -#: aiogram.types.message.Message.answer_voice:15 -#: aiogram.types.message.Message.reply_voice:16 of -msgid "Duration of the voice message in seconds" -msgstr "" - -#: aiogram.types.message.Message.answer_voice:21 -#: aiogram.types.message.Message.reply_voice:21 of -msgid "instance of method :class:`aiogram.methods.send_voice.SendVoice`" -msgstr "" - -#: aiogram.types.message.Message.send_copy:1 of -msgid "Send copy of a message." -msgstr "" - -#: aiogram.types.message.Message.send_copy:3 of -msgid "" -"Is similar to :meth:`aiogram.client.bot.Bot.copy_message` but returning " -"the sent message instead of :class:`aiogram.types.message_id.MessageId`" -msgstr "" - -#: aiogram.types.message.Message.send_copy:8 of -msgid "" -"This method doesn't use the API method named `copyMessage` and " -"historically implemented before the similar method is added to API" -msgstr "" - -#: aiogram.types.message.Message.copy_to:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.copy_message.CopyMessage` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.copy_to:4 -#: aiogram.types.message.Message.forward:4 of -msgid ":code:`from_chat_id`" -msgstr "" - -#: aiogram.types.message.Message.copy_to:5 -#: aiogram.types.message.Message.delete:5 -#: aiogram.types.message.Message.delete_reply_markup:5 -#: aiogram.types.message.Message.edit_caption:5 -#: aiogram.types.message.Message.edit_live_location:5 -#: aiogram.types.message.Message.edit_media:5 -#: aiogram.types.message.Message.edit_reply_markup:5 -#: aiogram.types.message.Message.edit_text:5 -#: aiogram.types.message.Message.forward:5 aiogram.types.message.Message.pin:5 -#: aiogram.types.message.Message.stop_live_location:5 -#: aiogram.types.message.Message.unpin:5 of -msgid ":code:`message_id`" -msgstr "" - -#: aiogram.types.message.Message.copy_to:7 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.types.message.Message.copy_to:9 of -msgid "Source: https://core.telegram.org/bots/api#copymessage" -msgstr "" - -#: aiogram.types.message.Message.copy_to:11 -#: aiogram.types.message.Message.forward:11 of -msgid "" -"Unique identifier for the target chat or username of the target channel " -"(in the format :code:`@channelusername`)" -msgstr "" - -#: aiogram.types.message.Message.copy_to:12 -#: aiogram.types.message.Message.forward:12 of -msgid "" -"Unique identifier for the target message thread (topic) of the forum; for" -" forum supergroups only" -msgstr "" - -#: aiogram.types.message.Message.copy_to:13 of -msgid "" -"New caption for media, 0-1024 characters after entities parsing. If not " -"specified, the original caption is kept" -msgstr "" - -#: aiogram.types.message.Message.copy_to:14 of -msgid "" -"Mode for parsing entities in the new caption. See `formatting options " -"`_ for more " -"details." -msgstr "" - -#: aiogram.types.message.Message.copy_to:15 of -msgid "" -"A JSON-serialized list of special entities that appear in the new " -"caption, which can be specified instead of *parse_mode*" -msgstr "" - -#: aiogram.types.message.Message.copy_to:21 of -msgid "instance of method :class:`aiogram.methods.copy_message.CopyMessage`" -msgstr "" - -#: aiogram.types.message.Message.edit_text:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.edit_message_text.EditMessageText` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.edit_text:7 of -msgid "" -"Use this method to edit text and `game " -"`_ 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.types.message.Message.edit_text:9 of -msgid "Source: https://core.telegram.org/bots/api#editmessagetext" -msgstr "" - -#: aiogram.types.message.Message.edit_text:11 of -msgid "New text of the message, 1-4096 characters after entities parsing" -msgstr "" - -#: aiogram.types.message.Message.delete_reply_markup:12 -#: aiogram.types.message.Message.edit_caption:11 -#: aiogram.types.message.Message.edit_live_location:13 -#: aiogram.types.message.Message.edit_media:12 -#: aiogram.types.message.Message.edit_reply_markup:11 -#: aiogram.types.message.Message.edit_text:12 -#: aiogram.types.message.Message.stop_live_location:11 of -msgid "" -"Required if *chat_id* and *message_id* are not specified. Identifier of " -"the inline message" -msgstr "" - -#: aiogram.types.message.Message.edit_caption:15 -#: aiogram.types.message.Message.edit_reply_markup:12 -#: aiogram.types.message.Message.edit_text:16 of -msgid "" -"A JSON-serialized object for an `inline keyboard " -"`_." -msgstr "" - -#: aiogram.types.message.Message.edit_text:17 of -msgid "" -"instance of method " -":class:`aiogram.methods.edit_message_text.EditMessageText`" -msgstr "" - -#: aiogram.types.message.Message.forward:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.forward_message.ForwardMessage` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.forward:7 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.types.message.Message.forward:9 of -msgid "Source: https://core.telegram.org/bots/api#forwardmessage" -msgstr "" - -#: aiogram.types.message.Message.forward:14 of -msgid "Protects the contents of the forwarded message from forwarding and saving" -msgstr "" - -#: aiogram.types.message.Message.forward:15 of -msgid "instance of method :class:`aiogram.methods.forward_message.ForwardMessage`" -msgstr "" - -#: aiogram.types.message.Message.edit_media:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.edit_message_media.EditMessageMedia` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.edit_media:7 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.types.message.Message.edit_media:9 of -msgid "Source: https://core.telegram.org/bots/api#editmessagemedia" -msgstr "" - -#: aiogram.types.message.Message.edit_media:11 of -msgid "A JSON-serialized object for a new media content of the message" -msgstr "" - -#: aiogram.types.message.Message.edit_live_location:17 -#: aiogram.types.message.Message.edit_media:13 -#: aiogram.types.message.Message.stop_live_location:12 of -msgid "" -"A JSON-serialized object for a new `inline keyboard " -"`_." -msgstr "" - -#: aiogram.types.message.Message.edit_media:14 of -msgid "" -"instance of method " -":class:`aiogram.methods.edit_message_media.EditMessageMedia`" -msgstr "" - -#: aiogram.types.message.Message.delete_reply_markup:1 -#: aiogram.types.message.Message.edit_reply_markup:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.edit_message_reply_markup.EditMessageReplyMarkup`" -" will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.delete_reply_markup:8 -#: aiogram.types.message.Message.edit_reply_markup:7 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.types.message.Message.delete_reply_markup:10 -#: aiogram.types.message.Message.edit_reply_markup:9 of -msgid "Source: https://core.telegram.org/bots/api#editmessagereplymarkup" -msgstr "" - -#: aiogram.types.message.Message.delete_reply_markup:13 -#: aiogram.types.message.Message.edit_reply_markup:13 of -msgid "" -"instance of method " -":class:`aiogram.methods.edit_message_reply_markup.EditMessageReplyMarkup`" -msgstr "" - -#: aiogram.types.message.Message.delete_reply_markup:6 of -msgid ":code:`reply_markup`" -msgstr "" - -#: aiogram.types.message.Message.edit_live_location:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.edit_message_live_location.EditMessageLiveLocation`" -" will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.edit_live_location:7 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.types.message.Message.edit_live_location:9 of -msgid "Source: https://core.telegram.org/bots/api#editmessagelivelocation" -msgstr "" - -#: aiogram.types.message.Message.edit_live_location:11 of -msgid "Latitude of new location" -msgstr "" - -#: aiogram.types.message.Message.edit_live_location:12 of -msgid "Longitude of new location" -msgstr "" - -#: aiogram.types.message.Message.edit_live_location:15 of -msgid "" -"Direction in which the user is moving, in degrees. Must be between 1 and " -"360 if specified." -msgstr "" - -#: aiogram.types.message.Message.edit_live_location:16 of -msgid "" -"The maximum distance for proximity alerts about approaching another chat " -"member, in meters. Must be between 1 and 100000 if specified." -msgstr "" - -#: aiogram.types.message.Message.edit_live_location:18 of -msgid "" -"instance of method " -":class:`aiogram.methods.edit_message_live_location.EditMessageLiveLocation`" -msgstr "" - -#: aiogram.types.message.Message.stop_live_location:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.stop_message_live_location.StopMessageLiveLocation`" -" will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.stop_live_location:7 of -msgid "" -"Use this method to stop updating a live location message before " -"*live_period* expires. On success, if the message is not an inline " -"message, the edited :class:`aiogram.types.message.Message` is returned, " -"otherwise :code:`True` is returned." -msgstr "" - -#: aiogram.types.message.Message.stop_live_location:9 of -msgid "Source: https://core.telegram.org/bots/api#stopmessagelivelocation" -msgstr "" - -#: aiogram.types.message.Message.stop_live_location:13 of -msgid "" -"instance of method " -":class:`aiogram.methods.stop_message_live_location.StopMessageLiveLocation`" -msgstr "" - -#: aiogram.types.message.Message.edit_caption:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.edit_message_caption.EditMessageCaption` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.edit_caption:7 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.types.message.Message.edit_caption:9 of -msgid "Source: https://core.telegram.org/bots/api#editmessagecaption" -msgstr "" - -#: aiogram.types.message.Message.edit_caption:12 of -msgid "New caption of the message, 0-1024 characters after entities parsing" -msgstr "" - -#: aiogram.types.message.Message.edit_caption:13 of -msgid "" -"Mode for parsing entities in the message caption. See `formatting options" -" `_ for more " -"details." -msgstr "" - -#: aiogram.types.message.Message.edit_caption:16 of -msgid "" -"instance of method " -":class:`aiogram.methods.edit_message_caption.EditMessageCaption`" -msgstr "" - -#: aiogram.types.message.Message.delete:1 of -msgid "" -"Shortcut for method :class:`aiogram.methods.delete_message.DeleteMessage`" -" will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.delete:7 of -msgid "" -"Use this method to delete a message, including service messages, with the" -" following limitations:" -msgstr "" - -#: aiogram.types.message.Message.delete:9 of -msgid "A message can only be deleted if it was sent less than 48 hours ago." -msgstr "" - -#: aiogram.types.message.Message.delete:11 of -msgid "" -"Service messages about a supergroup, channel, or forum topic creation " -"can't be deleted." -msgstr "" - -#: aiogram.types.message.Message.delete:13 of -msgid "" -"A dice message in a private chat can only be deleted if it was sent more " -"than 24 hours ago." -msgstr "" - -#: aiogram.types.message.Message.delete:15 of -msgid "" -"Bots can delete outgoing messages in private chats, groups, and " -"supergroups." -msgstr "" - -#: aiogram.types.message.Message.delete:17 of -msgid "Bots can delete incoming messages in private chats." -msgstr "" - -#: aiogram.types.message.Message.delete:19 of -msgid "" -"Bots granted *can_post_messages* permissions can delete outgoing messages" -" in channels." -msgstr "" - -#: aiogram.types.message.Message.delete:21 of -msgid "" -"If the bot is an administrator of a group, it can delete any message " -"there." -msgstr "" - -#: aiogram.types.message.Message.delete:23 of -msgid "" -"If the bot has *can_delete_messages* permission in a supergroup or a " -"channel, it can delete any message there." -msgstr "" - -#: aiogram.types.message.Message.delete:25 of -msgid "Returns :code:`True` on success." -msgstr "" - -#: aiogram.types.message.Message.delete:27 of -msgid "Source: https://core.telegram.org/bots/api#deletemessage" -msgstr "" - -#: aiogram.types.message.Message.delete:29 of -msgid "instance of method :class:`aiogram.methods.delete_message.DeleteMessage`" -msgstr "" - -#: aiogram.types.message.Message.pin:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.pin_chat_message.PinChatMessage` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.pin:7 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.types.message.Message.pin:9 of -msgid "Source: https://core.telegram.org/bots/api#pinchatmessage" -msgstr "" - -#: aiogram.types.message.Message.pin:11 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 "" - -#: aiogram.types.message.Message.pin:12 of -msgid "" -"instance of method " -":class:`aiogram.methods.pin_chat_message.PinChatMessage`" -msgstr "" - -#: aiogram.types.message.Message.unpin:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.unpin_chat_message.UnpinChatMessage` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.message.Message.unpin:7 of -msgid "" -"Use this method to remove a message from 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.types.message.Message.unpin:9 of -msgid "Source: https://core.telegram.org/bots/api#unpinchatmessage" -msgstr "" - -#: aiogram.types.message.Message.unpin:11 of -msgid "" -"instance of method " -":class:`aiogram.methods.unpin_chat_message.UnpinChatMessage`" -msgstr "" - -#: aiogram.types.message.Message.get_url:1 of -msgid "" -"Returns message URL. Cannot be used in private (one-to-one) chats. If " -"chat has a username, returns URL like https://t.me/username/message_id " -"Otherwise (or if {force_private} flag is set), returns " -"https://t.me/c/shifted_chat_id/message_id" -msgstr "" - -#: aiogram.types.message.Message.get_url:5 of -msgid "if set, a private URL is returned even for a public chat" -msgstr "" - -#: aiogram.types.message.Message.get_url:6 of -msgid "string with full message URL" -msgstr "" - -#~ msgid "Reply with animation" -#~ msgstr "" - -#~ msgid "Answer with animation" -#~ msgstr "" - -#~ msgid "Reply with audio" -#~ msgstr "" - -#~ msgid "Answer with audio" -#~ msgstr "" - -#~ msgid "Reply with contact" -#~ msgstr "" - -#~ msgid "Answer with contact" -#~ msgstr "" - -#~ msgid "Reply with document" -#~ msgstr "" - -#~ msgid "Answer with document" -#~ msgstr "" - -#~ msgid "Reply with game" -#~ msgstr "" - -#~ msgid "Answer with game" -#~ msgstr "" - -#~ msgid "Reply with invoice" -#~ msgstr "" - -#~ msgid "" -#~ "A JSON-serialized object for an " -#~ "`inline keyboard `_. If empty, one 'Pay " -#~ ":code:`total price`' button will be " -#~ "shown. If not empty, the first " -#~ "button must be a Pay button." -#~ msgstr "" - -#~ msgid "On success, the sent Message is returned." -#~ msgstr "" - -#~ msgid "Answer with invoice" -#~ msgstr "" - -#~ msgid "Reply with location" -#~ msgstr "" - -#~ msgid "Answer with location" -#~ msgstr "" - -#~ msgid "Reply with media group" -#~ msgstr "" - -#~ msgid "Answer with media group" -#~ msgstr "" - -#~ msgid "Reply with text message" -#~ msgstr "" - -#~ msgid "Answer with text message" -#~ msgstr "" - -#~ msgid "Reply with photo" -#~ msgstr "" - -#~ msgid "Answer with photo" -#~ msgstr "" - -#~ msgid "Reply with poll" -#~ msgstr "" - -#~ msgid "Answer with poll" -#~ msgstr "" - -#~ msgid ":param explanation:" -#~ msgstr "" - -#~ msgid "param explanation" -#~ msgstr "" - -#~ msgid "Reply with dice" -#~ msgstr "" - -#~ msgid "Answer with dice" -#~ msgstr "" - -#~ msgid "Reply with sticker" -#~ msgstr "" - -#~ msgid "Answer with sticker" -#~ msgstr "" - -#~ msgid "Reply with venue" -#~ msgstr "" - -#~ msgid "Answer with venue" -#~ msgstr "" - -#~ msgid "Reply with video" -#~ msgstr "" - -#~ msgid "Answer with video" -#~ msgstr "" - -#~ msgid "Reply wit video note" -#~ msgstr "" - -#~ msgid "Answer wit video note" -#~ msgstr "" - -#~ msgid "Reply with voice" -#~ msgstr "" - -#~ msgid "Answer with voice" -#~ msgstr "" - -#~ msgid "Copy message" -#~ msgstr "" - -#~ msgid "" -#~ "Sticker to send. Pass a file_id as" -#~ " String to send a file that " -#~ "exists on the Telegram servers " -#~ "(recommended), pass an HTTP URL as " -#~ "a String for Telegram to get a " -#~ ".WEBP file from the Internet, or " -#~ "upload a new one using multipart" -#~ "/form-data. :ref:`More information on " -#~ "Sending Files » `" -#~ msgstr "" - -#~ msgid "Send copy of message." -#~ msgstr "" - -#~ msgid "" -#~ "This method don't use the API " -#~ "method named `copyMessage` and historically" -#~ " implemented before the similar method " -#~ "is added to API" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/message_auto_delete_timer_changed.po b/docs/locale/en/LC_MESSAGES/api/types/message_auto_delete_timer_changed.po deleted file mode 100644 index a4094144..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/message_auto_delete_timer_changed.po +++ /dev/null @@ -1,40 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/message_auto_delete_timer_changed.rst:3 -msgid "MessageAutoDeleteTimerChanged" -msgstr "" - -#: aiogram.types.message_auto_delete_timer_changed.MessageAutoDeleteTimerChanged:1 -#: of -msgid "" -"This object represents a service message about a change in auto-delete " -"timer settings." -msgstr "" - -#: aiogram.types.message_auto_delete_timer_changed.MessageAutoDeleteTimerChanged:3 -#: of -msgid "Source: https://core.telegram.org/bots/api#messageautodeletetimerchanged" -msgstr "" - -#: ../../docstring -#: aiogram.types.message_auto_delete_timer_changed.MessageAutoDeleteTimerChanged.message_auto_delete_time:1 -#: of -msgid "New auto-delete time for messages in the chat; in seconds" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/message_entity.po b/docs/locale/en/LC_MESSAGES/api/types/message_entity.po deleted file mode 100644 index 806b3cd0..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/message_entity.po +++ /dev/null @@ -1,87 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/message_entity.rst:3 -msgid "MessageEntity" -msgstr "" - -#: aiogram.types.message_entity.MessageEntity:1 of -msgid "" -"This object represents one special entity in a text message. For example," -" hashtags, usernames, URLs, etc." -msgstr "" - -#: aiogram.types.message_entity.MessageEntity:3 of -msgid "Source: https://core.telegram.org/bots/api#messageentity" -msgstr "" - -#: ../../docstring aiogram.types.message_entity.MessageEntity.type:1 of -msgid "" -"Type of the entity. Currently, can be 'mention' (:code:`@username`), " -"'hashtag' (:code:`#hashtag`), 'cashtag' (:code:`$USD`), 'bot_command' " -"(:code:`/start@jobs_bot`), 'url' (:code:`https://telegram.org`), 'email' " -"(:code:`do-not-reply@telegram.org`), 'phone_number' " -"(:code:`+1-212-555-0123`), 'bold' (**bold text**), 'italic' (*italic " -"text*), 'underline' (underlined text), 'strikethrough' (strikethrough " -"text), 'spoiler' (spoiler message), 'code' (monowidth string), 'pre' " -"(monowidth block), 'text_link' (for clickable text URLs), 'text_mention' " -"(for users `without usernames `_), 'custom_emoji' (for inline custom emoji stickers)" -msgstr "" - -#: ../../docstring aiogram.types.message_entity.MessageEntity.offset:1 of -msgid "" -"Offset in `UTF-16 code units `_ to the start of the entity" -msgstr "" - -#: ../../docstring aiogram.types.message_entity.MessageEntity.length:1 of -msgid "" -"Length of the entity in `UTF-16 code units " -"`_" -msgstr "" - -#: ../../docstring aiogram.types.message_entity.MessageEntity.url:1 of -msgid "" -"*Optional*. For 'text_link' only, URL that will be opened after user taps" -" on the text" -msgstr "" - -#: ../../docstring aiogram.types.message_entity.MessageEntity.user:1 of -msgid "*Optional*. For 'text_mention' only, the mentioned user" -msgstr "" - -#: ../../docstring aiogram.types.message_entity.MessageEntity.language:1 of -msgid "*Optional*. For 'pre' only, the programming language of the entity text" -msgstr "" - -#: ../../docstring aiogram.types.message_entity.MessageEntity.custom_emoji_id:1 -#: of -msgid "" -"*Optional*. For 'custom_emoji' only, unique identifier of the custom " -"emoji. Use " -":class:`aiogram.methods.get_custom_emoji_stickers.GetCustomEmojiStickers`" -" to get full information about the sticker" -msgstr "" - -#~ msgid "Offset in UTF-16 code units to the start of the entity" -#~ msgstr "" - -#~ msgid "Length of the entity in UTF-16 code units" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/message_id.po b/docs/locale/en/LC_MESSAGES/api/types/message_id.po deleted file mode 100644 index fd2da80c..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/message_id.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/message_id.rst:3 -msgid "MessageId" -msgstr "" - -#: aiogram.types.message_id.MessageId:1 of -msgid "This object represents a unique message identifier." -msgstr "" - -#: aiogram.types.message_id.MessageId:3 of -msgid "Source: https://core.telegram.org/bots/api#messageid" -msgstr "" - -#: ../../docstring aiogram.types.message_id.MessageId.message_id:1 of -msgid "Unique message identifier" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/order_info.po b/docs/locale/en/LC_MESSAGES/api/types/order_info.po deleted file mode 100644 index bbf98947..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/order_info.po +++ /dev/null @@ -1,46 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/order_info.rst:3 -msgid "OrderInfo" -msgstr "" - -#: aiogram.types.order_info.OrderInfo:1 of -msgid "This object represents information about an order." -msgstr "" - -#: aiogram.types.order_info.OrderInfo:3 of -msgid "Source: https://core.telegram.org/bots/api#orderinfo" -msgstr "" - -#: ../../docstring aiogram.types.order_info.OrderInfo.name:1 of -msgid "*Optional*. User name" -msgstr "" - -#: ../../docstring aiogram.types.order_info.OrderInfo.phone_number:1 of -msgid "*Optional*. User's phone number" -msgstr "" - -#: ../../docstring aiogram.types.order_info.OrderInfo.email:1 of -msgid "*Optional*. User email" -msgstr "" - -#: ../../docstring aiogram.types.order_info.OrderInfo.shipping_address:1 of -msgid "*Optional*. User shipping address" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/passport_data.po b/docs/locale/en/LC_MESSAGES/api/types/passport_data.po deleted file mode 100644 index 528f756b..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/passport_data.po +++ /dev/null @@ -1,40 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/passport_data.rst:3 -msgid "PassportData" -msgstr "" - -#: aiogram.types.passport_data.PassportData:1 of -msgid "Describes Telegram Passport data shared with the bot by the user." -msgstr "" - -#: aiogram.types.passport_data.PassportData:3 of -msgid "Source: https://core.telegram.org/bots/api#passportdata" -msgstr "" - -#: ../../docstring aiogram.types.passport_data.PassportData.data:1 of -msgid "" -"Array with information about documents and other Telegram Passport " -"elements that was shared with the bot" -msgstr "" - -#: ../../docstring aiogram.types.passport_data.PassportData.credentials:1 of -msgid "Encrypted credentials required to decrypt the data" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error.po b/docs/locale/en/LC_MESSAGES/api/types/passport_element_error.po deleted file mode 100644 index 53acdac9..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/passport_element_error.rst:3 -msgid "PassportElementError" -msgstr "" - -#: aiogram.types.passport_element_error.PassportElementError:1 of -msgid "" -"This object represents an error in the Telegram Passport element which " -"was submitted that should be resolved by the user. It should be one of:" -msgstr "" - -#: aiogram.types.passport_element_error.PassportElementError:3 of -msgid ":class:`aiogram.types.passport_element_error_data_field.PassportElementErrorDataField`" -msgstr "" - -#: aiogram.types.passport_element_error.PassportElementError:4 of -msgid ":class:`aiogram.types.passport_element_error_front_side.PassportElementErrorFrontSide`" -msgstr "" - -#: aiogram.types.passport_element_error.PassportElementError:5 of -msgid ":class:`aiogram.types.passport_element_error_reverse_side.PassportElementErrorReverseSide`" -msgstr "" - -#: aiogram.types.passport_element_error.PassportElementError:6 of -msgid ":class:`aiogram.types.passport_element_error_selfie.PassportElementErrorSelfie`" -msgstr "" - -#: aiogram.types.passport_element_error.PassportElementError:7 of -msgid ":class:`aiogram.types.passport_element_error_file.PassportElementErrorFile`" -msgstr "" - -#: aiogram.types.passport_element_error.PassportElementError:8 of -msgid ":class:`aiogram.types.passport_element_error_files.PassportElementErrorFiles`" -msgstr "" - -#: aiogram.types.passport_element_error.PassportElementError:9 of -msgid ":class:`aiogram.types.passport_element_error_translation_file.PassportElementErrorTranslationFile`" -msgstr "" - -#: aiogram.types.passport_element_error.PassportElementError:10 of -msgid ":class:`aiogram.types.passport_element_error_translation_files.PassportElementErrorTranslationFiles`" -msgstr "" - -#: aiogram.types.passport_element_error.PassportElementError:11 of -msgid ":class:`aiogram.types.passport_element_error_unspecified.PassportElementErrorUnspecified`" -msgstr "" - -#: aiogram.types.passport_element_error.PassportElementError:13 of -msgid "Source: https://core.telegram.org/bots/api#passportelementerror" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_data_field.po b/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_data_field.po deleted file mode 100644 index e3f9454c..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_data_field.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/passport_element_error_data_field.rst:3 -msgid "PassportElementErrorDataField" -msgstr "" - -#: aiogram.types.passport_element_error_data_field.PassportElementErrorDataField:1 -#: of -msgid "" -"Represents an issue in one of the data fields that was provided by the " -"user. The error is considered resolved when the field's value changes." -msgstr "" - -#: aiogram.types.passport_element_error_data_field.PassportElementErrorDataField:3 -#: of -msgid "Source: https://core.telegram.org/bots/api#passportelementerrordatafield" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_data_field.PassportElementErrorDataField.source:1 -#: of -msgid "Error source, must be *data*" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_data_field.PassportElementErrorDataField.type:1 -#: of -msgid "" -"The section of the user's Telegram Passport which has the error, one of " -"'personal_details', 'passport', 'driver_license', 'identity_card', " -"'internal_passport', 'address'" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_data_field.PassportElementErrorDataField.field_name:1 -#: of -msgid "Name of the data field which has the error" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_data_field.PassportElementErrorDataField.data_hash:1 -#: of -msgid "Base64-encoded data hash" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_data_field.PassportElementErrorDataField.message:1 -#: of -msgid "Error message" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_file.po b/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_file.po deleted file mode 100644 index 96079e3e..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_file.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/passport_element_error_file.rst:3 -msgid "PassportElementErrorFile" -msgstr "" - -#: aiogram.types.passport_element_error_file.PassportElementErrorFile:1 of -msgid "" -"Represents an issue with a document scan. The error is considered " -"resolved when the file with the document scan changes." -msgstr "" - -#: aiogram.types.passport_element_error_file.PassportElementErrorFile:3 of -msgid "Source: https://core.telegram.org/bots/api#passportelementerrorfile" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_file.PassportElementErrorFile.source:1 -#: of -msgid "Error source, must be *file*" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_file.PassportElementErrorFile.type:1 of -msgid "" -"The section of the user's Telegram Passport which has the issue, one of " -"'utility_bill', 'bank_statement', 'rental_agreement', " -"'passport_registration', 'temporary_registration'" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_file.PassportElementErrorFile.file_hash:1 -#: of -msgid "Base64-encoded file hash" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_file.PassportElementErrorFile.message:1 -#: of -msgid "Error message" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_files.po b/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_files.po deleted file mode 100644 index 259754a3..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_files.po +++ /dev/null @@ -1,59 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/passport_element_error_files.rst:3 -msgid "PassportElementErrorFiles" -msgstr "" - -#: aiogram.types.passport_element_error_files.PassportElementErrorFiles:1 of -msgid "" -"Represents an issue with a list of scans. The error is considered " -"resolved when the list of files containing the scans changes." -msgstr "" - -#: aiogram.types.passport_element_error_files.PassportElementErrorFiles:3 of -msgid "Source: https://core.telegram.org/bots/api#passportelementerrorfiles" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_files.PassportElementErrorFiles.source:1 -#: of -msgid "Error source, must be *files*" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_files.PassportElementErrorFiles.type:1 -#: of -msgid "" -"The section of the user's Telegram Passport which has the issue, one of " -"'utility_bill', 'bank_statement', 'rental_agreement', " -"'passport_registration', 'temporary_registration'" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_files.PassportElementErrorFiles.file_hashes:1 -#: of -msgid "List of base64-encoded file hashes" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_files.PassportElementErrorFiles.message:1 -#: of -msgid "Error message" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_front_side.po b/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_front_side.po deleted file mode 100644 index c8223d9e..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_front_side.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/passport_element_error_front_side.rst:3 -msgid "PassportElementErrorFrontSide" -msgstr "" - -#: aiogram.types.passport_element_error_front_side.PassportElementErrorFrontSide:1 -#: of -msgid "" -"Represents an issue with the front side of a document. The error is " -"considered resolved when the file with the front side of the document " -"changes." -msgstr "" - -#: aiogram.types.passport_element_error_front_side.PassportElementErrorFrontSide:3 -#: of -msgid "Source: https://core.telegram.org/bots/api#passportelementerrorfrontside" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_front_side.PassportElementErrorFrontSide.source:1 -#: of -msgid "Error source, must be *front_side*" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_front_side.PassportElementErrorFrontSide.type:1 -#: of -msgid "" -"The section of the user's Telegram Passport which has the issue, one of " -"'passport', 'driver_license', 'identity_card', 'internal_passport'" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_front_side.PassportElementErrorFrontSide.file_hash:1 -#: of -msgid "Base64-encoded hash of the file with the front side of the document" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_front_side.PassportElementErrorFrontSide.message:1 -#: of -msgid "Error message" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_reverse_side.po b/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_reverse_side.po deleted file mode 100644 index 301e3b56..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_reverse_side.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/passport_element_error_reverse_side.rst:3 -msgid "PassportElementErrorReverseSide" -msgstr "" - -#: aiogram.types.passport_element_error_reverse_side.PassportElementErrorReverseSide:1 -#: of -msgid "" -"Represents an issue with the reverse side of a document. The error is " -"considered resolved when the file with reverse side of the document " -"changes." -msgstr "" - -#: aiogram.types.passport_element_error_reverse_side.PassportElementErrorReverseSide:3 -#: of -msgid "Source: https://core.telegram.org/bots/api#passportelementerrorreverseside" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_reverse_side.PassportElementErrorReverseSide.source:1 -#: of -msgid "Error source, must be *reverse_side*" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_reverse_side.PassportElementErrorReverseSide.type:1 -#: of -msgid "" -"The section of the user's Telegram Passport which has the issue, one of " -"'driver_license', 'identity_card'" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_reverse_side.PassportElementErrorReverseSide.file_hash:1 -#: of -msgid "Base64-encoded hash of the file with the reverse side of the document" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_reverse_side.PassportElementErrorReverseSide.message:1 -#: of -msgid "Error message" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_selfie.po b/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_selfie.po deleted file mode 100644 index 9e37ef2a..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_selfie.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/passport_element_error_selfie.rst:3 -msgid "PassportElementErrorSelfie" -msgstr "" - -#: aiogram.types.passport_element_error_selfie.PassportElementErrorSelfie:1 of -msgid "" -"Represents an issue with the selfie with a document. The error is " -"considered resolved when the file with the selfie changes." -msgstr "" - -#: aiogram.types.passport_element_error_selfie.PassportElementErrorSelfie:3 of -msgid "Source: https://core.telegram.org/bots/api#passportelementerrorselfie" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_selfie.PassportElementErrorSelfie.source:1 -#: of -msgid "Error source, must be *selfie*" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_selfie.PassportElementErrorSelfie.type:1 -#: of -msgid "" -"The section of the user's Telegram Passport which has the issue, one of " -"'passport', 'driver_license', 'identity_card', 'internal_passport'" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_selfie.PassportElementErrorSelfie.file_hash:1 -#: of -msgid "Base64-encoded hash of the file with the selfie" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_selfie.PassportElementErrorSelfie.message:1 -#: of -msgid "Error message" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_translation_file.po b/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_translation_file.po deleted file mode 100644 index 9bf84e16..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_translation_file.po +++ /dev/null @@ -1,64 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/passport_element_error_translation_file.rst:3 -msgid "PassportElementErrorTranslationFile" -msgstr "" - -#: aiogram.types.passport_element_error_translation_file.PassportElementErrorTranslationFile:1 -#: of -msgid "" -"Represents an issue with one of the files that constitute the translation" -" of a document. The error is considered resolved when the file changes." -msgstr "" - -#: aiogram.types.passport_element_error_translation_file.PassportElementErrorTranslationFile:3 -#: of -msgid "" -"Source: " -"https://core.telegram.org/bots/api#passportelementerrortranslationfile" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_translation_file.PassportElementErrorTranslationFile.source:1 -#: of -msgid "Error source, must be *translation_file*" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_translation_file.PassportElementErrorTranslationFile.type:1 -#: of -msgid "" -"Type of element of the user's Telegram Passport which has the issue, one " -"of 'passport', 'driver_license', 'identity_card', 'internal_passport', " -"'utility_bill', 'bank_statement', 'rental_agreement', " -"'passport_registration', 'temporary_registration'" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_translation_file.PassportElementErrorTranslationFile.file_hash:1 -#: of -msgid "Base64-encoded file hash" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_translation_file.PassportElementErrorTranslationFile.message:1 -#: of -msgid "Error message" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_translation_files.po b/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_translation_files.po deleted file mode 100644 index a7eb749c..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_translation_files.po +++ /dev/null @@ -1,64 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/passport_element_error_translation_files.rst:3 -msgid "PassportElementErrorTranslationFiles" -msgstr "" - -#: aiogram.types.passport_element_error_translation_files.PassportElementErrorTranslationFiles:1 -#: of -msgid "" -"Represents an issue with the translated version of a document. The error " -"is considered resolved when a file with the document translation change." -msgstr "" - -#: aiogram.types.passport_element_error_translation_files.PassportElementErrorTranslationFiles:3 -#: of -msgid "" -"Source: " -"https://core.telegram.org/bots/api#passportelementerrortranslationfiles" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_translation_files.PassportElementErrorTranslationFiles.source:1 -#: of -msgid "Error source, must be *translation_files*" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_translation_files.PassportElementErrorTranslationFiles.type:1 -#: of -msgid "" -"Type of element of the user's Telegram Passport which has the issue, one " -"of 'passport', 'driver_license', 'identity_card', 'internal_passport', " -"'utility_bill', 'bank_statement', 'rental_agreement', " -"'passport_registration', 'temporary_registration'" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_translation_files.PassportElementErrorTranslationFiles.file_hashes:1 -#: of -msgid "List of base64-encoded file hashes" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_translation_files.PassportElementErrorTranslationFiles.message:1 -#: of -msgid "Error message" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_unspecified.po b/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_unspecified.po deleted file mode 100644 index 899c416c..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/passport_element_error_unspecified.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/passport_element_error_unspecified.rst:3 -msgid "PassportElementErrorUnspecified" -msgstr "" - -#: aiogram.types.passport_element_error_unspecified.PassportElementErrorUnspecified:1 -#: of -msgid "" -"Represents an issue in an unspecified place. The error is considered " -"resolved when new data is added." -msgstr "" - -#: aiogram.types.passport_element_error_unspecified.PassportElementErrorUnspecified:3 -#: of -msgid "Source: https://core.telegram.org/bots/api#passportelementerrorunspecified" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_unspecified.PassportElementErrorUnspecified.source:1 -#: of -msgid "Error source, must be *unspecified*" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_unspecified.PassportElementErrorUnspecified.type:1 -#: of -msgid "Type of element of the user's Telegram Passport which has the issue" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_unspecified.PassportElementErrorUnspecified.element_hash:1 -#: of -msgid "Base64-encoded element hash" -msgstr "" - -#: ../../docstring -#: aiogram.types.passport_element_error_unspecified.PassportElementErrorUnspecified.message:1 -#: of -msgid "Error message" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/passport_file.po b/docs/locale/en/LC_MESSAGES/api/types/passport_file.po deleted file mode 100644 index 06142ecf..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/passport_file.po +++ /dev/null @@ -1,51 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/passport_file.rst:3 -msgid "PassportFile" -msgstr "" - -#: aiogram.types.passport_file.PassportFile:1 of -msgid "" -"This object represents a file uploaded to Telegram Passport. Currently " -"all Telegram Passport files are in JPEG format when decrypted and don't " -"exceed 10MB." -msgstr "" - -#: aiogram.types.passport_file.PassportFile:3 of -msgid "Source: https://core.telegram.org/bots/api#passportfile" -msgstr "" - -#: ../../docstring aiogram.types.passport_file.PassportFile.file_id:1 of -msgid "Identifier for this file, which can be used to download or reuse the file" -msgstr "" - -#: ../../docstring aiogram.types.passport_file.PassportFile.file_unique_id:1 of -msgid "" -"Unique identifier for this file, which is supposed to be the same over " -"time and for different bots. Can't be used to download or reuse the file." -msgstr "" - -#: ../../docstring aiogram.types.passport_file.PassportFile.file_size:1 of -msgid "File size in bytes" -msgstr "" - -#: ../../docstring aiogram.types.passport_file.PassportFile.file_date:1 of -msgid "Unix time when the file was uploaded" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/photo_size.po b/docs/locale/en/LC_MESSAGES/api/types/photo_size.po deleted file mode 100644 index d24a773c..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/photo_size.po +++ /dev/null @@ -1,55 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/photo_size.rst:3 -msgid "PhotoSize" -msgstr "" - -#: aiogram.types.photo_size.PhotoSize:1 of -msgid "" -"This object represents one size of a photo or a `file " -"`_ / " -":class:`aiogram.methods.sticker.Sticker` thumbnail." -msgstr "" - -#: aiogram.types.photo_size.PhotoSize:3 of -msgid "Source: https://core.telegram.org/bots/api#photosize" -msgstr "" - -#: ../../docstring aiogram.types.photo_size.PhotoSize.file_id:1 of -msgid "Identifier for this file, which can be used to download or reuse the file" -msgstr "" - -#: ../../docstring aiogram.types.photo_size.PhotoSize.file_unique_id:1 of -msgid "" -"Unique identifier for this file, which is supposed to be the same over " -"time and for different bots. Can't be used to download or reuse the file." -msgstr "" - -#: ../../docstring aiogram.types.photo_size.PhotoSize.width:1 of -msgid "Photo width" -msgstr "" - -#: ../../docstring aiogram.types.photo_size.PhotoSize.height:1 of -msgid "Photo height" -msgstr "" - -#: ../../docstring aiogram.types.photo_size.PhotoSize.file_size:1 of -msgid "*Optional*. File size in bytes" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/poll.po b/docs/locale/en/LC_MESSAGES/api/types/poll.po deleted file mode 100644 index 34ce17a6..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/poll.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/poll.rst:3 -msgid "Poll" -msgstr "" - -#: aiogram.types.poll.Poll:1 of -msgid "This object contains information about a poll." -msgstr "" - -#: aiogram.types.poll.Poll:3 of -msgid "Source: https://core.telegram.org/bots/api#poll" -msgstr "" - -#: ../../docstring aiogram.types.poll.Poll.id:1 of -msgid "Unique poll identifier" -msgstr "" - -#: ../../docstring aiogram.types.poll.Poll.question:1 of -msgid "Poll question, 1-300 characters" -msgstr "" - -#: ../../docstring aiogram.types.poll.Poll.options:1 of -msgid "List of poll options" -msgstr "" - -#: ../../docstring aiogram.types.poll.Poll.total_voter_count:1 of -msgid "Total number of users that voted in the poll" -msgstr "" - -#: ../../docstring aiogram.types.poll.Poll.is_closed:1 of -msgid ":code:`True`, if the poll is closed" -msgstr "" - -#: ../../docstring aiogram.types.poll.Poll.is_anonymous:1 of -msgid ":code:`True`, if the poll is anonymous" -msgstr "" - -#: ../../docstring aiogram.types.poll.Poll.type:1 of -msgid "Poll type, currently can be 'regular' or 'quiz'" -msgstr "" - -#: ../../docstring aiogram.types.poll.Poll.allows_multiple_answers:1 of -msgid ":code:`True`, if the poll allows multiple answers" -msgstr "" - -#: ../../docstring aiogram.types.poll.Poll.correct_option_id:1 of -msgid "" -"*Optional*. 0-based identifier of the correct answer option. Available " -"only for polls in the quiz mode, which are closed, or was sent (not " -"forwarded) by the bot or to the private chat with the bot." -msgstr "" - -#: ../../docstring aiogram.types.poll.Poll.explanation:1 of -msgid "" -"*Optional*. Text that is shown when a user chooses an incorrect answer or" -" taps on the lamp icon in a quiz-style poll, 0-200 characters" -msgstr "" - -#: ../../docstring aiogram.types.poll.Poll.explanation_entities:1 of -msgid "" -"*Optional*. Special entities like usernames, URLs, bot commands, etc. " -"that appear in the *explanation*" -msgstr "" - -#: ../../docstring aiogram.types.poll.Poll.open_period:1 of -msgid "" -"*Optional*. Amount of time in seconds the poll will be active after " -"creation" -msgstr "" - -#: ../../docstring aiogram.types.poll.Poll.close_date:1 of -msgid "" -"*Optional*. Point in time (Unix timestamp) when the poll will be " -"automatically closed" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/poll_answer.po b/docs/locale/en/LC_MESSAGES/api/types/poll_answer.po deleted file mode 100644 index 63fb9b5d..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/poll_answer.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 2022. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aiogram \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-26 23:17+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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/types/poll_answer.rst:3 -msgid "PollAnswer" -msgstr "" - -#: aiogram.types.poll_answer.PollAnswer:1 of -msgid "This object represents an answer of a user in a non-anonymous poll." -msgstr "" - -#: aiogram.types.poll_answer.PollAnswer:3 of -msgid "Source: https://core.telegram.org/bots/api#pollanswer" -msgstr "" - -#: ../../docstring aiogram.types.poll_answer.PollAnswer.poll_id:1 of -msgid "Unique poll identifier" -msgstr "" - -#: ../../docstring aiogram.types.poll_answer.PollAnswer.option_ids:1 of -msgid "" -"0-based identifiers of chosen answer options. May be empty if the vote " -"was retracted." -msgstr "" - -#: ../../docstring aiogram.types.poll_answer.PollAnswer.voter_chat:1 of -msgid "" -"*Optional*. The chat that changed the answer to the poll, if the voter is" -" anonymous" -msgstr "" - -#: ../../docstring aiogram.types.poll_answer.PollAnswer.user:1 of -msgid "" -"*Optional*. The user that changed the answer to the poll, if the voter " -"isn't anonymous" -msgstr "" - -#~ msgid "The user, who changed the answer to the poll" -#~ msgstr "" - -#~ msgid "" -#~ "0-based identifiers of answer options, " -#~ "chosen by the user. May be empty" -#~ " if the user retracted their vote." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/poll_option.po b/docs/locale/en/LC_MESSAGES/api/types/poll_option.po deleted file mode 100644 index 27ecd197..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/poll_option.po +++ /dev/null @@ -1,38 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/poll_option.rst:3 -msgid "PollOption" -msgstr "" - -#: aiogram.types.poll_option.PollOption:1 of -msgid "This object contains information about one answer option in a poll." -msgstr "" - -#: aiogram.types.poll_option.PollOption:3 of -msgid "Source: https://core.telegram.org/bots/api#polloption" -msgstr "" - -#: ../../docstring aiogram.types.poll_option.PollOption.text:1 of -msgid "Option text, 1-100 characters" -msgstr "" - -#: ../../docstring aiogram.types.poll_option.PollOption.voter_count:1 of -msgid "Number of users that voted for this option" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/pre_checkout_query.po b/docs/locale/en/LC_MESSAGES/api/types/pre_checkout_query.po deleted file mode 100644 index 59009813..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/pre_checkout_query.po +++ /dev/null @@ -1,128 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/pre_checkout_query.rst:3 -msgid "PreCheckoutQuery" -msgstr "" - -#: aiogram.types.pre_checkout_query.PreCheckoutQuery:1 of -msgid "This object contains information about an incoming pre-checkout query." -msgstr "" - -#: aiogram.types.pre_checkout_query.PreCheckoutQuery:3 of -msgid "Source: https://core.telegram.org/bots/api#precheckoutquery" -msgstr "" - -#: ../../docstring aiogram.types.pre_checkout_query.PreCheckoutQuery.id:1 of -msgid "Unique query identifier" -msgstr "" - -#: ../../docstring -#: aiogram.types.pre_checkout_query.PreCheckoutQuery.from_user:1 of -msgid "User who sent the query" -msgstr "" - -#: ../../docstring aiogram.types.pre_checkout_query.PreCheckoutQuery.currency:1 -#: of -msgid "" -"Three-letter ISO 4217 `currency `_ code" -msgstr "" - -#: ../../docstring -#: aiogram.types.pre_checkout_query.PreCheckoutQuery.total_amount:1 of -msgid "" -"Total price in the *smallest units* of the currency (integer, **not** " -"float/double). For example, for a price of :code:`US$ 1.45` pass " -":code:`amount = 145`. See the *exp* parameter in `currencies.json " -"`_, it shows the" -" number of digits past the decimal point for each currency (2 for the " -"majority of currencies)." -msgstr "" - -#: ../../docstring -#: aiogram.types.pre_checkout_query.PreCheckoutQuery.invoice_payload:1 of -msgid "Bot specified invoice payload" -msgstr "" - -#: ../../docstring -#: aiogram.types.pre_checkout_query.PreCheckoutQuery.shipping_option_id:1 of -msgid "*Optional*. Identifier of the shipping option chosen by the user" -msgstr "" - -#: ../../docstring -#: aiogram.types.pre_checkout_query.PreCheckoutQuery.order_info:1 of -msgid "*Optional*. Order information provided by the user" -msgstr "" - -#: aiogram.types.pre_checkout_query.PreCheckoutQuery.answer:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.answer_pre_checkout_query.AnswerPreCheckoutQuery`" -" will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.pre_checkout_query.PreCheckoutQuery.answer:4 of -msgid ":code:`pre_checkout_query_id`" -msgstr "" - -#: aiogram.types.pre_checkout_query.PreCheckoutQuery.answer:6 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.types.pre_checkout_query.PreCheckoutQuery.answer:8 of -msgid "Source: https://core.telegram.org/bots/api#answerprecheckoutquery" -msgstr "" - -#: aiogram.types.pre_checkout_query.PreCheckoutQuery.answer of -msgid "Parameters" -msgstr "" - -#: aiogram.types.pre_checkout_query.PreCheckoutQuery.answer:10 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 "" - -#: aiogram.types.pre_checkout_query.PreCheckoutQuery.answer:11 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 "" - -#: aiogram.types.pre_checkout_query.PreCheckoutQuery.answer of -msgid "Returns" -msgstr "" - -#: aiogram.types.pre_checkout_query.PreCheckoutQuery.answer:12 of -msgid "" -"instance of method " -":class:`aiogram.methods.answer_pre_checkout_query.AnswerPreCheckoutQuery`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/proximity_alert_triggered.po b/docs/locale/en/LC_MESSAGES/api/types/proximity_alert_triggered.po deleted file mode 100644 index bbfc27d1..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/proximity_alert_triggered.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/proximity_alert_triggered.rst:3 -msgid "ProximityAlertTriggered" -msgstr "" - -#: aiogram.types.proximity_alert_triggered.ProximityAlertTriggered:1 of -msgid "" -"This object represents the content of a service message, sent whenever a " -"user in the chat triggers a proximity alert set by another user." -msgstr "" - -#: aiogram.types.proximity_alert_triggered.ProximityAlertTriggered:3 of -msgid "Source: https://core.telegram.org/bots/api#proximityalerttriggered" -msgstr "" - -#: ../../docstring -#: aiogram.types.proximity_alert_triggered.ProximityAlertTriggered.traveler:1 -#: of -msgid "User that triggered the alert" -msgstr "" - -#: ../../docstring -#: aiogram.types.proximity_alert_triggered.ProximityAlertTriggered.watcher:1 of -msgid "User that set the alert" -msgstr "" - -#: ../../docstring -#: aiogram.types.proximity_alert_triggered.ProximityAlertTriggered.distance:1 -#: of -msgid "The distance between the users" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/reply_keyboard_markup.po b/docs/locale/en/LC_MESSAGES/api/types/reply_keyboard_markup.po deleted file mode 100644 index 4f2b1f86..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/reply_keyboard_markup.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/reply_keyboard_markup.rst:3 -msgid "ReplyKeyboardMarkup" -msgstr "" - -#: aiogram.types.reply_keyboard_markup.ReplyKeyboardMarkup:1 of -msgid "" -"This object represents a `custom keyboard " -"`_ with reply options " -"(see `Introduction to bots " -"`_ for details and " -"examples)." -msgstr "" - -#: aiogram.types.reply_keyboard_markup.ReplyKeyboardMarkup:3 of -msgid "Source: https://core.telegram.org/bots/api#replykeyboardmarkup" -msgstr "" - -#: ../../docstring -#: aiogram.types.reply_keyboard_markup.ReplyKeyboardMarkup.keyboard:1 of -msgid "" -"Array of button rows, each represented by an Array of " -":class:`aiogram.types.keyboard_button.KeyboardButton` objects" -msgstr "" - -#: ../../docstring -#: aiogram.types.reply_keyboard_markup.ReplyKeyboardMarkup.is_persistent:1 of -msgid "" -"*Optional*. Requests clients to always show the keyboard when the regular" -" keyboard is hidden. Defaults to *false*, in which case the custom " -"keyboard can be hidden and opened with a keyboard icon." -msgstr "" - -#: ../../docstring -#: aiogram.types.reply_keyboard_markup.ReplyKeyboardMarkup.resize_keyboard:1 of -msgid "" -"*Optional*. Requests clients to resize the keyboard vertically for " -"optimal fit (e.g., make the keyboard smaller if there are just two rows " -"of buttons). Defaults to *false*, in which case the custom keyboard is " -"always of the same height as the app's standard keyboard." -msgstr "" - -#: ../../docstring -#: aiogram.types.reply_keyboard_markup.ReplyKeyboardMarkup.one_time_keyboard:1 -#: of -msgid "" -"*Optional*. Requests clients to hide the keyboard as soon as it's been " -"used. The keyboard will still be available, but clients will " -"automatically display the usual letter-keyboard in the chat - the user " -"can press a special button in the input field to see the custom keyboard " -"again. Defaults to *false*." -msgstr "" - -#: ../../docstring -#: aiogram.types.reply_keyboard_markup.ReplyKeyboardMarkup.input_field_placeholder:1 -#: of -msgid "" -"*Optional*. The placeholder to be shown in the input field when the " -"keyboard is active; 1-64 characters" -msgstr "" - -#: ../../docstring -#: aiogram.types.reply_keyboard_markup.ReplyKeyboardMarkup.selective:1 of -msgid "" -"*Optional*. Use this parameter if you want to show the keyboard to " -"specific users only. Targets: 1) users that are @mentioned in the *text* " -"of the :class:`aiogram.types.message.Message` object; 2) if the bot's " -"message is a reply (has *reply_to_message_id*), sender of the original " -"message." -msgstr "" - -#~ msgid "" -#~ "This object represents a `custom " -#~ "keyboard `_ with" -#~ " reply options (see `Introduction to " -#~ "bots `_ for " -#~ "details and examples)." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/reply_keyboard_remove.po b/docs/locale/en/LC_MESSAGES/api/types/reply_keyboard_remove.po deleted file mode 100644 index 26e7d05c..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/reply_keyboard_remove.po +++ /dev/null @@ -1,55 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/reply_keyboard_remove.rst:3 -msgid "ReplyKeyboardRemove" -msgstr "" - -#: aiogram.types.reply_keyboard_remove.ReplyKeyboardRemove:1 of -msgid "" -"Upon receiving a message with this object, Telegram clients will remove " -"the current custom keyboard and display the default letter-keyboard. By " -"default, custom keyboards are displayed until a new keyboard is sent by a" -" bot. An exception is made for one-time keyboards that are hidden " -"immediately after the user presses a button (see " -":class:`aiogram.types.reply_keyboard_markup.ReplyKeyboardMarkup`)." -msgstr "" - -#: aiogram.types.reply_keyboard_remove.ReplyKeyboardRemove:3 of -msgid "Source: https://core.telegram.org/bots/api#replykeyboardremove" -msgstr "" - -#: ../../docstring -#: aiogram.types.reply_keyboard_remove.ReplyKeyboardRemove.remove_keyboard:1 of -msgid "" -"Requests clients to remove the custom keyboard (user will not be able to " -"summon this keyboard; if you want to hide the keyboard from sight but " -"keep it accessible, use *one_time_keyboard* in " -":class:`aiogram.types.reply_keyboard_markup.ReplyKeyboardMarkup`)" -msgstr "" - -#: ../../docstring -#: aiogram.types.reply_keyboard_remove.ReplyKeyboardRemove.selective:1 of -msgid "" -"*Optional*. Use this parameter if you want to remove the keyboard for " -"specific users only. Targets: 1) users that are @mentioned in the *text* " -"of the :class:`aiogram.types.message.Message` object; 2) if the bot's " -"message is a reply (has *reply_to_message_id*), sender of the original " -"message." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/response_parameters.po b/docs/locale/en/LC_MESSAGES/api/types/response_parameters.po deleted file mode 100644 index 44650c07..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/response_parameters.po +++ /dev/null @@ -1,48 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/response_parameters.rst:3 -msgid "ResponseParameters" -msgstr "" - -#: aiogram.types.response_parameters.ResponseParameters:1 of -msgid "Describes why a request was unsuccessful." -msgstr "" - -#: aiogram.types.response_parameters.ResponseParameters:3 of -msgid "Source: https://core.telegram.org/bots/api#responseparameters" -msgstr "" - -#: ../../docstring -#: aiogram.types.response_parameters.ResponseParameters.migrate_to_chat_id:1 of -msgid "" -"*Optional*. The group has been migrated to a supergroup with the " -"specified identifier. This number may have more than 32 significant bits " -"and some programming languages may have difficulty/silent defects in " -"interpreting it. But it has at most 52 significant bits, so a signed " -"64-bit integer or double-precision float type are safe for storing this " -"identifier." -msgstr "" - -#: ../../docstring -#: aiogram.types.response_parameters.ResponseParameters.retry_after:1 of -msgid "" -"*Optional*. In case of exceeding flood control, the number of seconds " -"left to wait before the request can be repeated" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/sent_web_app_message.po b/docs/locale/en/LC_MESSAGES/api/types/sent_web_app_message.po deleted file mode 100644 index 1464542c..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/sent_web_app_message.po +++ /dev/null @@ -1,41 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/sent_web_app_message.rst:3 -msgid "SentWebAppMessage" -msgstr "" - -#: aiogram.types.sent_web_app_message.SentWebAppMessage:1 of -msgid "" -"Describes an inline message sent by a `Web App " -"`_ on behalf of a user." -msgstr "" - -#: aiogram.types.sent_web_app_message.SentWebAppMessage:3 of -msgid "Source: https://core.telegram.org/bots/api#sentwebappmessage" -msgstr "" - -#: ../../docstring -#: aiogram.types.sent_web_app_message.SentWebAppMessage.inline_message_id:1 of -msgid "" -"*Optional*. Identifier of the sent inline message. Available only if " -"there is an `inline keyboard " -"`_ attached to " -"the message." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/shipping_address.po b/docs/locale/en/LC_MESSAGES/api/types/shipping_address.po deleted file mode 100644 index a5b1df15..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/shipping_address.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/shipping_address.rst:3 -msgid "ShippingAddress" -msgstr "" - -#: aiogram.types.shipping_address.ShippingAddress:1 of -msgid "This object represents a shipping address." -msgstr "" - -#: aiogram.types.shipping_address.ShippingAddress:3 of -msgid "Source: https://core.telegram.org/bots/api#shippingaddress" -msgstr "" - -#: ../../docstring -#: aiogram.types.shipping_address.ShippingAddress.country_code:1 of -msgid "Two-letter ISO 3166-1 alpha-2 country code" -msgstr "" - -#: ../../docstring aiogram.types.shipping_address.ShippingAddress.state:1 of -msgid "State, if applicable" -msgstr "" - -#: ../../docstring aiogram.types.shipping_address.ShippingAddress.city:1 of -msgid "City" -msgstr "" - -#: ../../docstring -#: aiogram.types.shipping_address.ShippingAddress.street_line1:1 of -msgid "First line for the address" -msgstr "" - -#: ../../docstring -#: aiogram.types.shipping_address.ShippingAddress.street_line2:1 of -msgid "Second line for the address" -msgstr "" - -#: ../../docstring aiogram.types.shipping_address.ShippingAddress.post_code:1 -#: of -msgid "Address post code" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/shipping_option.po b/docs/locale/en/LC_MESSAGES/api/types/shipping_option.po deleted file mode 100644 index e9f95db7..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/shipping_option.po +++ /dev/null @@ -1,42 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/shipping_option.rst:3 -msgid "ShippingOption" -msgstr "" - -#: aiogram.types.shipping_option.ShippingOption:1 of -msgid "This object represents one shipping option." -msgstr "" - -#: aiogram.types.shipping_option.ShippingOption:3 of -msgid "Source: https://core.telegram.org/bots/api#shippingoption" -msgstr "" - -#: ../../docstring aiogram.types.shipping_option.ShippingOption.id:1 of -msgid "Shipping option identifier" -msgstr "" - -#: ../../docstring aiogram.types.shipping_option.ShippingOption.title:1 of -msgid "Option title" -msgstr "" - -#: ../../docstring aiogram.types.shipping_option.ShippingOption.prices:1 of -msgid "List of price portions" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/shipping_query.po b/docs/locale/en/LC_MESSAGES/api/types/shipping_query.po deleted file mode 100644 index b17b8c63..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/shipping_query.po +++ /dev/null @@ -1,107 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/shipping_query.rst:3 -msgid "ShippingQuery" -msgstr "" - -#: aiogram.types.shipping_query.ShippingQuery:1 of -msgid "This object contains information about an incoming shipping query." -msgstr "" - -#: aiogram.types.shipping_query.ShippingQuery:3 of -msgid "Source: https://core.telegram.org/bots/api#shippingquery" -msgstr "" - -#: ../../docstring aiogram.types.shipping_query.ShippingQuery.id:1 of -msgid "Unique query identifier" -msgstr "" - -#: ../../docstring aiogram.types.shipping_query.ShippingQuery.from_user:1 of -msgid "User who sent the query" -msgstr "" - -#: ../../docstring aiogram.types.shipping_query.ShippingQuery.invoice_payload:1 -#: of -msgid "Bot specified invoice payload" -msgstr "" - -#: ../../docstring -#: aiogram.types.shipping_query.ShippingQuery.shipping_address:1 of -msgid "User specified shipping address" -msgstr "" - -#: aiogram.types.shipping_query.ShippingQuery.answer:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.answer_shipping_query.AnswerShippingQuery` will " -"automatically fill method attributes:" -msgstr "" - -#: aiogram.types.shipping_query.ShippingQuery.answer:4 of -msgid ":code:`shipping_query_id`" -msgstr "" - -#: aiogram.types.shipping_query.ShippingQuery.answer:6 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.types.shipping_query.ShippingQuery.answer:8 of -msgid "Source: https://core.telegram.org/bots/api#answershippingquery" -msgstr "" - -#: aiogram.types.shipping_query.ShippingQuery.answer of -msgid "Parameters" -msgstr "" - -#: aiogram.types.shipping_query.ShippingQuery.answer:10 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 "" - -#: aiogram.types.shipping_query.ShippingQuery.answer:11 of -msgid "" -"Required if *ok* is :code:`True`. A JSON-serialized array of available " -"shipping options." -msgstr "" - -#: aiogram.types.shipping_query.ShippingQuery.answer:12 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 "" - -#: aiogram.types.shipping_query.ShippingQuery.answer of -msgid "Returns" -msgstr "" - -#: aiogram.types.shipping_query.ShippingQuery.answer:13 of -msgid "" -"instance of method " -":class:`aiogram.methods.answer_shipping_query.AnswerShippingQuery`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/sticker.po b/docs/locale/en/LC_MESSAGES/api/types/sticker.po deleted file mode 100644 index fe98cecc..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/sticker.po +++ /dev/null @@ -1,173 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/sticker.rst:3 -msgid "Sticker" -msgstr "" - -#: aiogram.types.sticker.Sticker:1 of -msgid "This object represents a sticker." -msgstr "" - -#: aiogram.types.sticker.Sticker:3 of -msgid "Source: https://core.telegram.org/bots/api#sticker" -msgstr "" - -#: ../../docstring aiogram.types.sticker.Sticker.file_id:1 of -msgid "Identifier for this file, which can be used to download or reuse the file" -msgstr "" - -#: ../../docstring aiogram.types.sticker.Sticker.file_unique_id:1 of -msgid "" -"Unique identifier for this file, which is supposed to be the same over " -"time and for different bots. Can't be used to download or reuse the file." -msgstr "" - -#: ../../docstring aiogram.types.sticker.Sticker.type:1 of -msgid "" -"Type of the sticker, currently one of 'regular', 'mask', 'custom_emoji'. " -"The type of the sticker is independent from its format, which is " -"determined by the fields *is_animated* and *is_video*." -msgstr "" - -#: ../../docstring aiogram.types.sticker.Sticker.width:1 of -msgid "Sticker width" -msgstr "" - -#: ../../docstring aiogram.types.sticker.Sticker.height:1 of -msgid "Sticker height" -msgstr "" - -#: ../../docstring aiogram.types.sticker.Sticker.is_animated:1 of -msgid "" -":code:`True`, if the sticker is `animated `_" -msgstr "" - -#: ../../docstring aiogram.types.sticker.Sticker.is_video:1 of -msgid "" -":code:`True`, if the sticker is a `video sticker " -"`_" -msgstr "" - -#: ../../docstring aiogram.types.sticker.Sticker.thumbnail:1 of -msgid "*Optional*. Sticker thumbnail in the .WEBP or .JPG format" -msgstr "" - -#: ../../docstring aiogram.types.sticker.Sticker.emoji:1 of -msgid "*Optional*. Emoji associated with the sticker" -msgstr "" - -#: ../../docstring aiogram.types.sticker.Sticker.set_name:1 of -msgid "*Optional*. Name of the sticker set to which the sticker belongs" -msgstr "" - -#: ../../docstring aiogram.types.sticker.Sticker.premium_animation:1 of -msgid "" -"*Optional*. For premium regular stickers, premium animation for the " -"sticker" -msgstr "" - -#: ../../docstring aiogram.types.sticker.Sticker.mask_position:1 of -msgid "" -"*Optional*. For mask stickers, the position where the mask should be " -"placed" -msgstr "" - -#: ../../docstring aiogram.types.sticker.Sticker.custom_emoji_id:1 of -msgid "" -"*Optional*. For custom emoji stickers, unique identifier of the custom " -"emoji" -msgstr "" - -#: ../../docstring aiogram.types.sticker.Sticker.needs_repainting:1 of -msgid "" -"*Optional*. :code:`True`, if the sticker must be repainted to a text " -"color in messages, the color of the Telegram Premium badge in emoji " -"status, white color on chat photos, or another appropriate color in other" -" places" -msgstr "" - -#: ../../docstring aiogram.types.sticker.Sticker.file_size:1 of -msgid "*Optional*. File size in bytes" -msgstr "" - -#: aiogram.types.sticker.Sticker.set_position_in_set:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.set_sticker_position_in_set.SetStickerPositionInSet`" -" will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.sticker.Sticker.delete_from_set:4 -#: aiogram.types.sticker.Sticker.set_position_in_set:4 of -msgid ":code:`sticker`" -msgstr "" - -#: aiogram.types.sticker.Sticker.set_position_in_set:6 of -msgid "" -"Use this method to move a sticker in a set created by the bot to a " -"specific position. Returns :code:`True` on success." -msgstr "" - -#: aiogram.types.sticker.Sticker.set_position_in_set:8 of -msgid "Source: https://core.telegram.org/bots/api#setstickerpositioninset" -msgstr "" - -#: aiogram.types.sticker.Sticker.set_position_in_set of -msgid "Parameters" -msgstr "" - -#: aiogram.types.sticker.Sticker.set_position_in_set:10 of -msgid "New sticker position in the set, zero-based" -msgstr "" - -#: aiogram.types.sticker.Sticker.delete_from_set -#: aiogram.types.sticker.Sticker.set_position_in_set of -msgid "Returns" -msgstr "" - -#: aiogram.types.sticker.Sticker.set_position_in_set:11 of -msgid "" -"instance of method " -":class:`aiogram.methods.set_sticker_position_in_set.SetStickerPositionInSet`" -msgstr "" - -#: aiogram.types.sticker.Sticker.delete_from_set:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.delete_sticker_from_set.DeleteStickerFromSet` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.sticker.Sticker.delete_from_set:6 of -msgid "" -"Use this method to delete a sticker from a set created by the bot. " -"Returns :code:`True` on success." -msgstr "" - -#: aiogram.types.sticker.Sticker.delete_from_set:8 of -msgid "Source: https://core.telegram.org/bots/api#deletestickerfromset" -msgstr "" - -#: aiogram.types.sticker.Sticker.delete_from_set:10 of -msgid "" -"instance of method " -":class:`aiogram.methods.delete_sticker_from_set.DeleteStickerFromSet`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/sticker_set.po b/docs/locale/en/LC_MESSAGES/api/types/sticker_set.po deleted file mode 100644 index 6e76be18..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/sticker_set.po +++ /dev/null @@ -1,64 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/sticker_set.rst:3 -msgid "StickerSet" -msgstr "" - -#: aiogram.types.sticker_set.StickerSet:1 of -msgid "This object represents a sticker set." -msgstr "" - -#: aiogram.types.sticker_set.StickerSet:3 of -msgid "Source: https://core.telegram.org/bots/api#stickerset" -msgstr "" - -#: ../../docstring aiogram.types.sticker_set.StickerSet.name:1 of -msgid "Sticker set name" -msgstr "" - -#: ../../docstring aiogram.types.sticker_set.StickerSet.title:1 of -msgid "Sticker set title" -msgstr "" - -#: ../../docstring aiogram.types.sticker_set.StickerSet.sticker_type:1 of -msgid "" -"Type of stickers in the set, currently one of 'regular', 'mask', " -"'custom_emoji'" -msgstr "" - -#: ../../docstring aiogram.types.sticker_set.StickerSet.is_animated:1 of -msgid "" -":code:`True`, if the sticker set contains `animated stickers " -"`_" -msgstr "" - -#: ../../docstring aiogram.types.sticker_set.StickerSet.is_video:1 of -msgid "" -":code:`True`, if the sticker set contains `video stickers " -"`_" -msgstr "" - -#: ../../docstring aiogram.types.sticker_set.StickerSet.stickers:1 of -msgid "List of all set stickers" -msgstr "" - -#: ../../docstring aiogram.types.sticker_set.StickerSet.thumb:1 of -msgid "*Optional*. Sticker set thumbnail in the .WEBP, .TGS, or .WEBM format" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/story.po b/docs/locale/en/LC_MESSAGES/api/types/story.po deleted file mode 100644 index 92bf0e3a..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/story.po +++ /dev/null @@ -1,32 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 2023. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aiogram \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-26 23:17+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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/types/story.rst:3 -msgid "Story" -msgstr "" - -#: aiogram.types.story.Story:1 of -msgid "" -"This object represents a message about a forwarded story in the chat. " -"Currently holds no information." -msgstr "" - -#: aiogram.types.story.Story:3 of -msgid "Source: https://core.telegram.org/bots/api#story" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/successful_payment.po b/docs/locale/en/LC_MESSAGES/api/types/successful_payment.po deleted file mode 100644 index d6152e59..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/successful_payment.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/successful_payment.rst:3 -msgid "SuccessfulPayment" -msgstr "" - -#: aiogram.types.successful_payment.SuccessfulPayment:1 of -msgid "This object contains basic information about a successful payment." -msgstr "" - -#: aiogram.types.successful_payment.SuccessfulPayment:3 of -msgid "Source: https://core.telegram.org/bots/api#successfulpayment" -msgstr "" - -#: ../../docstring -#: aiogram.types.successful_payment.SuccessfulPayment.currency:1 of -msgid "" -"Three-letter ISO 4217 `currency `_ code" -msgstr "" - -#: ../../docstring -#: aiogram.types.successful_payment.SuccessfulPayment.total_amount:1 of -msgid "" -"Total price in the *smallest units* of the currency (integer, **not** " -"float/double). For example, for a price of :code:`US$ 1.45` pass " -":code:`amount = 145`. See the *exp* parameter in `currencies.json " -"`_, it shows the" -" number of digits past the decimal point for each currency (2 for the " -"majority of currencies)." -msgstr "" - -#: ../../docstring -#: aiogram.types.successful_payment.SuccessfulPayment.invoice_payload:1 of -msgid "Bot specified invoice payload" -msgstr "" - -#: ../../docstring -#: aiogram.types.successful_payment.SuccessfulPayment.telegram_payment_charge_id:1 -#: of -msgid "Telegram payment identifier" -msgstr "" - -#: ../../docstring -#: aiogram.types.successful_payment.SuccessfulPayment.provider_payment_charge_id:1 -#: of -msgid "Provider payment identifier" -msgstr "" - -#: ../../docstring -#: aiogram.types.successful_payment.SuccessfulPayment.shipping_option_id:1 of -msgid "*Optional*. Identifier of the shipping option chosen by the user" -msgstr "" - -#: ../../docstring -#: aiogram.types.successful_payment.SuccessfulPayment.order_info:1 of -msgid "*Optional*. Order information provided by the user" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/switch_inline_query_chosen_chat.po b/docs/locale/en/LC_MESSAGES/api/types/switch_inline_query_chosen_chat.po deleted file mode 100644 index 3b8f431d..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/switch_inline_query_chosen_chat.po +++ /dev/null @@ -1,66 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/switch_inline_query_chosen_chat.rst:3 -msgid "SwitchInlineQueryChosenChat" -msgstr "" - -#: aiogram.types.switch_inline_query_chosen_chat.SwitchInlineQueryChosenChat:1 -#: of -msgid "" -"This object represents an inline button that switches the current user to" -" inline mode in a chosen chat, with an optional default inline query." -msgstr "" - -#: aiogram.types.switch_inline_query_chosen_chat.SwitchInlineQueryChosenChat:3 -#: of -msgid "Source: https://core.telegram.org/bots/api#switchinlinequerychosenchat" -msgstr "" - -#: ../../docstring -#: aiogram.types.switch_inline_query_chosen_chat.SwitchInlineQueryChosenChat.query:1 -#: of -msgid "" -"*Optional*. The default inline query to be inserted in the input field. " -"If left empty, only the bot's username will be inserted" -msgstr "" - -#: ../../docstring -#: aiogram.types.switch_inline_query_chosen_chat.SwitchInlineQueryChosenChat.allow_user_chats:1 -#: of -msgid "*Optional*. True, if private chats with users can be chosen" -msgstr "" - -#: ../../docstring -#: aiogram.types.switch_inline_query_chosen_chat.SwitchInlineQueryChosenChat.allow_bot_chats:1 -#: of -msgid "*Optional*. True, if private chats with bots can be chosen" -msgstr "" - -#: ../../docstring -#: aiogram.types.switch_inline_query_chosen_chat.SwitchInlineQueryChosenChat.allow_group_chats:1 -#: of -msgid "*Optional*. True, if group and supergroup chats can be chosen" -msgstr "" - -#: ../../docstring -#: aiogram.types.switch_inline_query_chosen_chat.SwitchInlineQueryChosenChat.allow_channel_chats:1 -#: of -msgid "*Optional*. True, if channel chats can be chosen" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/update.po b/docs/locale/en/LC_MESSAGES/api/types/update.po deleted file mode 100644 index 940848f4..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/update.po +++ /dev/null @@ -1,148 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/update.rst:3 -msgid "Update" -msgstr "" - -#: aiogram.types.update.Update:1 of -msgid "" -"This `object `_ " -"represents an incoming update." -msgstr "" - -#: aiogram.types.update.Update:3 of -msgid "" -"At most **one** of the optional parameters can be present in any given " -"update." -msgstr "" - -#: aiogram.types.update.Update:5 of -msgid "Source: https://core.telegram.org/bots/api#update" -msgstr "" - -#: ../../docstring aiogram.types.update.Update.update_id:1 of -msgid "" -"The update's unique identifier. Update identifiers start from a certain " -"positive number and increase sequentially. This ID becomes especially " -"handy if you're using `webhooks " -"`_, since it allows you to" -" ignore repeated updates or to restore the correct update sequence, " -"should they get out of order. If there are no new updates for at least a " -"week, then identifier of the next update will be chosen randomly instead " -"of sequentially." -msgstr "" - -#: ../../docstring aiogram.types.update.Update.message:1 of -msgid "*Optional*. New incoming message of any kind - text, photo, sticker, etc." -msgstr "" - -#: ../../docstring aiogram.types.update.Update.edited_message:1 of -msgid "" -"*Optional*. New version of a message that is known to the bot and was " -"edited" -msgstr "" - -#: ../../docstring aiogram.types.update.Update.channel_post:1 of -msgid "" -"*Optional*. New incoming channel post of any kind - text, photo, sticker," -" etc." -msgstr "" - -#: ../../docstring aiogram.types.update.Update.edited_channel_post:1 of -msgid "" -"*Optional*. New version of a channel post that is known to the bot and " -"was edited" -msgstr "" - -#: ../../docstring aiogram.types.update.Update.inline_query:1 of -msgid "" -"*Optional*. New incoming `inline `_ query" -msgstr "" - -#: ../../docstring aiogram.types.update.Update.chosen_inline_result:1 of -msgid "" -"*Optional*. The result of an `inline `_ query that was chosen by a user and sent to their chat " -"partner. Please see our documentation on the `feedback collecting " -"`_ for details" -" on how to enable these updates for your bot." -msgstr "" - -#: ../../docstring aiogram.types.update.Update.callback_query:1 of -msgid "*Optional*. New incoming callback query" -msgstr "" - -#: ../../docstring aiogram.types.update.Update.shipping_query:1 of -msgid "" -"*Optional*. New incoming shipping query. Only for invoices with flexible " -"price" -msgstr "" - -#: ../../docstring aiogram.types.update.Update.pre_checkout_query:1 of -msgid "" -"*Optional*. New incoming pre-checkout query. Contains full information " -"about checkout" -msgstr "" - -#: ../../docstring aiogram.types.update.Update.poll:1 of -msgid "" -"*Optional*. New poll state. Bots receive only updates about stopped polls" -" and polls, which are sent by the bot" -msgstr "" - -#: ../../docstring aiogram.types.update.Update.poll_answer:1 of -msgid "" -"*Optional*. A user changed their answer in a non-anonymous poll. Bots " -"receive new votes only in polls that were sent by the bot itself." -msgstr "" - -#: ../../docstring aiogram.types.update.Update.my_chat_member:1 of -msgid "" -"*Optional*. The bot's chat member status was updated in a chat. For " -"private chats, this update is received only when the bot is blocked or " -"unblocked by the user." -msgstr "" - -#: ../../docstring aiogram.types.update.Update.chat_member:1 of -msgid "" -"*Optional*. A chat member's status was updated in a chat. The bot must be" -" an administrator in the chat and must explicitly specify 'chat_member' " -"in the list of *allowed_updates* to receive these updates." -msgstr "" - -#: ../../docstring aiogram.types.update.Update.chat_join_request:1 of -msgid "" -"*Optional*. A request to join the chat has been sent. The bot must have " -"the *can_invite_users* administrator right in the chat to receive these " -"updates." -msgstr "" - -#: aiogram.types.update.Update.event_type:1 of -msgid "Detect update type If update type is unknown, raise UpdateTypeLookupError" -msgstr "" - -#: aiogram.types.update.Update.event_type of -msgid "Returns" -msgstr "" - -#: aiogram.types.update.UpdateTypeLookupError:1 of -msgid "Update does not contain any known event type." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/user.po b/docs/locale/en/LC_MESSAGES/api/types/user.po deleted file mode 100644 index b7e590b3..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/user.po +++ /dev/null @@ -1,157 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/user.rst:3 -msgid "User" -msgstr "" - -#: aiogram.types.user.User:1 of -msgid "This object represents a Telegram user or bot." -msgstr "" - -#: aiogram.types.user.User:3 of -msgid "Source: https://core.telegram.org/bots/api#user" -msgstr "" - -#: ../../docstring aiogram.types.user.User.id:1 of -msgid "" -"Unique identifier for this user or bot. This number may have more than 32" -" significant bits and some programming languages may have " -"difficulty/silent defects in interpreting it. But it has at most 52 " -"significant bits, so a 64-bit integer or double-precision float type are " -"safe for storing this identifier." -msgstr "" - -#: ../../docstring aiogram.types.user.User.is_bot:1 of -msgid ":code:`True`, if this user is a bot" -msgstr "" - -#: ../../docstring aiogram.types.user.User.first_name:1 of -msgid "User's or bot's first name" -msgstr "" - -#: ../../docstring aiogram.types.user.User.last_name:1 of -msgid "*Optional*. User's or bot's last name" -msgstr "" - -#: ../../docstring aiogram.types.user.User.username:1 of -msgid "*Optional*. User's or bot's username" -msgstr "" - -#: ../../docstring aiogram.types.user.User.language_code:1 of -msgid "" -"*Optional*. `IETF language tag " -"`_ of the user's " -"language" -msgstr "" - -#: ../../docstring aiogram.types.user.User.is_premium:1 of -msgid "*Optional*. :code:`True`, if this user is a Telegram Premium user" -msgstr "" - -#: ../../docstring aiogram.types.user.User.added_to_attachment_menu:1 of -msgid "" -"*Optional*. :code:`True`, if this user added the bot to the attachment " -"menu" -msgstr "" - -#: ../../docstring aiogram.types.user.User.can_join_groups:1 of -msgid "" -"*Optional*. :code:`True`, if the bot can be invited to groups. Returned " -"only in :class:`aiogram.methods.get_me.GetMe`." -msgstr "" - -#: ../../docstring aiogram.types.user.User.can_read_all_group_messages:1 of -msgid "" -"*Optional*. :code:`True`, if `privacy mode " -"`_ is disabled for " -"the bot. Returned only in :class:`aiogram.methods.get_me.GetMe`." -msgstr "" - -#: ../../docstring aiogram.types.user.User.supports_inline_queries:1 of -msgid "" -"*Optional*. :code:`True`, if the bot supports inline queries. Returned " -"only in :class:`aiogram.methods.get_me.GetMe`." -msgstr "" - -#: aiogram.types.user.User.get_profile_photos:1 of -msgid "" -"Shortcut for method " -":class:`aiogram.methods.get_user_profile_photos.GetUserProfilePhotos` " -"will automatically fill method attributes:" -msgstr "" - -#: aiogram.types.user.User.get_profile_photos:4 of -msgid ":code:`user_id`" -msgstr "" - -#: aiogram.types.user.User.get_profile_photos:6 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.types.user.User.get_profile_photos:8 of -msgid "Source: https://core.telegram.org/bots/api#getuserprofilephotos" -msgstr "" - -#: aiogram.types.user.User.get_profile_photos of -msgid "Parameters" -msgstr "" - -#: aiogram.types.user.User.get_profile_photos:10 of -msgid "" -"Sequential number of the first photo to be returned. By default, all " -"photos are returned." -msgstr "" - -#: aiogram.types.user.User.get_profile_photos:11 of -msgid "" -"Limits the number of photos to be retrieved. Values between 1-100 are " -"accepted. Defaults to 100." -msgstr "" - -#: aiogram.types.user.User.get_profile_photos of -msgid "Returns" -msgstr "" - -#: aiogram.types.user.User.get_profile_photos:12 of -msgid "" -"instance of method " -":class:`aiogram.methods.get_user_profile_photos.GetUserProfilePhotos`" -msgstr "" - -#~ msgid "This object represents a Telegram user or bot." -#~ msgstr "" - -#~ msgid "Source: https://core.telegram.org/bots/api#user" -#~ msgstr "" - -#~ msgid "" -#~ "This object represents a Telegram user" -#~ " or bot. Source: " -#~ "https://core.telegram.org/bots/api#user" -#~ msgstr "" - -#~ msgid "" -#~ "*Optional*. :code:`True`, if `privacy mode " -#~ "`_ is " -#~ "disabled for the bot. Returned only " -#~ "in :class:`aiogram.methods.get_me.GetMe`." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/user_profile_photos.po b/docs/locale/en/LC_MESSAGES/api/types/user_profile_photos.po deleted file mode 100644 index a1a37319..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/user_profile_photos.po +++ /dev/null @@ -1,40 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/user_profile_photos.rst:3 -msgid "UserProfilePhotos" -msgstr "" - -#: aiogram.types.user_profile_photos.UserProfilePhotos:1 of -msgid "This object represent a user's profile pictures." -msgstr "" - -#: aiogram.types.user_profile_photos.UserProfilePhotos:3 of -msgid "Source: https://core.telegram.org/bots/api#userprofilephotos" -msgstr "" - -#: ../../docstring -#: aiogram.types.user_profile_photos.UserProfilePhotos.total_count:1 of -msgid "Total number of profile pictures the target user has" -msgstr "" - -#: ../../docstring aiogram.types.user_profile_photos.UserProfilePhotos.photos:1 -#: of -msgid "Requested profile pictures (in up to 4 sizes each)" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/user_shared.po b/docs/locale/en/LC_MESSAGES/api/types/user_shared.po deleted file mode 100644 index d725744c..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/user_shared.po +++ /dev/null @@ -1,49 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/user_shared.rst:3 -msgid "UserShared" -msgstr "" - -#: aiogram.types.user_shared.UserShared:1 of -msgid "" -"This object contains information about the user whose identifier was " -"shared with the bot using a " -":class:`aiogram.types.keyboard_button_request_user.KeyboardButtonRequestUser`" -" button." -msgstr "" - -#: aiogram.types.user_shared.UserShared:3 of -msgid "Source: https://core.telegram.org/bots/api#usershared" -msgstr "" - -#: ../../docstring aiogram.types.user_shared.UserShared.request_id:1 of -msgid "Identifier of the request" -msgstr "" - -#: ../../docstring aiogram.types.user_shared.UserShared.user_id:1 of -msgid "" -"Identifier of the shared user. This number may have more than 32 " -"significant bits and some programming languages may have " -"difficulty/silent defects in interpreting it. But it has at most 52 " -"significant bits, so a 64-bit integer or double-precision float type are " -"safe for storing this identifier. The bot may not have access to the user" -" and could be unable to use this identifier, unless the user is already " -"known to the bot by some other means." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/venue.po b/docs/locale/en/LC_MESSAGES/api/types/venue.po deleted file mode 100644 index 949a414e..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/venue.po +++ /dev/null @@ -1,63 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/venue.rst:3 -msgid "Venue" -msgstr "" - -#: aiogram.types.venue.Venue:1 of -msgid "This object represents a venue." -msgstr "" - -#: aiogram.types.venue.Venue:3 of -msgid "Source: https://core.telegram.org/bots/api#venue" -msgstr "" - -#: ../../docstring aiogram.types.venue.Venue.location:1 of -msgid "Venue location. Can't be a live location" -msgstr "" - -#: ../../docstring aiogram.types.venue.Venue.title:1 of -msgid "Name of the venue" -msgstr "" - -#: ../../docstring aiogram.types.venue.Venue.address:1 of -msgid "Address of the venue" -msgstr "" - -#: ../../docstring aiogram.types.venue.Venue.foursquare_id:1 of -msgid "*Optional*. Foursquare identifier of the venue" -msgstr "" - -#: ../../docstring aiogram.types.venue.Venue.foursquare_type:1 of -msgid "" -"*Optional*. Foursquare type of the venue. (For example, " -"'arts_entertainment/default', 'arts_entertainment/aquarium' or " -"'food/icecream'.)" -msgstr "" - -#: ../../docstring aiogram.types.venue.Venue.google_place_id:1 of -msgid "*Optional*. Google Places identifier of the venue" -msgstr "" - -#: ../../docstring aiogram.types.venue.Venue.google_place_type:1 of -msgid "" -"*Optional*. Google Places type of the venue. (See `supported types " -"`_.)" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/video.po b/docs/locale/en/LC_MESSAGES/api/types/video.po deleted file mode 100644 index d3df202b..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/video.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/video.rst:3 -msgid "Video" -msgstr "" - -#: aiogram.types.video.Video:1 of -msgid "This object represents a video file." -msgstr "" - -#: aiogram.types.video.Video:3 of -msgid "Source: https://core.telegram.org/bots/api#video" -msgstr "" - -#: ../../docstring aiogram.types.video.Video.file_id:1 of -msgid "Identifier for this file, which can be used to download or reuse the file" -msgstr "" - -#: ../../docstring aiogram.types.video.Video.file_unique_id:1 of -msgid "" -"Unique identifier for this file, which is supposed to be the same over " -"time and for different bots. Can't be used to download or reuse the file." -msgstr "" - -#: ../../docstring aiogram.types.video.Video.width:1 of -msgid "Video width as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.video.Video.height:1 of -msgid "Video height as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.video.Video.duration:1 of -msgid "Duration of the video in seconds as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.video.Video.thumb:1 of -msgid "*Optional*. Video thumbnail" -msgstr "" - -#: ../../docstring aiogram.types.video.Video.file_name:1 of -msgid "*Optional*. Original filename as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.video.Video.mime_type:1 of -msgid "*Optional*. MIME type of the file as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.video.Video.file_size:1 of -msgid "" -"*Optional*. File size in bytes. It can be bigger than 2^31 and some " -"programming languages may have difficulty/silent defects in interpreting " -"it. But it has at most 52 significant bits, so a signed 64-bit integer or" -" double-precision float type are safe for storing this value." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/video_chat_ended.po b/docs/locale/en/LC_MESSAGES/api/types/video_chat_ended.po deleted file mode 100644 index 85fca928..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/video_chat_ended.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/video_chat_ended.rst:3 -msgid "VideoChatEnded" -msgstr "" - -#: aiogram.types.video_chat_ended.VideoChatEnded:1 of -msgid "" -"This object represents a service message about a video chat ended in the " -"chat." -msgstr "" - -#: aiogram.types.video_chat_ended.VideoChatEnded:3 of -msgid "Source: https://core.telegram.org/bots/api#videochatended" -msgstr "" - -#: ../../docstring aiogram.types.video_chat_ended.VideoChatEnded.duration:1 of -msgid "Video chat duration in seconds" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/video_chat_participants_invited.po b/docs/locale/en/LC_MESSAGES/api/types/video_chat_participants_invited.po deleted file mode 100644 index 003f340f..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/video_chat_participants_invited.po +++ /dev/null @@ -1,40 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/video_chat_participants_invited.rst:3 -msgid "VideoChatParticipantsInvited" -msgstr "" - -#: aiogram.types.video_chat_participants_invited.VideoChatParticipantsInvited:1 -#: of -msgid "" -"This object represents a service message about new members invited to a " -"video chat." -msgstr "" - -#: aiogram.types.video_chat_participants_invited.VideoChatParticipantsInvited:3 -#: of -msgid "Source: https://core.telegram.org/bots/api#videochatparticipantsinvited" -msgstr "" - -#: ../../docstring -#: aiogram.types.video_chat_participants_invited.VideoChatParticipantsInvited.users:1 -#: of -msgid "New members that were invited to the video chat" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/video_chat_scheduled.po b/docs/locale/en/LC_MESSAGES/api/types/video_chat_scheduled.po deleted file mode 100644 index cefac90b..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/video_chat_scheduled.po +++ /dev/null @@ -1,39 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/video_chat_scheduled.rst:3 -msgid "VideoChatScheduled" -msgstr "" - -#: aiogram.types.video_chat_scheduled.VideoChatScheduled:1 of -msgid "" -"This object represents a service message about a video chat scheduled in " -"the chat." -msgstr "" - -#: aiogram.types.video_chat_scheduled.VideoChatScheduled:3 of -msgid "Source: https://core.telegram.org/bots/api#videochatscheduled" -msgstr "" - -#: ../../docstring -#: aiogram.types.video_chat_scheduled.VideoChatScheduled.start_date:1 of -msgid "" -"Point in time (Unix timestamp) when the video chat is supposed to be " -"started by a chat administrator" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/video_chat_started.po b/docs/locale/en/LC_MESSAGES/api/types/video_chat_started.po deleted file mode 100644 index c4b7b655..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/video_chat_started.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/video_chat_started.rst:3 -msgid "VideoChatStarted" -msgstr "" - -#: aiogram.types.video_chat_started.VideoChatStarted:1 of -msgid "" -"This object represents a service message about a video chat started in " -"the chat. Currently holds no information." -msgstr "" - -#: aiogram.types.video_chat_started.VideoChatStarted:3 of -msgid "Source: https://core.telegram.org/bots/api#videochatstarted" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/video_note.po b/docs/locale/en/LC_MESSAGES/api/types/video_note.po deleted file mode 100644 index e2a1f689..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/video_note.po +++ /dev/null @@ -1,61 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/video_note.rst:3 -msgid "VideoNote" -msgstr "" - -#: aiogram.types.video_note.VideoNote:1 of -msgid "" -"This object represents a `video message `_ (available in Telegram apps as of `v.4.0 " -"`_)." -msgstr "" - -#: aiogram.types.video_note.VideoNote:3 of -msgid "Source: https://core.telegram.org/bots/api#videonote" -msgstr "" - -#: ../../docstring aiogram.types.video_note.VideoNote.file_id:1 of -msgid "Identifier for this file, which can be used to download or reuse the file" -msgstr "" - -#: ../../docstring aiogram.types.video_note.VideoNote.file_unique_id:1 of -msgid "" -"Unique identifier for this file, which is supposed to be the same over " -"time and for different bots. Can't be used to download or reuse the file." -msgstr "" - -#: ../../docstring aiogram.types.video_note.VideoNote.length:1 of -msgid "" -"Video width and height (diameter of the video message) as defined by " -"sender" -msgstr "" - -#: ../../docstring aiogram.types.video_note.VideoNote.duration:1 of -msgid "Duration of the video in seconds as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.video_note.VideoNote.thumb:1 of -msgid "*Optional*. Video thumbnail" -msgstr "" - -#: ../../docstring aiogram.types.video_note.VideoNote.file_size:1 of -msgid "*Optional*. File size in bytes" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/voice.po b/docs/locale/en/LC_MESSAGES/api/types/voice.po deleted file mode 100644 index 1f0abe93..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/voice.po +++ /dev/null @@ -1,56 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/voice.rst:3 -msgid "Voice" -msgstr "" - -#: aiogram.types.voice.Voice:1 of -msgid "This object represents a voice note." -msgstr "" - -#: aiogram.types.voice.Voice:3 of -msgid "Source: https://core.telegram.org/bots/api#voice" -msgstr "" - -#: ../../docstring aiogram.types.voice.Voice.file_id:1 of -msgid "Identifier for this file, which can be used to download or reuse the file" -msgstr "" - -#: ../../docstring aiogram.types.voice.Voice.file_unique_id:1 of -msgid "" -"Unique identifier for this file, which is supposed to be the same over " -"time and for different bots. Can't be used to download or reuse the file." -msgstr "" - -#: ../../docstring aiogram.types.voice.Voice.duration:1 of -msgid "Duration of the audio in seconds as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.voice.Voice.mime_type:1 of -msgid "*Optional*. MIME type of the file as defined by sender" -msgstr "" - -#: ../../docstring aiogram.types.voice.Voice.file_size:1 of -msgid "" -"*Optional*. File size in bytes. It can be bigger than 2^31 and some " -"programming languages may have difficulty/silent defects in interpreting " -"it. But it has at most 52 significant bits, so a signed 64-bit integer or" -" double-precision float type are safe for storing this value." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/web_app_data.po b/docs/locale/en/LC_MESSAGES/api/types/web_app_data.po deleted file mode 100644 index 812f3b5c..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/web_app_data.po +++ /dev/null @@ -1,44 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/web_app_data.rst:3 -msgid "WebAppData" -msgstr "" - -#: aiogram.types.web_app_data.WebAppData:1 of -msgid "" -"Describes data sent from a `Web App " -"`_ to the bot." -msgstr "" - -#: aiogram.types.web_app_data.WebAppData:3 of -msgid "Source: https://core.telegram.org/bots/api#webappdata" -msgstr "" - -#: ../../docstring aiogram.types.web_app_data.WebAppData.data:1 of -msgid "" -"The data. Be aware that a bad client can send arbitrary data in this " -"field." -msgstr "" - -#: ../../docstring aiogram.types.web_app_data.WebAppData.button_text:1 of -msgid "" -"Text of the *web_app* keyboard button from which the Web App was opened. " -"Be aware that a bad client can send arbitrary data in this field." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/web_app_info.po b/docs/locale/en/LC_MESSAGES/api/types/web_app_info.po deleted file mode 100644 index 4a2e122f..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/web_app_info.po +++ /dev/null @@ -1,37 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/web_app_info.rst:3 -msgid "WebAppInfo" -msgstr "" - -#: aiogram.types.web_app_info.WebAppInfo:1 of -msgid "Describes a `Web App `_." -msgstr "" - -#: aiogram.types.web_app_info.WebAppInfo:3 of -msgid "Source: https://core.telegram.org/bots/api#webappinfo" -msgstr "" - -#: ../../docstring aiogram.types.web_app_info.WebAppInfo.url:1 of -msgid "" -"An HTTPS URL of a Web App to be opened with additional data as specified " -"in `Initializing Web Apps `_" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/webhook_info.po b/docs/locale/en/LC_MESSAGES/api/types/webhook_info.po deleted file mode 100644 index f8433f9d..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/webhook_info.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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/types/webhook_info.rst:3 -msgid "WebhookInfo" -msgstr "" - -#: aiogram.types.webhook_info.WebhookInfo:1 of -msgid "Describes the current status of a webhook." -msgstr "" - -#: aiogram.types.webhook_info.WebhookInfo:3 of -msgid "Source: https://core.telegram.org/bots/api#webhookinfo" -msgstr "" - -#: ../../docstring aiogram.types.webhook_info.WebhookInfo.url:1 of -msgid "Webhook URL, may be empty if webhook is not set up" -msgstr "" - -#: ../../docstring -#: aiogram.types.webhook_info.WebhookInfo.has_custom_certificate:1 of -msgid "" -":code:`True`, if a custom certificate was provided for webhook " -"certificate checks" -msgstr "" - -#: ../../docstring -#: aiogram.types.webhook_info.WebhookInfo.pending_update_count:1 of -msgid "Number of updates awaiting delivery" -msgstr "" - -#: ../../docstring aiogram.types.webhook_info.WebhookInfo.ip_address:1 of -msgid "*Optional*. Currently used webhook IP address" -msgstr "" - -#: ../../docstring aiogram.types.webhook_info.WebhookInfo.last_error_date:1 of -msgid "" -"*Optional*. Unix time for the most recent error that happened when trying" -" to deliver an update via webhook" -msgstr "" - -#: ../../docstring aiogram.types.webhook_info.WebhookInfo.last_error_message:1 -#: of -msgid "" -"*Optional*. Error message in human-readable format for the most recent " -"error that happened when trying to deliver an update via webhook" -msgstr "" - -#: ../../docstring -#: aiogram.types.webhook_info.WebhookInfo.last_synchronization_error_date:1 of -msgid "" -"*Optional*. Unix time of the most recent error that happened when trying " -"to synchronize available updates with Telegram datacenters" -msgstr "" - -#: ../../docstring aiogram.types.webhook_info.WebhookInfo.max_connections:1 of -msgid "" -"*Optional*. The maximum allowed number of simultaneous HTTPS connections " -"to the webhook for update delivery" -msgstr "" - -#: ../../docstring aiogram.types.webhook_info.WebhookInfo.allowed_updates:1 of -msgid "" -"*Optional*. A list of update types the bot is subscribed to. Defaults to " -"all update types except *chat_member*" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/types/write_access_allowed.po b/docs/locale/en/LC_MESSAGES/api/types/write_access_allowed.po deleted file mode 100644 index 4fee2157..00000000 --- a/docs/locale/en/LC_MESSAGES/api/types/write_access_allowed.po +++ /dev/null @@ -1,46 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/types/write_access_allowed.rst:3 -msgid "WriteAccessAllowed" -msgstr "" - -#: aiogram.types.write_access_allowed.WriteAccessAllowed:1 of -msgid "" -"This object represents a service message about a user allowing a bot to " -"write messages after adding the bot to the attachment menu or launching a" -" Web App from a link." -msgstr "" - -#: aiogram.types.write_access_allowed.WriteAccessAllowed:3 of -msgid "Source: https://core.telegram.org/bots/api#writeaccessallowed" -msgstr "" - -#: ../../docstring -#: aiogram.types.write_access_allowed.WriteAccessAllowed.web_app_name:1 of -msgid "*Optional*. Name of the Web App which was launched from a link" -msgstr "" - -#~ msgid "" -#~ "This object represents a service message" -#~ " about a user allowing a bot " -#~ "added to the attachment menu to " -#~ "write messages. Currently holds no " -#~ "information." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/api/upload_file.po b/docs/locale/en/LC_MESSAGES/api/upload_file.po deleted file mode 100644 index a7ff966a..00000000 --- a/docs/locale/en/LC_MESSAGES/api/upload_file.po +++ /dev/null @@ -1,195 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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/upload_file.rst:5 -msgid "How to upload file?" -msgstr "" - -#: ../../api/upload_file.rst:7 -msgid "" -"As says `official Telegram Bot API documentation " -"`_ there are three ways" -" to send files (photos, stickers, audio, media, etc.):" -msgstr "" - -#: ../../api/upload_file.rst:10 -msgid "" -"If the file is already stored somewhere on the Telegram servers or file " -"is available by the URL, you don't need to reupload it." -msgstr "" - -#: ../../api/upload_file.rst:13 -msgid "" -"But if you need to upload a new file just use subclasses of `InputFile " -"`__." -msgstr "" - -#: ../../api/upload_file.rst:15 -msgid "Here are the three different available builtin types of input file:" -msgstr "" - -#: ../../api/upload_file.rst:17 -msgid "" -":class:`aiogram.types.input_file.FSInputFile` - `uploading from file " -"system <#upload-from-file-system>`__" -msgstr "" - -#: ../../api/upload_file.rst:18 -msgid "" -":class:`aiogram.types.input_file.BufferedInputFile` - `uploading from " -"buffer <#upload-from-buffer>`__" -msgstr "" - -#: ../../api/upload_file.rst:19 -msgid "" -":class:`aiogram.types.input_file.URLInputFile` - `uploading from URL " -"<#upload-from-url>`__" -msgstr "" - -#: ../../api/upload_file.rst:23 -msgid "**Be respectful with Telegram**" -msgstr "" - -#: ../../api/upload_file.rst:25 -msgid "" -"Instances of `InputFile` are reusable. That's mean you can create " -"instance of InputFile and sent this file multiple times but Telegram does" -" not recommend to do that and when you upload file once just save their " -"`file_id` and use it in next times." -msgstr "" - -#: ../../api/upload_file.rst:31 -msgid "Upload from file system" -msgstr "" - -#: ../../api/upload_file.rst:33 -msgid "By first step you will need to import InputFile wrapper:" -msgstr "" - -#: ../../api/upload_file.rst:39 -msgid "Then you can use it:" -msgstr "" - -#: aiogram.types.input_file.BufferedInputFile.__init__:1 -#: aiogram.types.input_file.FSInputFile.__init__:1 of -msgid "Represents object for uploading files from filesystem" -msgstr "" - -#: aiogram.types.input_file.BufferedInputFile.__init__ -#: aiogram.types.input_file.FSInputFile.__init__ of -msgid "Parameters" -msgstr "" - -#: aiogram.types.input_file.FSInputFile.__init__:3 of -msgid "Path to file" -msgstr "" - -#: aiogram.types.input_file.FSInputFile.__init__:4 of -msgid "" -"Filename to be propagated to telegram. By default, will be parsed from " -"path" -msgstr "" - -#: aiogram.types.input_file.BufferedInputFile.__init__:5 -#: aiogram.types.input_file.FSInputFile.__init__:6 of -msgid "Uploading chunk size" -msgstr "" - -#: ../../api/upload_file.rst:52 -msgid "Upload from buffer" -msgstr "" - -#: ../../api/upload_file.rst:54 -msgid "" -"Files can be also passed from buffer (For example you generate image " -"using `Pillow `_ and you want " -"to send it to Telegram):" -msgstr "" - -#: ../../api/upload_file.rst:58 ../../api/upload_file.rst:80 -msgid "Import wrapper:" -msgstr "" - -#: ../../api/upload_file.rst:64 ../../api/upload_file.rst:86 -msgid "And then you can use it:" -msgstr "" - -#: aiogram.types.input_file.BufferedInputFile.__init__:3 of -msgid "Bytes" -msgstr "" - -#: aiogram.types.input_file.BufferedInputFile.__init__:4 of -msgid "Filename to be propagated to telegram." -msgstr "" - -#: ../../api/upload_file.rst:74 -msgid "Upload from url" -msgstr "" - -#: ../../api/upload_file.rst:76 -msgid "" -"If you need to upload a file from another server, but the direct link is " -"bound to your server's IP, or you want to bypass native `upload limits " -"`_ by URL, you can use " -":obj:`aiogram.types.input_file.URLInputFile`." -msgstr "" - -#~ msgid "Create buffer from file" -#~ msgstr "" - -#~ msgid "Returns" -#~ msgstr "" - -#~ msgid "instance of :obj:`BufferedInputFile`" -#~ msgstr "" - -#~ msgid "" -#~ "But if you need to upload new " -#~ "file just use subclasses of `InputFile" -#~ " `__." -#~ msgstr "" - -#~ msgid "Here is available three different builtin types of input file:" -#~ msgstr "" - -#~ msgid "" -#~ "Instances of `InputFile` is reusable. " -#~ "That's mean you can create instance " -#~ "of InputFile and sent this file " -#~ "multiple times but Telegram is not " -#~ "recommend to do that and when you" -#~ " upload file once just save their " -#~ "`file_id` and use it in next " -#~ "times." -#~ msgstr "" - -#~ msgid "" -#~ "Files can be also passed from " -#~ "buffer (For example you generate image" -#~ " using `Pillow " -#~ "`_ and the " -#~ "want's to sent it to the " -#~ "Telegram):" -#~ msgstr "" - -#~ msgid "" -#~ "But if you need to upload a " -#~ "new file just use subclasses of " -#~ "`InputFile `__." -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/changelog.po b/docs/locale/en/LC_MESSAGES/changelog.po deleted file mode 100644 index ff98abc8..00000000 --- a/docs/locale/en/LC_MESSAGES/changelog.po +++ /dev/null @@ -1,3159 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 2022. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aiogram \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-26 23:17+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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" - -#: ../../../CHANGES.rst:3 -msgid "Changelog" -msgstr "" - -#: ../../[towncrier-fragments]:2 -msgid "\\ |release| [UNRELEASED DRAFT] (2023-08-26)" -msgstr "" - -#: ../../../CHANGES.rst:23 ../../../CHANGES.rst:92 ../../../CHANGES.rst:137 -#: ../../../CHANGES.rst:207 ../../../CHANGES.rst:393 ../../../CHANGES.rst:456 -#: ../../../CHANGES.rst:505 ../../../CHANGES.rst:566 ../../../CHANGES.rst:624 -#: ../../../CHANGES.rst:670 ../../../CHANGES.rst:718 ../../../CHANGES.rst:774 -#: ../../../CHANGES.rst:859 ../../../CHANGES.rst:891 -#: ../../[towncrier-fragments]:5 -msgid "Bugfixes" -msgstr "" - -#: ../../[towncrier-fragments]:7 -msgid "" -"Fixed magic :code:`.as_(...)` operation for values that can be " -"interpreted as `False` (e.g. `0`). `#1281 " -"`_" -msgstr "" - -#: ../../[towncrier-fragments]:9 -msgid "" -"Italic markdown from utils now uses correct decorators `#1282 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:20 -msgid "3.0.0rc2 (2023-08-18)" -msgstr "" - -#: ../../../CHANGES.rst:25 -msgid "" -"Fixed missing message content types (:code:`ContentType.USER_SHARED`, " -":code:`ContentType.CHAT_SHARED`) `#1252 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:27 -msgid "" -"Fixed nested hashtag, cashtag and email message entities not being parsed" -" correctly when these entities are inside another entity. `#1259 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:29 -msgid "" -"Moved global filters check placement into router to add chance to pass " -"context from global filters into handlers in the same way as it possible " -"in other places `#1266 `_" -msgstr "" - -#: ../../../CHANGES.rst:35 ../../../CHANGES.rst:105 ../../../CHANGES.rst:150 -#: ../../../CHANGES.rst:235 ../../../CHANGES.rst:468 ../../../CHANGES.rst:518 -#: ../../../CHANGES.rst:898 -msgid "Improved Documentation" -msgstr "" - -#: ../../../CHANGES.rst:37 -msgid "" -"Added error handling example `examples/error_handling.py` `#1099 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:39 -msgid "" -"Added a few words about skipping pending updates `#1251 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:41 -msgid "" -"Added a section on Dependency Injection technology `#1253 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:43 -msgid "" -"This update includes the addition of a multi-file bot example to the " -"repository. `#1254 `_" -msgstr "" - -#: ../../../CHANGES.rst:45 -msgid "" -"Refactored examples code to use aiogram enumerations and enhanced chat " -"messages with markdown beautification's for a more user-friendly display." -" `#1256 `_" -msgstr "" - -#: ../../../CHANGES.rst:48 -msgid "" -"Supplemented \"Finite State Machine\" section in Migration FAQ `#1264 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:50 -msgid "" -"Removed extra param in docstring of TelegramEventObserver's filter method" -" and fixed typo in I18n documentation. `#1268 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:56 ../../../CHANGES.rst:112 ../../../CHANGES.rst:251 -#: ../../../CHANGES.rst:402 ../../../CHANGES.rst:479 ../../../CHANGES.rst:532 -#: ../../../CHANGES.rst:583 ../../../CHANGES.rst:637 ../../../CHANGES.rst:679 -#: ../../../CHANGES.rst:725 ../../../CHANGES.rst:785 ../../../CHANGES.rst:806 -#: ../../../CHANGES.rst:829 ../../../CHANGES.rst:866 ../../../CHANGES.rst:905 -msgid "Misc" -msgstr "" - -#: ../../../CHANGES.rst:58 -msgid "" -"Enhanced the warning message in dispatcher to include a JSON dump of the " -"update when update type is not known. `#1269 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:60 -msgid "" -"Added support for `Bot API 6.8 `_ `#1275 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:65 -msgid "3.0.0rc1 (2023-08-06)" -msgstr "" - -#: ../../../CHANGES.rst:68 ../../../CHANGES.rst:126 ../../../CHANGES.rst:168 -#: ../../../CHANGES.rst:331 ../../../CHANGES.rst:431 ../../../CHANGES.rst:491 -#: ../../../CHANGES.rst:542 ../../../CHANGES.rst:615 ../../../CHANGES.rst:656 -#: ../../../CHANGES.rst:694 ../../../CHANGES.rst:742 ../../../CHANGES.rst:818 -#: ../../../CHANGES.rst:851 ../../../CHANGES.rst:882 -msgid "Features" -msgstr "" - -#: ../../../CHANGES.rst:70 -msgid "Added Currency enum. You can use it like this:" -msgstr "" - -#: ../../../CHANGES.rst:82 -msgid "`#1194 `_" -msgstr "" - -#: ../../../CHANGES.rst:83 -msgid "" -"Updated keyboard builders with new methods for integrating buttons and " -"keyboard creation more seamlessly. Added functionality to create buttons " -"from existing markup and attach another builder. This improvement aims to" -" make the keyboard building process more user-friendly and flexible. " -"`#1236 `_" -msgstr "" - -#: ../../../CHANGES.rst:87 -msgid "" -"Added support for message_thread_id in ChatActionSender `#1249 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:94 -msgid "" -"Fixed polling startup when \"bot\" key is passed manually into dispatcher" -" workflow data `#1242 `_" -msgstr "" - -#: ../../../CHANGES.rst:96 -msgid "Added codegen configuration for lost shortcuts:" -msgstr "" - -#: ../../../CHANGES.rst:98 -msgid "ShippingQuery.answer" -msgstr "" - -#: ../../../CHANGES.rst:99 -msgid "PreCheckoutQuery.answer" -msgstr "" - -#: ../../../CHANGES.rst:100 -msgid "Message.delete_reply_markup" -msgstr "" - -#: ../../../CHANGES.rst:101 -msgid "`#1244 `_" -msgstr "" - -#: ../../../CHANGES.rst:107 -msgid "" -"Added documentation for webhook and polling modes. `#1241 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:114 -msgid "" -"Reworked InputFile reading, removed :code:`__aiter__` method, added `bot:" -" Bot` argument to the :code:`.read(...)` method, so, from now " -"URLInputFile can be used without specifying bot instance. `#1238 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:118 -msgid "" -"Code-generated :code:`__init__` typehints in types and methods to make " -"IDE happy without additional pydantic plugin `#1245 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:123 -msgid "3.0.0b9 (2023-07-30)" -msgstr "" - -#: ../../../CHANGES.rst:128 -msgid "" -"Added new shortcuts for " -":class:`aiogram.types.chat_member_updated.ChatMemberUpdated` to send " -"message to chat that member joined/left. `#1234 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:131 -msgid "" -"Added new shortcuts for " -":class:`aiogram.types.chat_join_request.ChatJoinRequest` to make easier " -"access to sending messages to users who wants to join to chat. `#1235 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:139 -msgid "" -"Fixed bot assignment in the :code:`Message.send_copy` shortcut `#1232 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:141 -msgid "" -"Added model validation to remove UNSET before field validation. This " -"change was necessary to correctly handle parse_mode where 'UNSET' is used" -" as a sentinel value. Without the removal of 'UNSET', it would create " -"issues when passed to model initialization from Bot.method_name. 'UNSET' " -"was also added to typing. `#1233 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:146 -msgid "Updated pydantic to 2.1 with few bugfixes" -msgstr "" - -#: ../../../CHANGES.rst:152 -msgid "" -"Improved docs, added basic migration guide (will be expanded later) " -"`#1143 `_" -msgstr "" - -#: ../../../CHANGES.rst:157 ../../../CHANGES.rst:242 ../../../CHANGES.rst:525 -msgid "Deprecations and Removals" -msgstr "" - -#: ../../../CHANGES.rst:159 -msgid "" -"Removed the use of the context instance (Bot.get_current) from all " -"placements that were used previously. This is to avoid the use of the " -"context instance in the wrong place. `#1230 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:165 -msgid "3.0.0b8 (2023-07-17)" -msgstr "" - -#: ../../../CHANGES.rst:170 -msgid "" -"Added possibility to use custom events in routers (If router does not " -"support custom event it does not break and passes it to included " -"routers). `#1147 `_" -msgstr "" - -#: ../../../CHANGES.rst:172 -msgid "Added support for FSM in Forum topics." -msgstr "" - -#: ../../../CHANGES.rst:174 -msgid "The strategy can be changed in dispatcher:" -msgstr "" - -#: ../../../CHANGES.rst:187 -msgid "" -"If you have implemented you own storages you should extend record key " -"generation with new one attribute - :code:`thread_id`" -msgstr "" - -#: ../../../CHANGES.rst:189 -msgid "`#1161 `_" -msgstr "" - -#: ../../../CHANGES.rst:190 -msgid "Improved CallbackData serialization." -msgstr "" - -#: ../../../CHANGES.rst:192 -msgid "Minimized UUID (hex without dashes)" -msgstr "" - -#: ../../../CHANGES.rst:193 -msgid "Replaced bool values with int (true=1, false=0)" -msgstr "" - -#: ../../../CHANGES.rst:194 -msgid "`#1163 `_" -msgstr "" - -#: ../../../CHANGES.rst:195 -msgid "" -"Added a tool to make text formatting flexible and easy. More details on " -"the :ref:`corresponding documentation page ` `#1172 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:198 -msgid "" -"Added :code:`X-Telegram-Bot-Api-Secret-Token` header check `#1173 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:200 -msgid "" -"Made :code:`allowed_updates` list to revolve automatically in " -"start_polling method if not set explicitly. `#1178 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:202 -msgid "" -"Added possibility to pass custom headers to :class:`URLInputFile` object " -"`#1191 `_" -msgstr "" - -#: ../../../CHANGES.rst:209 -msgid "" -"Change type of result in InlineQueryResult enum for " -":code:`InlineQueryResultCachedMpeg4Gif` and " -":code:`InlineQueryResultMpeg4Gif` to more correct according to " -"documentation." -msgstr "" - -#: ../../../CHANGES.rst:212 -msgid "" -"Change regexp for entities parsing to more correct " -"(:code:`InlineQueryResultType.yml`). `#1146 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:214 -msgid "" -"Fixed signature of startup/shutdown events to include the " -":code:`**dispatcher.workflow_data` as the handler arguments. `#1155 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:216 -msgid "" -"Added missing :code:`FORUM_TOPIC_EDITED` value to content_type property " -"`#1160 `_" -msgstr "" - -#: ../../../CHANGES.rst:218 -msgid "" -"Fixed compatibility with Python 3.8-3.9 (from previous release) `#1162 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:220 -msgid "" -"Fixed the markdown spoiler parser. `#1176 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:222 -msgid "" -"Fixed workflow data propagation `#1196 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:224 -msgid "" -"Fixed the serialization error associated with nested subtypes like " -"InputMedia, ChatMember, etc." -msgstr "" - -#: ../../../CHANGES.rst:227 -msgid "" -"The previously generated code resulted in an invalid schema under " -"pydantic v2, which has stricter type parsing. Hence, subtypes without the" -" specification of all subtype unions were generating an empty object. " -"This has been rectified now. `#1213 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:237 -msgid "" -"Changed small grammar typos for :code:`upload_file` `#1133 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:244 -msgid "" -"Removed text filter in due to is planned to remove this filter few " -"versions ago." -msgstr "" - -#: ../../../CHANGES.rst:246 -msgid "" -"Use :code:`F.text` instead `#1170 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:253 -msgid "" -"Added full support of `Bot API 6.6 `_" -msgstr "" - -#: ../../../CHANGES.rst:257 -msgid "" -"Note that this issue has breaking changes described in in the Bot API " -"changelog, this changes is not breaking in the API but breaking inside " -"aiogram because Beta stage is not finished." -msgstr "" - -#: ../../../CHANGES.rst:260 -msgid "`#1139 `_" -msgstr "" - -#: ../../../CHANGES.rst:261 -msgid "" -"Added full support of `Bot API 6.7 `_" -msgstr "" - -#: ../../../CHANGES.rst:265 -msgid "" -"Note that arguments *switch_pm_parameter* and *switch_pm_text* was " -"deprecated and should be changed to *button* argument as described in API" -" docs." -msgstr "" - -#: ../../../CHANGES.rst:267 -msgid "`#1168 `_" -msgstr "" - -#: ../../../CHANGES.rst:268 -msgid "Updated `Pydantic to V2 `_" -msgstr "" - -#: ../../../CHANGES.rst:272 -msgid "Be careful, not all libraries is already updated to using V2" -msgstr "" - -#: ../../../CHANGES.rst:273 -msgid "`#1202 `_" -msgstr "" - -#: ../../../CHANGES.rst:274 -msgid "" -"Added global defaults :code:`disable_web_page_preview` and " -":code:`protect_content` in addition to :code:`parse_mode` to the Bot " -"instance, reworked internal request builder mechanism. `#1142 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:277 -msgid "" -"Removed bot parameters from storages `#1144 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:280 -msgid "" -"Replaced ContextVar's with a new feature called `Validation Context " -"`_" -" in Pydantic to improve the clarity, usability, and versatility of " -"handling the Bot instance within method shortcuts." -msgstr "" - -#: ../../../CHANGES.rst:285 -msgid "**Breaking**: The 'bot' argument now is required in `URLInputFile`" -msgstr "" - -#: ../../../CHANGES.rst:286 -msgid "`#1210 `_" -msgstr "" - -#: ../../../CHANGES.rst:287 -msgid "Updated magic-filter with new features" -msgstr "" - -#: ../../../CHANGES.rst:289 -msgid "Added hint for :code:`len(F)` error" -msgstr "" - -#: ../../../CHANGES.rst:290 -msgid "Added not in operation" -msgstr "" - -#: ../../../CHANGES.rst:291 -msgid "`#1221 `_" -msgstr "" - -#: ../../../CHANGES.rst:295 -msgid "3.0.0b7 (2023-02-18)" -msgstr "" - -#: ../../../CHANGES.rst:299 -msgid "" -"Note that this version has incompatibility with Python 3.8-3.9 in case " -"when you create an instance of Dispatcher outside of the any coroutine." -msgstr "" - -#: ../../../CHANGES.rst:301 -msgid "Sorry for the inconvenience, it will be fixed in the next version." -msgstr "" - -#: ../../../CHANGES.rst:303 -msgid "This code will not work:" -msgstr "" - -#: ../../../CHANGES.rst:315 -msgid "But if you change it like this it should works as well:" -msgstr "" - -#: ../../../CHANGES.rst:333 -msgid "Added missing shortcuts, new enums, reworked old stuff" -msgstr "" - -#: ../../../CHANGES.rst:335 -msgid "" -"**Breaking** All previously added enums is re-generated in new place - " -"`aiogram.enums` instead of `aiogram.types`" -msgstr "" - -#: ../../../CHANGES.rst:353 -msgid "" -"**Added enums:** " -":class:`aiogram.enums.bot_command_scope_type.BotCommandScopeType`," -msgstr "" - -#: ../../../CHANGES.rst:339 -msgid "" -":class:`aiogram.enums.chat_action.ChatAction`, " -":class:`aiogram.enums.chat_member_status.ChatMemberStatus`, " -":class:`aiogram.enums.chat_type.ChatType`, " -":class:`aiogram.enums.content_type.ContentType`, " -":class:`aiogram.enums.dice_emoji.DiceEmoji`, " -":class:`aiogram.enums.inline_query_result_type.InlineQueryResultType`, " -":class:`aiogram.enums.input_media_type.InputMediaType`, " -":class:`aiogram.enums.mask_position_point.MaskPositionPoint`, " -":class:`aiogram.enums.menu_button_type.MenuButtonType`, " -":class:`aiogram.enums.message_entity_type.MessageEntityType`, " -":class:`aiogram.enums.parse_mode.ParseMode`, " -":class:`aiogram.enums.poll_type.PollType`, " -":class:`aiogram.enums.sticker_type.StickerType`, " -":class:`aiogram.enums.topic_icon_color.TopicIconColor`, " -":class:`aiogram.enums.update_type.UpdateType`," -msgstr "" - -#: ../../../CHANGES.rst:355 -msgid "**Added shortcuts**:" -msgstr "" - -#: ../../../CHANGES.rst:380 -msgid "*Chat* :meth:`aiogram.types.chat.Chat.get_administrators`," -msgstr "" - -#: ../../../CHANGES.rst:358 -msgid "" -":meth:`aiogram.types.chat.Chat.delete_message`, " -":meth:`aiogram.types.chat.Chat.revoke_invite_link`, " -":meth:`aiogram.types.chat.Chat.edit_invite_link`, " -":meth:`aiogram.types.chat.Chat.create_invite_link`, " -":meth:`aiogram.types.chat.Chat.export_invite_link`, " -":meth:`aiogram.types.chat.Chat.do`, " -":meth:`aiogram.types.chat.Chat.delete_sticker_set`, " -":meth:`aiogram.types.chat.Chat.set_sticker_set`, " -":meth:`aiogram.types.chat.Chat.get_member`, " -":meth:`aiogram.types.chat.Chat.get_member_count`, " -":meth:`aiogram.types.chat.Chat.leave`, " -":meth:`aiogram.types.chat.Chat.unpin_all_messages`, " -":meth:`aiogram.types.chat.Chat.unpin_message`, " -":meth:`aiogram.types.chat.Chat.pin_message`, " -":meth:`aiogram.types.chat.Chat.set_administrator_custom_title`, " -":meth:`aiogram.types.chat.Chat.set_permissions`, " -":meth:`aiogram.types.chat.Chat.promote`, " -":meth:`aiogram.types.chat.Chat.restrict`, " -":meth:`aiogram.types.chat.Chat.unban`, " -":meth:`aiogram.types.chat.Chat.ban`, " -":meth:`aiogram.types.chat.Chat.set_description`, " -":meth:`aiogram.types.chat.Chat.set_title`, " -":meth:`aiogram.types.chat.Chat.delete_photo`, " -":meth:`aiogram.types.chat.Chat.set_photo`," -msgstr "" - -#: ../../../CHANGES.rst:382 -msgid "*Sticker*: :meth:`aiogram.types.sticker.Sticker.set_position_in_set`," -msgstr "" - -#: ../../../CHANGES.rst:383 -msgid ":meth:`aiogram.types.sticker.Sticker.delete_from_set`," -msgstr "" - -#: ../../../CHANGES.rst:384 -msgid "*User*: :meth:`aiogram.types.user.User.get_profile_photos`" -msgstr "" - -#: ../../../CHANGES.rst:385 -msgid "`#952 `_" -msgstr "" - -#: ../../../CHANGES.rst:386 -msgid "" -"Added :ref:`callback answer ` feature `#1091 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:388 -msgid "" -"Added a method that allows you to compactly register routers `#1117 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:395 -msgid "" -"Check status code when downloading file `#816 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:397 -msgid "" -"Fixed `ignore_case` parameter in :obj:`aiogram.filters.command.Command` " -"filter `#1106 `_" -msgstr "" - -#: ../../../CHANGES.rst:404 -msgid "" -"Added integration with new code-generator named `Butcher " -"`_ `#1069 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:406 -msgid "" -"Added full support of `Bot API 6.4 `_ `#1088 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:408 -msgid "" -"Updated package metadata, moved build internals from Poetry to Hatch, " -"added contributing guides. `#1095 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:410 -msgid "" -"Added full support of `Bot API 6.5 `_" -msgstr "" - -#: ../../../CHANGES.rst:414 -msgid "" -"Note that :obj:`aiogram.types.chat_permissions.ChatPermissions` is " -"updated without backward compatibility, so now this object has no " -":code:`can_send_media_messages` attribute" -msgstr "" - -#: ../../../CHANGES.rst:416 -msgid "`#1112 `_" -msgstr "" - -#: ../../../CHANGES.rst:417 -msgid "" -"Replaced error :code:`TypeError: TelegramEventObserver.__call__() got an " -"unexpected keyword argument ''` with a more understandable one for " -"developers and with a link to the documentation. `#1114 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:420 -msgid "" -"Added possibility to reply into webhook with files `#1120 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:422 -msgid "" -"Reworked graceful shutdown. Added method to stop polling. Now polling " -"started from dispatcher can be stopped by signals gracefully without " -"errors (on Linux and Mac). `#1124 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:428 -msgid "3.0.0b6 (2022-11-18)" -msgstr "" - -#: ../../../CHANGES.rst:433 -msgid "" -"(again) Added possibility to combine filters with an *and*/*or* " -"operations." -msgstr "" - -#: ../../../CHANGES.rst:435 -msgid "" -"Read more in \":ref:`Combining filters `\" " -"documentation section `#1018 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:437 -msgid "Added following methods to ``Message`` class:" -msgstr "" - -#: ../../../CHANGES.rst:439 -msgid ":code:`Message.forward(...)`" -msgstr "" - -#: ../../../CHANGES.rst:440 -msgid ":code:`Message.edit_media(...)`" -msgstr "" - -#: ../../../CHANGES.rst:441 -msgid ":code:`Message.edit_live_location(...)`" -msgstr "" - -#: ../../../CHANGES.rst:442 -msgid ":code:`Message.stop_live_location(...)`" -msgstr "" - -#: ../../../CHANGES.rst:443 -msgid ":code:`Message.pin(...)`" -msgstr "" - -#: ../../../CHANGES.rst:444 -msgid ":code:`Message.unpin()`" -msgstr "" - -#: ../../../CHANGES.rst:445 -msgid "`#1030 `_" -msgstr "" - -#: ../../../CHANGES.rst:446 -msgid "Added following methods to :code:`User` class:" -msgstr "" - -#: ../../../CHANGES.rst:448 -msgid ":code:`User.mention_markdown(...)`" -msgstr "" - -#: ../../../CHANGES.rst:449 -msgid ":code:`User.mention_html(...)`" -msgstr "" - -#: ../../../CHANGES.rst:450 -msgid "`#1049 `_" -msgstr "" - -#: ../../../CHANGES.rst:451 -msgid "" -"Added full support of `Bot API 6.3 `_ `#1057 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:458 -msgid "" -"Fixed :code:`Message.send_invoice` and :code:`Message.reply_invoice`, " -"added missing arguments `#1047 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:460 -msgid "Fixed copy and forward in:" -msgstr "" - -#: ../../../CHANGES.rst:462 -msgid ":code:`Message.answer(...)`" -msgstr "" - -#: ../../../CHANGES.rst:463 -msgid ":code:`Message.copy_to(...)`" -msgstr "" - -#: ../../../CHANGES.rst:464 -msgid "`#1064 `_" -msgstr "" - -#: ../../../CHANGES.rst:470 -msgid "" -"Fixed UA translations in index.po `#1017 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:472 -msgid "" -"Fix typehints for :code:`Message`, :code:`reply_media_group` and " -":code:`answer_media_group` methods `#1029 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:474 -msgid "" -"Removed an old now non-working feature `#1060 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:481 -msgid "" -"Enabled testing on Python 3.11 `#1044 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:483 -msgid "" -"Added a mandatory dependency :code:`certifi` in due to in some cases on " -"systems that doesn't have updated ca-certificates the requests to Bot API" -" fails with reason :code:`[SSL: CERTIFICATE_VERIFY_FAILED] certificate " -"verify failed: self signed certificate in certificate chain` `#1066 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:488 -msgid "3.0.0b5 (2022-10-02)" -msgstr "" - -#: ../../../CHANGES.rst:493 -msgid "" -"Add PyPy support and run tests under PyPy `#985 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:495 -msgid "" -"Added message text to aiogram exceptions representation `#988 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:497 -msgid "" -"Added warning about using magic filter from `magic_filter` instead of " -"`aiogram`'s ones. Is recommended to use `from aiogram import F` instead " -"of `from magic_filter import F` `#990 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:500 -msgid "" -"Added more detailed error when server response can't be deserialized. " -"This feature will help to debug unexpected responses from the Server " -"`#1014 `_" -msgstr "" - -#: ../../../CHANGES.rst:507 -msgid "" -"Reworked error event, introduced " -":class:`aiogram.types.error_event.ErrorEvent` object. `#898 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:509 -msgid "" -"Fixed escaping markdown in `aiogram.utils.markdown` module `#903 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:511 -msgid "" -"Fixed polling crash when Telegram Bot API raises HTTP 429 status-code. " -"`#995 `_" -msgstr "" - -#: ../../../CHANGES.rst:513 -msgid "" -"Fixed empty mention in command parsing, now it will be None instead of an" -" empty string `#1013 `_" -msgstr "" - -#: ../../../CHANGES.rst:520 -msgid "" -"Initialized Docs translation (added Ukrainian language) `#925 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:527 -msgid "" -"Removed filters factory as described in corresponding issue. `#942 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:534 -msgid "" -"Now Router/Dispatcher accepts only keyword arguments. `#982 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:539 -msgid "3.0.0b4 (2022-08-14)" -msgstr "" - -#: ../../../CHANGES.rst:544 -msgid "" -"Add class helper ChatAction for constants that Telegram BotAPI uses in " -"sendChatAction request. In my opinion, this will help users and will also" -" improve compatibility with 2.x version where similar class was called " -"\"ChatActions\". `#803 `_" -msgstr "" - -#: ../../../CHANGES.rst:548 -msgid "Added possibility to combine filters or invert result" -msgstr "" - -#: ../../../CHANGES.rst:550 -msgid "Example:" -msgstr "" - -#: ../../../CHANGES.rst:558 -msgid "`#894 `_" -msgstr "" - -#: ../../../CHANGES.rst:559 -msgid "" -"Fixed type hints for redis TTL params. `#922 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:561 -msgid "" -"Added `full_name` shortcut for `Chat` object `#929 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:568 -msgid "" -"Fixed false-positive coercing of Union types in API methods `#901 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:570 -msgid "Added 3 missing content types:" -msgstr "" - -#: ../../../CHANGES.rst:572 -msgid "proximity_alert_triggered" -msgstr "" - -#: ../../../CHANGES.rst:573 -msgid "supergroup_chat_created" -msgstr "" - -#: ../../../CHANGES.rst:574 -msgid "channel_chat_created" -msgstr "" - -#: ../../../CHANGES.rst:575 -msgid "`#906 `_" -msgstr "" - -#: ../../../CHANGES.rst:576 -msgid "" -"Fixed the ability to compare the state, now comparison to copy of the " -"state will return `True`. `#927 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:578 -msgid "" -"Fixed default lock kwargs in RedisEventIsolation. `#972 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:585 -msgid "" -"Restrict including routers with strings `#896 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:587 -msgid "" -"Changed CommandPatterType to CommandPatternType in " -"`aiogram/dispatcher/filters/command.py` `#907 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:589 -msgid "" -"Added full support of `Bot API 6.1 `_ `#936 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:591 -msgid "**Breaking!** More flat project structure" -msgstr "" - -#: ../../../CHANGES.rst:593 -msgid "These packages was moved, imports in your code should be fixed:" -msgstr "" - -#: ../../../CHANGES.rst:595 -msgid ":code:`aiogram.dispatcher.filters` -> :code:`aiogram.filters`" -msgstr "" - -#: ../../../CHANGES.rst:596 -msgid ":code:`aiogram.dispatcher.fsm` -> :code:`aiogram.fsm`" -msgstr "" - -#: ../../../CHANGES.rst:597 -msgid ":code:`aiogram.dispatcher.handler` -> :code:`aiogram.handler`" -msgstr "" - -#: ../../../CHANGES.rst:598 -msgid ":code:`aiogram.dispatcher.webhook` -> :code:`aiogram.webhook`" -msgstr "" - -#: ../../../CHANGES.rst:599 -msgid "" -":code:`aiogram.dispatcher.flags/*` -> :code:`aiogram.dispatcher.flags` " -"(single module instead of package)" -msgstr "" - -#: ../../../CHANGES.rst:600 -msgid "`#938 `_" -msgstr "" - -#: ../../../CHANGES.rst:601 -msgid "" -"Removed deprecated :code:`router._handler` and " -":code:`router.register__handler` methods. `#941 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:603 -msgid "" -"Deprecated filters factory. It will be removed in next Beta (3.0b5) `#942" -" `_" -msgstr "" - -#: ../../../CHANGES.rst:605 -msgid "" -"`MessageEntity` method `get_text` was removed and `extract` was renamed " -"to `extract_from` `#944 `_" -msgstr "" - -#: ../../../CHANGES.rst:607 -msgid "" -"Added full support of `Bot API 6.2 `_ `#975 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:612 -msgid "3.0.0b3 (2022-04-19)" -msgstr "" - -#: ../../../CHANGES.rst:617 -msgid "" -"Added possibility to get command magic result as handler argument `#889 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:619 -msgid "" -"Added full support of `Telegram Bot API 6.0 " -"`_ `#890 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:626 -msgid "" -"Fixed I18n lazy-proxy. Disabled caching. `#839 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:628 -msgid "" -"Added parsing of spoiler message entity `#865 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:630 -msgid "" -"Fixed default `parse_mode` for `Message.copy_to()` method. `#876 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:632 -msgid "" -"Fixed CallbackData factory parsing IntEnum's `#885 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:639 -msgid "" -"Added automated check that pull-request adds a changes description to " -"**CHANGES** directory `#873 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:641 -msgid "" -"Changed :code:`Message.html_text` and :code:`Message.md_text` attributes " -"behaviour when message has no text. The empty string will be used instead" -" of raising error. `#874 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:644 -msgid "" -"Used `redis-py` instead of `aioredis` package in due to this packages was" -" merged into single one `#882 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:646 -msgid "" -"Solved common naming problem with middlewares that confusing too much " -"developers - now you can't see the `middleware` and `middlewares` " -"attributes at the same point because this functionality encapsulated to " -"special interface. `#883 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:653 -msgid "3.0.0b2 (2022-02-19)" -msgstr "" - -#: ../../../CHANGES.rst:658 -msgid "" -"Added possibility to pass additional arguments into the aiohttp webhook " -"handler to use this arguments inside handlers as the same as it possible " -"in polling mode. `#785 `_" -msgstr "" - -#: ../../../CHANGES.rst:661 -msgid "" -"Added possibility to add handler flags via decorator (like `pytest.mark` " -"decorator but `aiogram.flags`) `#836 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:663 -msgid "" -"Added :code:`ChatActionSender` utility to automatically sends chat action" -" while long process is running." -msgstr "" - -#: ../../../CHANGES.rst:665 -msgid "" -"It also can be used as message middleware and can be customized via " -":code:`chat_action` flag. `#837 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:672 -msgid "" -"Fixed unexpected behavior of sequences in the StateFilter. `#791 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:674 -msgid "" -"Fixed exceptions filters `#827 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:681 -msgid "" -"Logger name for processing events is changed to :code:`aiogram.events`. " -"`#830 `_" -msgstr "" - -#: ../../../CHANGES.rst:683 -msgid "" -"Added full support of Telegram Bot API 5.6 and 5.7 `#835 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:685 -msgid "" -"**BREAKING** Events isolation mechanism is moved from FSM storages to " -"standalone managers `#838 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:691 -msgid "3.0.0b1 (2021-12-12)" -msgstr "" - -#: ../../../CHANGES.rst:696 -msgid "Added new custom operation for MagicFilter named :code:`as_`" -msgstr "" - -#: ../../../CHANGES.rst:698 -msgid "Now you can use it to get magic filter result as handler argument" -msgstr "" - -#: ../../../CHANGES.rst:714 -msgid "`#759 `_" -msgstr "" - -#: ../../../CHANGES.rst:720 -msgid "" -"Fixed: Missing :code:`ChatMemberHandler` import in " -":code:`aiogram/dispatcher/handler` `#751 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:727 -msgid "" -"Check :code:`destiny` in case of no :code:`with_destiny` enabled in " -"RedisStorage key builder `#776 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:729 -msgid "" -"Added full support of `Bot API 5.5 `_ `#777 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:731 -msgid "" -"Stop using feature from #336. From now settings of client-session should " -"be placed as initializer arguments instead of changing instance " -"attributes. `#778 `_" -msgstr "" - -#: ../../../CHANGES.rst:733 -msgid "" -"Make TelegramAPIServer files wrapper in local mode bi-directional " -"(server-client, client-server) Now you can convert local path to server " -"path and server path to local path. `#779 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:739 -msgid "3.0.0a18 (2021-11-10)" -msgstr "" - -#: ../../../CHANGES.rst:744 -msgid "" -"Breaking: Changed the signature of the session middlewares Breaking: " -"Renamed AiohttpSession.make_request method parameter from call to method " -"to match the naming in the base class Added middleware for logging " -"outgoing requests `#716 `_" -msgstr "" - -#: ../../../CHANGES.rst:748 -msgid "" -"Improved description of filters resolving error. For example when you try" -" to pass wrong type of argument to the filter but don't know why filter " -"is not resolved now you can get error like this:" -msgstr "" - -#: ../../../CHANGES.rst:758 -msgid "`#717 `_" -msgstr "" - -#: ../../../CHANGES.rst:759 -msgid "" -"**Breaking internal API change** Reworked FSM Storage record keys " -"propagation `#723 `_" -msgstr "" - -#: ../../../CHANGES.rst:762 -msgid "" -"Implemented new filter named :code:`MagicData(magic_data)` that helps to " -"filter event by data from middlewares or other filters" -msgstr "" - -#: ../../../CHANGES.rst:764 -msgid "" -"For example your bot is running with argument named :code:`config` that " -"contains the application config then you can filter event by value from " -"this config:" -msgstr "" - -#: ../../../CHANGES.rst:770 -msgid "`#724 `_" -msgstr "" - -#: ../../../CHANGES.rst:776 -msgid "" -"Fixed I18n context inside error handlers `#726 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:778 -msgid "" -"Fixed bot session closing before emit shutdown `#734 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:780 -msgid "" -"Fixed: bound filter resolving does not require children routers `#736 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:787 -msgid "" -"Enabled testing on Python 3.10 Removed `async_lru` dependency (is " -"incompatible with Python 3.10) and replaced usage with protected property" -" `#719 `_" -msgstr "" - -#: ../../../CHANGES.rst:790 -msgid "" -"Converted README.md to README.rst and use it as base file for docs `#725 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:792 -msgid "Rework filters resolving:" -msgstr "" - -#: ../../../CHANGES.rst:794 -msgid "Automatically apply Bound Filters with default values to handlers" -msgstr "" - -#: ../../../CHANGES.rst:795 -msgid "Fix data transfer from parent to included routers filters" -msgstr "" - -#: ../../../CHANGES.rst:796 -msgid "`#727 `_" -msgstr "" - -#: ../../../CHANGES.rst:797 -msgid "" -"Added full support of Bot API 5.4 https://core.telegram.org/bots/api-" -"changelog#november-5-2021 `#744 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:803 -msgid "3.0.0a17 (2021-09-24)" -msgstr "" - -#: ../../../CHANGES.rst:808 -msgid "" -"Added :code:`html_text` and :code:`md_text` to Message object `#708 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:810 -msgid "" -"Refactored I18n, added context managers for I18n engine and current " -"locale `#709 `_" -msgstr "" - -#: ../../../CHANGES.rst:815 -msgid "3.0.0a16 (2021-09-22)" -msgstr "" - -#: ../../../CHANGES.rst:820 -msgid "Added support of local Bot API server files downloading" -msgstr "" - -#: ../../../CHANGES.rst:822 -msgid "" -"When Local API is enabled files can be downloaded via " -"`bot.download`/`bot.download_file` methods. `#698 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:824 -msgid "" -"Implemented I18n & L10n support `#701 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:831 -msgid "" -"Covered by tests and docs KeyboardBuilder util `#699 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:833 -msgid "**Breaking!!!**. Refactored and renamed exceptions." -msgstr "" - -#: ../../../CHANGES.rst:835 -msgid "" -"Exceptions module was moved from :code:`aiogram.utils.exceptions` to " -":code:`aiogram.exceptions`" -msgstr "" - -#: ../../../CHANGES.rst:836 -msgid "Added prefix `Telegram` for all error classes" -msgstr "" - -#: ../../../CHANGES.rst:837 -msgid "`#700 `_" -msgstr "" - -#: ../../../CHANGES.rst:838 -msgid "" -"Replaced all :code:`pragma: no cover` marks via global " -":code:`.coveragerc` config `#702 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:840 -msgid "Updated dependencies." -msgstr "" - -#: ../../../CHANGES.rst:842 -msgid "" -"**Breaking for framework developers** Now all optional dependencies " -"should be installed as extra: `poetry install -E fast -E redis -E proxy " -"-E i18n -E docs` `#703 `_" -msgstr "" - -#: ../../../CHANGES.rst:848 -msgid "3.0.0a15 (2021-09-10)" -msgstr "" - -#: ../../../CHANGES.rst:853 -msgid "" -"Ability to iterate over all states in StatesGroup. Aiogram already had in" -" check for states group so this is relative feature. `#666 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:861 -msgid "" -"Fixed incorrect type checking in the " -":class:`aiogram.utils.keyboard.KeyboardBuilder` `#674 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:868 -msgid "" -"Disable ContentType filter by default `#668 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:870 -msgid "" -"Moved update type detection from Dispatcher to Update object `#669 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:872 -msgid "" -"Updated **pre-commit** config `#681 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:874 -msgid "" -"Reworked **handlers_in_use** util. Function moved to Router as method " -"**.resolve_used_update_types()** `#682 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:879 -msgid "3.0.0a14 (2021-08-17)" -msgstr "" - -#: ../../../CHANGES.rst:884 -msgid "" -"add aliases for edit/delete reply markup to Message `#662 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:886 -msgid "" -"Reworked outer middleware chain. Prevent to call many times the outer " -"middleware for each nested router `#664 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:893 -msgid "" -"Prepare parse mode for InputMessageContent in AnswerInlineQuery method " -"`#660 `_" -msgstr "" - -#: ../../../CHANGES.rst:900 -msgid "" -"Added integration with :code:`towncrier` `#602 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:907 -msgid "" -"Added `.editorconfig` `#650 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:909 -msgid "" -"Redis storage speedup globals `#651 " -"`_" -msgstr "" - -#: ../../../CHANGES.rst:911 -msgid "" -"add allow_sending_without_reply param to Message reply aliases `#663 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:7 -msgid "2.14.3 (2021-07-21)" -msgstr "" - -#: ../../../HISTORY.rst:9 -msgid "" -"Fixed :code:`ChatMember` type detection via adding customizable object " -"serialization mechanism (`#624 " -"`_, `#623 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:13 -msgid "2.14.2 (2021-07-26)" -msgstr "" - -#: ../../../HISTORY.rst:15 -msgid "" -"Fixed :code:`MemoryStorage` cleaner (`#619 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:16 -msgid "" -"Fixed unused default locale in :code:`I18nMiddleware` (`#562 " -"`_, `#563 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:20 -msgid "2.14 (2021-07-27)" -msgstr "" - -#: ../../../HISTORY.rst:22 -msgid "" -"Full support of Bot API 5.3 (`#610 " -"`_, `#614 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:23 -msgid "" -"Fixed :code:`Message.send_copy` method for polls (`#603 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:24 -msgid "" -"Updated pattern for :code:`GroupDeactivated` exception (`#549 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:25 -msgid "" -"Added :code:`caption_entities` field in :code:`InputMedia` base class " -"(`#583 `_)" -msgstr "" - -#: ../../../HISTORY.rst:26 -msgid "" -"Fixed HTML text decorations for tag :code:`pre` (`#597 " -"`_ fixes issues `#596 " -"`_ and `#481 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:27 -msgid "" -"Fixed :code:`Message.get_full_command` method for messages with caption " -"(`#576 `_)" -msgstr "" - -#: ../../../HISTORY.rst:28 -msgid "" -"Improved :code:`MongoStorage`: remove documents with empty data from " -":code:`aiogram_data` collection to save memory. (`#609 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:32 -msgid "2.13 (2021-04-28)" -msgstr "" - -#: ../../../HISTORY.rst:34 -msgid "" -"Added full support of Bot API 5.2 (`#572 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:35 -msgid "" -"Fixed usage of :code:`provider_data` argument in :code:`sendInvoice` " -"method call" -msgstr "" - -#: ../../../HISTORY.rst:36 -msgid "" -"Fixed builtin command filter args (`#556 " -"`_) (`#558 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:37 -msgid "" -"Allowed to use State instances FSM storage directly (`#542 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:38 -msgid "" -"Added possibility to get i18n locale without User instance (`#546 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:39 -msgid "" -"Fixed returning type of :code:`Bot.*_chat_invite_link()` methods `#548 " -"`_ (`#549 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:40 -msgid "" -"Fixed deep-linking util (`#569 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:41 -msgid "" -"Small changes in documentation - describe limits in docstrings " -"corresponding to the current limit. (`#565 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:42 -msgid "" -"Fixed internal call to deprecated 'is_private' method (`#553 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:43 -msgid "" -"Added possibility to use :code:`allowed_updates` argument in Polling mode" -" (`#564 `_)" -msgstr "" - -#: ../../../HISTORY.rst:47 -msgid "2.12.1 (2021-03-22)" -msgstr "" - -#: ../../../HISTORY.rst:49 -msgid "" -"Fixed :code:`TypeError: Value should be instance of 'User' not " -"'NoneType'` (`#527 `_)" -msgstr "" - -#: ../../../HISTORY.rst:50 -msgid "" -"Added missing :code:`Chat.message_auto_delete_time` field (`#535 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:51 -msgid "" -"Added :code:`MediaGroup` filter (`#528 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:52 -msgid "" -"Added :code:`Chat.delete_message` shortcut (`#526 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:53 -msgid "" -"Added mime types parsing for :code:`aiogram.types.Document` (`#431 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:54 -msgid "" -"Added warning in :code:`TelegramObject.__setitem__` when Telegram adds a " -"new field (`#532 `_)" -msgstr "" - -#: ../../../HISTORY.rst:55 -msgid "" -"Fixed :code:`examples/chat_type_filter.py` (`#533 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:56 -msgid "" -"Removed redundant definitions in framework code (`#531 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:60 -msgid "2.12 (2021-03-14)" -msgstr "" - -#: ../../../HISTORY.rst:62 -msgid "" -"Full support for Telegram Bot API 5.1 (`#519 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:63 -msgid "" -"Fixed sending playlist of audio files and documents (`#465 " -"`_, `#468 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:64 -msgid "" -"Fixed :code:`FSMContextProxy.setdefault` method (`#491 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:65 -msgid "" -"Fixed :code:`Message.answer_location` and :code:`Message.reply_location` " -"unable to send live location (`#497 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:66 -msgid "" -"Fixed :code:`user_id` and :code:`chat_id` getters from the context at " -"Dispatcher :code:`check_key`, :code:`release_key` and :code:`throttle` " -"methods (`#520 `_)" -msgstr "" - -#: ../../../HISTORY.rst:67 -msgid "" -"Fixed :code:`Chat.update_chat` method and all similar situations (`#516 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:68 -msgid "" -"Fixed :code:`MediaGroup` attach methods (`#514 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:69 -msgid "" -"Fixed state filter for inline keyboard query callback in groups (`#508 " -"`_, `#510 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:70 -msgid "" -"Added missing :code:`ContentTypes.DICE` (`#466 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:71 -msgid "" -"Added missing vcard argument to :code:`InputContactMessageContent` " -"constructor (`#473 `_)" -msgstr "" - -#: ../../../HISTORY.rst:72 -msgid "" -"Add missing exceptions: :code:`MessageIdInvalid`, " -":code:`CantRestrictChatOwner` and :code:`UserIsAnAdministratorOfTheChat` " -"(`#474 `_, `#512 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:73 -msgid "" -"Added :code:`answer_chat_action` to the :code:`Message` object (`#501 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:74 -msgid "" -"Added dice to :code:`message.send_copy` method (`#511 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:75 -msgid "Removed deprecation warning from :code:`Message.send_copy`" -msgstr "" - -#: ../../../HISTORY.rst:76 -msgid "" -"Added an example of integration between externally created aiohttp " -"Application and aiogram (`#433 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:77 -msgid "" -"Added :code:`split_separator` argument to :code:`safe_split_text` (`#515 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:78 -msgid "" -"Fixed some typos in docs and examples (`#489 " -"`_, `#490 " -"`_, `#498 " -"`_, `#504 " -"`_, `#514 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:82 -msgid "2.11.2 (2021-11-10)" -msgstr "" - -#: ../../../HISTORY.rst:84 -msgid "Fixed default parse mode" -msgstr "" - -#: ../../../HISTORY.rst:85 -msgid "" -"Added missing \"supports_streaming\" argument to answer_video method " -"`#462 `_" -msgstr "" - -#: ../../../HISTORY.rst:89 -msgid "2.11.1 (2021-11-10)" -msgstr "" - -#: ../../../HISTORY.rst:91 -msgid "Fixed files URL template" -msgstr "" - -#: ../../../HISTORY.rst:92 -msgid "" -"Fix MessageEntity serialization for API calls `#457 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:93 -msgid "" -"When entities are set, default parse_mode become disabled (`#461 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:94 -msgid "" -"Added parameter supports_streaming to reply_video, remove redundant " -"docstrings (`#459 `_)" -msgstr "" - -#: ../../../HISTORY.rst:95 -msgid "" -"Added missing parameter to promoteChatMember alias (`#458 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:99 -msgid "2.11 (2021-11-08)" -msgstr "" - -#: ../../../HISTORY.rst:101 -msgid "" -"Added full support of Telegram Bot API 5.0 (`#454 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:102 -msgid "Added possibility to more easy specify custom API Server (example)" -msgstr "" - -#: ../../../HISTORY.rst:103 -msgid "" -"WARNING: API method :code:`close` was named in Bot class as close_bot in " -"due to Bot instance already has method with the same name. It will be " -"changed in :code:`aiogram 3.0`" -msgstr "" - -#: ../../../HISTORY.rst:104 -msgid "" -"Added alias to Message object :code:`Message.copy_to` with deprecation of" -" :code:`Message.send_copy`" -msgstr "" - -#: ../../../HISTORY.rst:105 -msgid "" -":code:`ChatType.SUPER_GROUP` renamed to :code:`ChatType.SUPERGROUP` " -"(`#438 `_)" -msgstr "" - -#: ../../../HISTORY.rst:109 -msgid "2.10.1 (2021-09-14)" -msgstr "" - -#: ../../../HISTORY.rst:111 -msgid "" -"Fixed critical bug with getting asyncio event loop in executor. (`#424 " -"`_) :code:`AttributeError:" -" 'NoneType' object has no attribute 'run_until_complete'`" -msgstr "" - -#: ../../../HISTORY.rst:115 -msgid "2.10 (2021-09-13)" -msgstr "" - -#: ../../../HISTORY.rst:117 -msgid "" -"Breaking change: Stop using _MainThread event loop in bot/dispatcher " -"instances (`#397 `_)" -msgstr "" - -#: ../../../HISTORY.rst:118 -msgid "" -"Breaking change: Replaced aiomongo with motor (`#368 " -"`_, `#380 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:119 -msgid "" -"Fixed: TelegramObject's aren't destroyed after update handling `#307 " -"`_ (`#371 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:120 -msgid "" -"Add setting current context of Telegram types (`#369 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:121 -msgid "" -"Fixed markdown escaping issues (`#363 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:122 -msgid "" -"Fixed HTML characters escaping (`#409 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:123 -msgid "Fixed italic and underline decorations when parse entities to Markdown" -msgstr "" - -#: ../../../HISTORY.rst:124 -msgid "" -"Fixed `#413 `_: parse " -"entities positioning (`#414 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:125 -msgid "" -"Added missing thumb parameter (`#362 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:126 -msgid "" -"Added public methods to register filters and middlewares (`#370 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:127 -msgid "" -"Added ChatType builtin filter (`#356 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:128 -msgid "" -"Fixed IDFilter checking message from channel (`#376 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:129 -msgid "" -"Added missed answer_poll and reply_poll (`#384 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:130 -msgid "" -"Added possibility to ignore message caption in commands filter (`#383 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:131 -msgid "Fixed addStickerToSet method" -msgstr "" - -#: ../../../HISTORY.rst:132 -msgid "" -"Added preparing thumb in send_document method (`#391 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:133 -msgid "" -"Added exception MessageToPinNotFound (`#404 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:134 -msgid "" -"Fixed handlers parameter-spec solving (`#408 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:135 -msgid "" -"Fixed CallbackQuery.answer() returns nothing (`#420 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:136 -msgid "" -"CHOSEN_INLINE_RESULT is a correct API-term (`#415 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:137 -msgid "" -"Fixed missing attributes for Animation class (`#422 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:138 -msgid "" -"Added missed emoji argument to reply_dice (`#395 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:139 -msgid "" -"Added is_chat_creator method to ChatMemberStatus (`#394 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:140 -msgid "" -"Added missed ChatPermissions to __all__ (`#393 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:141 -msgid "" -"Added is_forward method to Message (`#390 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:142 -msgid "" -"Fixed usage of deprecated is_private function (`#421 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:144 -msgid "and many others documentation and examples changes:" -msgstr "" - -#: ../../../HISTORY.rst:146 -msgid "" -"Updated docstring of RedisStorage2 (`#423 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:147 -msgid "" -"Updated I18n example (added docs and fixed typos) (`#419 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:148 -msgid "" -"A little documentation revision (`#381 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:149 -msgid "" -"Added comments about correct errors_handlers usage (`#398 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:150 -msgid "" -"Fixed typo rexex -> regex (`#386 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:151 -msgid "" -"Fixed docs Quick start page code blocks (`#417 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:152 -msgid "" -"fixed type hints of callback_data (`#400 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:153 -msgid "" -"Prettify readme, update downloads stats badge (`#406 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:157 -msgid "2.9.2 (2021-06-13)" -msgstr "" - -#: ../../../HISTORY.rst:159 -msgid "" -"Fixed :code:`Message.get_full_command()` `#352 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:160 -msgid "" -"Fixed markdown util `#353 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:164 -msgid "2.9 (2021-06-08)" -msgstr "" - -#: ../../../HISTORY.rst:166 -msgid "Added full support of Telegram Bot API 4.9" -msgstr "" - -#: ../../../HISTORY.rst:167 -msgid "" -"Fixed user context at poll_answer update (`#322 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:168 -msgid "" -"Fix Chat.set_description (`#325 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:169 -msgid "" -"Add lazy session generator (`#326 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:170 -msgid "" -"Fix text decorations (`#315 " -"`_, `#316 " -"`_, `#328 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:171 -msgid "" -"Fix missing :code:`InlineQueryResultPhoto` :code:`parse_mode` field " -"(`#331 `_)" -msgstr "" - -#: ../../../HISTORY.rst:172 -msgid "" -"Fix fields from parent object in :code:`KeyboardButton` (`#344 " -"`_ fixes `#343 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:173 -msgid "" -"Add possibility to get bot id without calling :code:`get_me` (`#296 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:177 -msgid "2.8 (2021-04-26)" -msgstr "" - -#: ../../../HISTORY.rst:179 -msgid "Added full support of Bot API 4.8" -msgstr "" - -#: ../../../HISTORY.rst:180 -msgid "" -"Added :code:`Message.answer_dice` and :code:`Message.reply_dice` methods " -"(`#306 `_)" -msgstr "" - -#: ../../../HISTORY.rst:184 -msgid "2.7 (2021-04-07)" -msgstr "" - -#: ../../../HISTORY.rst:186 -msgid "" -"Added full support of Bot API 4.7 (`#294 " -"`_ `#289 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:187 -msgid "" -"Added default parse mode for send_animation method (`#293 " -"`_ `#292 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:188 -msgid "" -"Added new API exception when poll requested in public chats (`#270 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:189 -msgid "" -"Make correct User and Chat get_mention methods (`#277 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:190 -msgid "Small changes and other minor improvements" -msgstr "" - -#: ../../../HISTORY.rst:194 -msgid "2.6.1 (2021-01-25)" -msgstr "" - -#: ../../../HISTORY.rst:196 -msgid "" -"Fixed reply :code:`KeyboardButton` initializer with :code:`request_poll` " -"argument (`#266 `_)" -msgstr "" - -#: ../../../HISTORY.rst:197 -msgid "Added helper for poll types (:code:`aiogram.types.PollType`)" -msgstr "" - -#: ../../../HISTORY.rst:198 -msgid "" -"Changed behavior of Telegram_object :code:`.as_*` and :code:`.to_*` " -"methods. It will no more mutate the object. (`#247 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:202 -msgid "2.6 (2021-01-23)" -msgstr "" - -#: ../../../HISTORY.rst:204 -msgid "" -"Full support of Telegram Bot API v4.6 (Polls 2.0) `#265 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:205 -msgid "Aded new filter - IsContactSender (commit)" -msgstr "" - -#: ../../../HISTORY.rst:206 -msgid "" -"Fixed proxy extra dependencies version `#262 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:210 -msgid "2.5.3 (2021-01-05)" -msgstr "" - -#: ../../../HISTORY.rst:212 -msgid "" -"`#255 `_ Updated " -"CallbackData factory validity check. More correct for non-latin symbols" -msgstr "" - -#: ../../../HISTORY.rst:213 -msgid "" -"`#256 `_ Fixed " -":code:`renamed_argument` decorator error" -msgstr "" - -#: ../../../HISTORY.rst:214 -msgid "" -"`#257 `_ One more fix of " -"CommandStart filter" -msgstr "" - -#: ../../../HISTORY.rst:218 -msgid "2.5.2 (2021-01-01)" -msgstr "" - -#: ../../../HISTORY.rst:220 -msgid "Get back :code:`quote_html` and :code:`escape_md` functions" -msgstr "" - -#: ../../../HISTORY.rst:224 -msgid "2.5.1 (2021-01-01)" -msgstr "" - -#: ../../../HISTORY.rst:226 -msgid "Hot-fix of :code:`CommandStart` filter" -msgstr "" - -#: ../../../HISTORY.rst:230 -msgid "2.5 (2021-01-01)" -msgstr "" - -#: ../../../HISTORY.rst:232 -msgid "" -"Added full support of Telegram Bot API 4.5 (`#250 " -"`_, `#251 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:233 -msgid "" -"`#239 `_ Fixed " -":code:`check_token` method" -msgstr "" - -#: ../../../HISTORY.rst:234 -msgid "" -"`#238 `_, `#241 " -"`_: Added deep-linking " -"utils" -msgstr "" - -#: ../../../HISTORY.rst:235 -msgid "" -"`#248 `_ Fixed support of " -"aiohttp-socks" -msgstr "" - -#: ../../../HISTORY.rst:236 -msgid "Updated setup.py. No more use of internal pip API" -msgstr "" - -#: ../../../HISTORY.rst:237 -msgid "Updated links to documentations (https://docs.aiogram.dev)" -msgstr "" - -#: ../../../HISTORY.rst:238 -msgid "" -"Other small changes and minor improvements (`#223 " -"`_ and others...)" -msgstr "" - -#: ../../../HISTORY.rst:242 -msgid "2.4 (2021-10-29)" -msgstr "" - -#: ../../../HISTORY.rst:244 -msgid "Added Message.send_copy method (forward message without forwarding)" -msgstr "" - -#: ../../../HISTORY.rst:245 -msgid "" -"Safe close of aiohttp client session (no more exception when application " -"is shutdown)" -msgstr "" - -#: ../../../HISTORY.rst:246 -msgid "" -"No more \"adWanced\" words in project `#209 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:247 -msgid "" -"Arguments user and chat is renamed to user_id and chat_id in " -"Dispatcher.throttle method `#196 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:248 -msgid "" -"Fixed set_chat_permissions `#198 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:249 -msgid "" -"Fixed Dispatcher polling task does not process cancellation `#199 " -"`_, `#201 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:250 -msgid "" -"Fixed compatibility with latest asyncio version `#200 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:251 -msgid "" -"Disabled caching by default for lazy_gettext method of I18nMiddleware " -"`#203 `_" -msgstr "" - -#: ../../../HISTORY.rst:252 -msgid "" -"Fixed HTML user mention parser `#205 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:253 -msgid "" -"Added IsReplyFilter `#210 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:254 -msgid "" -"Fixed send_poll method arguments `#211 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:255 -msgid "" -"Added OrderedHelper `#215 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:256 -msgid "" -"Fix incorrect completion order. `#217 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:260 -msgid "2.3 (2021-08-16)" -msgstr "" - -#: ../../../HISTORY.rst:262 -msgid "Full support of Telegram Bot API 4.4" -msgstr "" - -#: ../../../HISTORY.rst:263 -msgid "Fixed `#143 `_" -msgstr "" - -#: ../../../HISTORY.rst:264 -msgid "" -"Added new filters from issue `#151 " -"`_: `#172 " -"`_, `#176 " -"`_, `#182 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:265 -msgid "" -"Added expire argument to RedisStorage2 and other storage fixes `#145 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:266 -msgid "" -"Fixed JSON and Pickle storages `#138 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:267 -msgid "" -"Implemented MongoStorage `#153 " -"`_ based on aiomongo (soon" -" motor will be also added)" -msgstr "" - -#: ../../../HISTORY.rst:268 -msgid "Improved tests" -msgstr "" - -#: ../../../HISTORY.rst:269 -msgid "Updated examples" -msgstr "" - -#: ../../../HISTORY.rst:270 -msgid "" -"Warning: Updated auth widget util. `#190 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:271 -msgid "" -"Implemented throttle decorator `#181 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:275 -msgid "2.2 (2021-06-09)" -msgstr "" - -#: ../../../HISTORY.rst:277 -msgid "Provides latest Telegram Bot API (4.3)" -msgstr "" - -#: ../../../HISTORY.rst:278 -msgid "Updated docs for filters" -msgstr "" - -#: ../../../HISTORY.rst:279 -msgid "" -"Added opportunity to use different bot tokens from single bot instance " -"(via context manager, `#100 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:280 -msgid "" -"IMPORTANT: Fixed Typo: :code:`data` -> :code:`bucket` in " -":code:`update_bucket` for RedisStorage2 (`#132 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:284 -msgid "2.1 (2021-04-18)" -msgstr "" - -#: ../../../HISTORY.rst:286 -msgid "Implemented all new features from Telegram Bot API 4.2" -msgstr "" - -#: ../../../HISTORY.rst:287 -msgid "" -":code:`is_member` and :code:`is_admin` methods of :code:`ChatMember` and " -":code:`ChatMemberStatus` was renamed to :code:`is_chat_member` and " -":code:`is_chat_admin`" -msgstr "" - -#: ../../../HISTORY.rst:288 -msgid "Remover func filter" -msgstr "" - -#: ../../../HISTORY.rst:289 -msgid "" -"Added some useful Message edit functions (:code:`Message.edit_caption`, " -":code:`Message.edit_media`, :code:`Message.edit_reply_markup`) (`#121 " -"`_, `#103 " -"`_, `#104 " -"`_, `#112 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:290 -msgid "" -"Added requests timeout for all methods (`#110 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:291 -msgid "" -"Added :code:`answer*` methods to :code:`Message` object (`#112 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:292 -msgid "Maked some improvements of :code:`CallbackData` factory" -msgstr "" - -#: ../../../HISTORY.rst:293 -msgid "Added deep-linking parameter filter to :code:`CommandStart` filter" -msgstr "" - -#: ../../../HISTORY.rst:294 -msgid "" -"Implemented opportunity to use DNS over socks (`#97 " -"`_ -> `#98 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:295 -msgid "" -"Implemented logging filter for extending LogRecord attributes (Will be " -"usefull with external logs collector utils like GrayLog, Kibana and etc.)" -msgstr "" - -#: ../../../HISTORY.rst:296 -msgid "Updated :code:`requirements.txt` and :code:`dev_requirements.txt` files" -msgstr "" - -#: ../../../HISTORY.rst:297 -msgid "Other small changes and minor improvements" -msgstr "" - -#: ../../../HISTORY.rst:301 -msgid "2.0.1 (2021-12-31)" -msgstr "" - -#: ../../../HISTORY.rst:303 -msgid "" -"Implemented CallbackData factory (`example " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:304 -msgid "" -"Implemented methods for answering to inline query from context and reply " -"with animation to the messages. `#85 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:305 -msgid "" -"Fixed installation from tar.gz `#84 " -"`_" -msgstr "" - -#: ../../../HISTORY.rst:306 -msgid "" -"More exceptions (:code:`ChatIdIsEmpty` and " -":code:`NotEnoughRightsToRestrict`)" -msgstr "" - -#: ../../../HISTORY.rst:310 -msgid "2.0 (2021-10-28)" -msgstr "" - -#: ../../../HISTORY.rst:312 -msgid "" -"This update will break backward compability with Python 3.6 and works " -"only with Python 3.7+: - contextvars (PEP-567); - New syntax for " -"annotations (PEP-563)." -msgstr "" - -#: ../../../HISTORY.rst:316 -msgid "" -"Changes: - Used contextvars instead of :code:`aiogram.utils.context`; - " -"Implemented filters factory; - Implemented new filters mechanism; - " -"Allowed to customize command prefix in CommandsFilter; - Implemented " -"mechanism of passing results from filters (as dicts) as kwargs in " -"handlers (like fixtures in pytest); - Implemented states group feature; -" -" Implemented FSM storage's proxy; - Changed files uploading mechanism; - " -"Implemented pipe for uploading files from URL; - Implemented I18n " -"Middleware; - Errors handlers now should accept only two arguments " -"(current update and exception); - Used :code:`aiohttp_socks` instead of " -":code:`aiosocksy` for Socks4/5 proxy; - types.ContentType was divided to " -":code:`types.ContentType` and :code:`types.ContentTypes`; - Allowed to " -"use rapidjson instead of ujson/json; - :code:`.current()` method in bot " -"and dispatcher objects was renamed to :code:`get_current()`;" -msgstr "" - -#: ../../../HISTORY.rst:333 -msgid "" -"Full changelog - You can read more details about this release in " -"migration FAQ: " -"``_" -msgstr "" - -#: ../../../HISTORY.rst:338 -msgid "1.4 (2021-08-03)" -msgstr "" - -#: ../../../HISTORY.rst:340 -msgid "Bot API 4.0 (`#57 `_)" -msgstr "" - -#: ../../../HISTORY.rst:344 -msgid "1.3.3 (2021-07-16)" -msgstr "" - -#: ../../../HISTORY.rst:346 -msgid "Fixed markup-entities parsing;" -msgstr "" - -#: ../../../HISTORY.rst:347 -msgid "Added more API exceptions;" -msgstr "" - -#: ../../../HISTORY.rst:348 -msgid "Now InlineQueryResultLocation has live_period;" -msgstr "" - -#: ../../../HISTORY.rst:349 -msgid "Added more message content types;" -msgstr "" - -#: ../../../HISTORY.rst:350 -msgid "Other small changes and minor improvements." -msgstr "" - -#: ../../../HISTORY.rst:354 -msgid "1.3.2 (2021-05-27)" -msgstr "" - -#: ../../../HISTORY.rst:356 -msgid "Fixed crashing of polling process. (i think)" -msgstr "" - -#: ../../../HISTORY.rst:357 -msgid "Added parse_mode field into input query results according to Bot API Docs." -msgstr "" - -#: ../../../HISTORY.rst:358 -msgid "" -"Added new methods for Chat object. (`#42 " -"`_, `#43 " -"`_)" -msgstr "" - -#: ../../../HISTORY.rst:359 -msgid "**Warning**: disabled connections limit for bot aiohttp session." -msgstr "" - -#: ../../../HISTORY.rst:360 -msgid "**Warning**: Destroyed \"temp sessions\" mechanism." -msgstr "" - -#: ../../../HISTORY.rst:361 -msgid "Added new error types." -msgstr "" - -#: ../../../HISTORY.rst:362 -msgid "Refactored detection of error type." -msgstr "" - -#: ../../../HISTORY.rst:363 -msgid "Small fixes of executor util." -msgstr "" - -#: ../../../HISTORY.rst:364 -msgid "Fixed RethinkDBStorage" -msgstr "" - -#: ../../../HISTORY.rst:367 -msgid "1.3.1 (2018-05-27)" -msgstr "" - -#: ../../../HISTORY.rst:371 -msgid "1.3 (2021-04-22)" -msgstr "" - -#: ../../../HISTORY.rst:373 -msgid "Allow to use Socks5 proxy (need manually install :code:`aiosocksy`)." -msgstr "" - -#: ../../../HISTORY.rst:374 -msgid "Refactored :code:`aiogram.utils.executor` module." -msgstr "" - -#: ../../../HISTORY.rst:375 -msgid "**[Warning]** Updated requirements list." -msgstr "" - -#: ../../../HISTORY.rst:379 -msgid "1.2.3 (2018-04-14)" -msgstr "" - -#: ../../../HISTORY.rst:381 -msgid "Fixed API errors detection" -msgstr "" - -#: ../../../HISTORY.rst:382 -msgid "Fixed compability of :code:`setup.py` with pip 10.0.0" -msgstr "" - -#: ../../../HISTORY.rst:386 -msgid "1.2.2 (2018-04-08)" -msgstr "" - -#: ../../../HISTORY.rst:388 -msgid "Added more error types." -msgstr "" - -#: ../../../HISTORY.rst:389 -msgid "" -"Implemented method :code:`InputFile.from_url(url: str)` for downloading " -"files." -msgstr "" - -#: ../../../HISTORY.rst:390 -msgid "Implemented big part of API method tests." -msgstr "" - -#: ../../../HISTORY.rst:391 -msgid "Other small changes and mminor improvements." -msgstr "" - -#: ../../../HISTORY.rst:395 -msgid "1.2.1 (2018-03-25)" -msgstr "" - -#: ../../../HISTORY.rst:397 -msgid "" -"Fixed handling Venue's [`#27 " -"`_, `#26 " -"`_]" -msgstr "" - -#: ../../../HISTORY.rst:398 -msgid "" -"Added parse_mode to all medias (Bot API 3.6 support) [`#23 " -"`_]" -msgstr "" - -#: ../../../HISTORY.rst:399 -msgid "" -"Now regexp filter can be used with callback query data [`#19 " -"`_]" -msgstr "" - -#: ../../../HISTORY.rst:400 -msgid "" -"Improvements in :code:`InlineKeyboardMarkup` & " -":code:`ReplyKeyboardMarkup` objects [`#21 " -"`_]" -msgstr "" - -#: ../../../HISTORY.rst:401 -msgid "Other bug & typo fixes and minor improvements." -msgstr "" - -#: ../../../HISTORY.rst:405 -msgid "1.2 (2018-02-23)" -msgstr "" - -#: ../../../HISTORY.rst:407 -msgid "Full provide Telegram Bot API 3.6" -msgstr "" - -#: ../../../HISTORY.rst:408 -msgid "" -"Fixed critical error: :code:`Fatal Python error: PyImport_GetModuleDict: " -"no module dictionary!`" -msgstr "" - -#: ../../../HISTORY.rst:409 -msgid "Implemented connection pool in RethinkDB driver" -msgstr "" - -#: ../../../HISTORY.rst:410 ../../../HISTORY.rst:418 -msgid "Typo fixes of documentstion" -msgstr "" - -#: ../../../HISTORY.rst:411 ../../../HISTORY.rst:464 -msgid "Other bug fixes and minor improvements." -msgstr "" - -#: ../../../HISTORY.rst:415 -msgid "1.1 (2018-01-27)" -msgstr "" - -#: ../../../HISTORY.rst:417 -msgid "" -"Added more methods for data types (like " -":code:`message.reply_sticker(...)` or :code:`file.download(...)`" -msgstr "" - -#: ../../../HISTORY.rst:419 -msgid "" -"Allow to set default parse mode for messages (:code:`Bot( ... , " -"parse_mode='HTML')`)" -msgstr "" - -#: ../../../HISTORY.rst:420 -msgid "" -"Allowed to cancel event from the :code:`Middleware.on_pre_process_`" -msgstr "" - -#: ../../../HISTORY.rst:421 -msgid "Fixed sending files with correct names." -msgstr "" - -#: ../../../HISTORY.rst:422 -msgid "Fixed MediaGroup" -msgstr "" - -#: ../../../HISTORY.rst:423 -msgid "" -"Added RethinkDB storage for FSM " -"(:code:`aiogram.contrib.fsm_storage.rethinkdb`)" -msgstr "" - -#: ../../../HISTORY.rst:427 -msgid "1.0.4 (2018-01-10)" -msgstr "" - -#: ../../../HISTORY.rst:431 -msgid "1.0.3 (2018-01-07)" -msgstr "" - -#: ../../../HISTORY.rst:433 -msgid "Added middlewares mechanism." -msgstr "" - -#: ../../../HISTORY.rst:434 -msgid "Added example for middlewares and throttling manager." -msgstr "" - -#: ../../../HISTORY.rst:435 -msgid "" -"Added logging middleware " -"(:code:`aiogram.contrib.middlewares.logging.LoggingMiddleware`)" -msgstr "" - -#: ../../../HISTORY.rst:436 -msgid "Fixed handling errors in async tasks (marked as 'async_task')" -msgstr "" - -#: ../../../HISTORY.rst:437 -msgid "Small fixes and other minor improvements." -msgstr "" - -#: ../../../HISTORY.rst:441 -msgid "1.0.2 (2017-11-29)" -msgstr "" - -#: ../../../HISTORY.rst:445 -msgid "1.0.1 (2017-11-21)" -msgstr "" - -#: ../../../HISTORY.rst:447 -msgid "Implemented :code:`types.InputFile` for more easy sending local files" -msgstr "" - -#: ../../../HISTORY.rst:448 -msgid "" -"**Danger!** Fixed typo in word pooling. Now whatever all methods with " -"that word marked as deprecated and original methods is renamed to " -"polling. Check it in you'r code before updating!" -msgstr "" - -#: ../../../HISTORY.rst:449 -msgid "Fixed helper for chat actions (:code:`types.ChatActions`)" -msgstr "" - -#: ../../../HISTORY.rst:450 -msgid "" -"Added `example " -"`_" -" for media group." -msgstr "" - -#: ../../../HISTORY.rst:454 -msgid "1.0 (2017-11-19)" -msgstr "" - -#: ../../../HISTORY.rst:456 -msgid "Remaked data types serialozation/deserialization mechanism (Speed up)." -msgstr "" - -#: ../../../HISTORY.rst:457 -msgid "Fully rewrited all Telegram data types." -msgstr "" - -#: ../../../HISTORY.rst:458 -msgid "Bot object was fully rewritted (regenerated)." -msgstr "" - -#: ../../../HISTORY.rst:459 -msgid "Full provide Telegram Bot API 3.4+ (with sendMediaGroup)" -msgstr "" - -#: ../../../HISTORY.rst:460 -msgid "Warning: Now :code:`BaseStorage.close()` is awaitable! (FSM)" -msgstr "" - -#: ../../../HISTORY.rst:461 -msgid "Fixed compability with uvloop." -msgstr "" - -#: ../../../HISTORY.rst:462 -msgid "More employments for :code:`aiogram.utils.context`." -msgstr "" - -#: ../../../HISTORY.rst:463 -msgid "Allowed to disable :code:`ujson`." -msgstr "" - -#: ../../../HISTORY.rst:465 -msgid "Migrated from Bitbucket to Github." -msgstr "" - -#: ../../../HISTORY.rst:469 -msgid "0.4.1 (2017-08-03)" -msgstr "" - -#: ../../../HISTORY.rst:473 -msgid "0.4 (2017-08-05)" -msgstr "" - -#: ../../../HISTORY.rst:477 -msgid "0.3.4 (2017-08-04)" -msgstr "" - -#: ../../../HISTORY.rst:481 -msgid "0.3.3 (2017-07-05)" -msgstr "" - -#: ../../../HISTORY.rst:485 -msgid "0.3.2 (2017-07-04)" -msgstr "" - -#: ../../../HISTORY.rst:489 -msgid "0.3.1 (2017-07-04)" -msgstr "" - -#: ../../../HISTORY.rst:493 -msgid "0.2b1 (2017-06-00)" -msgstr "" - -#: ../../../HISTORY.rst:497 -msgid "0.1 (2017-06-03)" -msgstr "" - -#~ msgid "\\ |release| [UNRELEASED DRAFT] (2023-01-07)" -#~ msgstr "" - -#~ msgid "" -#~ ":class:`aiogram.enums.chat_action.ChatActions`, " -#~ ":class:`aiogram.enums.chat_member_status.ChatMemberStatus`, " -#~ ":class:`aiogram.enums.chat_type.ChatType`, " -#~ ":class:`aiogram.enums.content_type.ContentType`, " -#~ ":class:`aiogram.enums.dice_emoji.DiceEmoji`, " -#~ ":class:`aiogram.enums.inline_query_result_type.InlineQueryResultType`," -#~ " :class:`aiogram.enums.input_media_type.InputMediaType`, " -#~ ":class:`aiogram.enums.mask_position_point.MaskPositionPoint`, " -#~ ":class:`aiogram.enums.menu_button_type.MenuButtonType`, " -#~ ":class:`aiogram.enums.message_entity_type.MessageEntityType`, " -#~ ":class:`aiogram.enums.parse_mode.ParseMode`, " -#~ ":class:`aiogram.enums.poll_type.PollType`, " -#~ ":class:`aiogram.enums.sticker_type.StickerType`, " -#~ ":class:`aiogram.enums.topic_icon_color.TopicIconColor`, " -#~ ":class:`aiogram.enums.update_type.UpdateType`," -#~ msgstr "" - -#~ msgid "\\ |release| [UNRELEASED DRAFT] (2023-03-11)" -#~ msgstr "" - -#~ msgid "\\ |release| [UNRELEASED DRAFT] (2023-07-02)" -#~ msgstr "" - -#~ msgid "" -#~ "If router does not support custom " -#~ "event it does not break and passes" -#~ " it to included routers `#1147 " -#~ "`_" -#~ msgstr "" - -#~ msgid "" -#~ "If you have implemented you own " -#~ "storages you should extend record key" -#~ " generation with new one attribute -" -#~ " `thread_id`" -#~ msgstr "" - -#~ msgid "" -#~ "Added X-Telegram-Bot-Api-Secret-Token" -#~ " header check `#1173 " -#~ "`_" -#~ msgstr "" - -#~ msgid "" -#~ "Added possibility to pass custom headers" -#~ " to URLInputFile object `#1191 " -#~ "`_" -#~ msgstr "" - -#~ msgid "" -#~ "Change type of result in " -#~ "InlineQueryResult enum for " -#~ "`InlineQueryResultCachedMpeg4Gif` and " -#~ "`InlineQueryResultMpeg4Gif` to more correct " -#~ "according to documentation." -#~ msgstr "" - -#~ msgid "" -#~ "Change regexp for entities parsing to" -#~ " more correct (`InlineQueryResultType.yml`). " -#~ "`#1146 `_" -#~ msgstr "" - -#~ msgid "" -#~ "Fixed signature of startup/shutdown events " -#~ "to include the **dispatcher.workflow_data as" -#~ " the handler arguments. `#1155 " -#~ "`_" -#~ msgstr "" - -#~ msgid "" -#~ "Added missing FORUM_TOPIC_EDITED value to " -#~ "content_type property `#1160 " -#~ "`_" -#~ msgstr "" - -#~ msgid "" -#~ "Fixed compatibility with Python 3.8-3.9 " -#~ "`#1162 `_" -#~ msgstr "" - -#~ msgid "" -#~ "Changed small grammar typos for " -#~ "`upload_file` `#1133 " -#~ "`_" -#~ msgstr "" - -#~ msgid "" -#~ "Added global defaults `disable_web_page_preview` " -#~ "and `protect_content` in addition to " -#~ "`parse_mode` to the Bot instance, " -#~ "reworked internal request builder mechanism." -#~ " `#1142 `_" -#~ msgstr "" - -#~ msgid "" -#~ "Be careful, not all libraries is " -#~ "already updated to using V2 (for " -#~ "example at the time, when this " -#~ "warning was added FastAPI still not " -#~ "support V2)" -#~ msgstr "" - -#~ msgid "\\ |release| [UNRELEASED DRAFT] (2023-07-30)" -#~ msgstr "" - -#~ msgid "\\ |release| [UNRELEASED DRAFT] (2023-08-06)" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/contributing.po b/docs/locale/en/LC_MESSAGES/contributing.po deleted file mode 100644 index 7cf1b5d8..00000000 --- a/docs/locale/en/LC_MESSAGES/contributing.po +++ /dev/null @@ -1,358 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 2023. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aiogram \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-26 23:17+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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" - -#: ../../contributing.rst:3 -msgid "Contributing" -msgstr "" - -#: ../../contributing.rst:5 -msgid "You're welcome to contribute to aiogram!" -msgstr "" - -#: ../../contributing.rst:7 -msgid "" -"*aiogram* is an open-source project, and anyone can contribute to it in " -"any possible way" -msgstr "" - -#: ../../contributing.rst:11 -msgid "Developing" -msgstr "" - -#: ../../contributing.rst:13 -msgid "" -"Before making any changes in the framework code, it is necessary to fork " -"the project and clone the project to your PC and know how to do a pull-" -"request." -msgstr "" - -#: ../../contributing.rst:16 -msgid "" -"How to work with pull-request you can read in the `GitHub docs " -"`_" -msgstr "" - -#: ../../contributing.rst:18 -msgid "" -"Also in due to this project is written in Python, you will need Python to" -" be installed (is recommended to use latest Python versions, but any " -"version starting from 3.8 can be used)" -msgstr "" - -#: ../../contributing.rst:23 -msgid "Use virtualenv" -msgstr "" - -#: ../../contributing.rst:25 -msgid "" -"You can create a virtual environment in a directory using :code:`venv` " -"module (it should be pre-installed by default):" -msgstr "" - -#: ../../contributing.rst:31 -msgid "" -"This action will create a :code:`.venv` directory with the Python " -"binaries and then you will be able to install packages into that isolated" -" environment." -msgstr "" - -#: ../../contributing.rst:36 -msgid "Activate the environment" -msgstr "" - -#: ../../contributing.rst:38 ../../contributing.rst:77 -msgid "Linux / macOS:" -msgstr "" - -#: ../../contributing.rst:44 -msgid "Windows cmd" -msgstr "" - -#: ../../contributing.rst:50 -msgid "Windows PowerShell" -msgstr "" - -#: ../../contributing.rst:56 -msgid "" -"To check it worked, use described command, it should show the :code:`pip`" -" version and location inside the isolated environment" -msgstr "" - -#: ../../contributing.rst:64 -msgid "" -"Also make sure you have the latest pip version in your virtual " -"environment to avoid errors on next steps:" -msgstr "" - -#: ../../contributing.rst:73 -msgid "Setup project" -msgstr "" - -#: ../../contributing.rst:75 -msgid "" -"After activating the environment install `aiogram` from sources and their" -" dependencies." -msgstr "" - -#: ../../contributing.rst:83 -msgid "Windows:" -msgstr "" - -#: ../../contributing.rst:89 -msgid "" -"It will install :code:`aiogram` in editable mode into your virtual " -"environment and all dependencies." -msgstr "" - -#: ../../contributing.rst:92 -msgid "Making changes in code" -msgstr "" - -#: ../../contributing.rst:94 -msgid "" -"At this point you can make any changes in the code that you want, it can " -"be any fixes, implementing new features or experimenting." -msgstr "" - -#: ../../contributing.rst:99 -msgid "Format the code (code-style)" -msgstr "" - -#: ../../contributing.rst:101 -msgid "" -"Note that this project is Black-formatted, so you should follow that " -"code-style, too be sure You're correctly doing this let's reformat the " -"code automatically:" -msgstr "" - -#: ../../contributing.rst:111 -msgid "Run tests" -msgstr "" - -#: ../../contributing.rst:113 -msgid "All changes should be tested:" -msgstr "" - -#: ../../contributing.rst:119 -msgid "" -"Also if you are doing something with Redis-storage, you will need to test" -" everything works with Redis:" -msgstr "" - -#: ../../contributing.rst:126 -msgid "Docs" -msgstr "" - -#: ../../contributing.rst:128 -msgid "" -"We are using `Sphinx` to render docs in different languages, all sources " -"located in `docs` directory, you can change the sources and to test it " -"you can start live-preview server and look what you are doing:" -msgstr "" - -#: ../../contributing.rst:137 -msgid "Docs translations" -msgstr "" - -#: ../../contributing.rst:139 -msgid "" -"Translation of the documentation is very necessary and cannot be done " -"without the help of the community from all over the world, so you are " -"welcome to translate the documentation into different languages." -msgstr "" - -#: ../../contributing.rst:143 -msgid "Before start, let's up to date all texts:" -msgstr "" - -#: ../../contributing.rst:151 -msgid "" -"Change the :code:`` in example below to the target " -"language code, after that you can modify texts inside " -":code:`docs/locale//LC_MESSAGES` as :code:`*.po` files by " -"using any text-editor or specialized utilites for GNU Gettext, for " -"example via `poedit `_." -msgstr "" - -#: ../../contributing.rst:156 -msgid "To view results:" -msgstr "" - -#: ../../contributing.rst:164 -msgid "Describe changes" -msgstr "" - -#: ../../contributing.rst:166 -msgid "" -"Describe your changes in one or more sentences so that bot developers " -"know what's changed in their favorite framework - create " -"`..rst` file and write the description." -msgstr "" - -#: ../../contributing.rst:169 -msgid "" -":code:`` is Issue or Pull-request number, after release link to " -"this issue will be published to the *Changelog* page." -msgstr "" - -#: ../../contributing.rst:172 -msgid ":code:`` is a changes category marker, it can be one of:" -msgstr "" - -#: ../../contributing.rst:174 -msgid ":code:`feature` - when you are implementing new feature" -msgstr "" - -#: ../../contributing.rst:175 -msgid ":code:`bugfix` - when you fix a bug" -msgstr "" - -#: ../../contributing.rst:176 -msgid ":code:`doc` - when you improve the docs" -msgstr "" - -#: ../../contributing.rst:177 -msgid ":code:`removal` - when you remove something from the framework" -msgstr "" - -#: ../../contributing.rst:178 -msgid "" -":code:`misc` - when changed something inside the Core or project " -"configuration" -msgstr "" - -#: ../../contributing.rst:180 -msgid "" -"If you have troubles with changing category feel free to ask Core-" -"contributors to help with choosing it." -msgstr "" - -#: ../../contributing.rst:183 -msgid "Complete" -msgstr "" - -#: ../../contributing.rst:185 -msgid "" -"After you have made all your changes, publish them to the repository and " -"create a pull request as mentioned at the beginning of the article and " -"wait for a review of these changes." -msgstr "" - -#: ../../contributing.rst:190 -msgid "Star on GitHub" -msgstr "" - -#: ../../contributing.rst:192 -msgid "" -"You can \"star\" repository on GitHub - " -"https://github.com/aiogram/aiogram (click the star button at the top " -"right)" -msgstr "" - -#: ../../contributing.rst:194 -msgid "" -"Adding stars makes it easier for other people to find this project and " -"understand how useful it is." -msgstr "" - -#: ../../contributing.rst:197 -msgid "Guides" -msgstr "" - -#: ../../contributing.rst:199 -msgid "" -"You can write guides how to develop Bots on top of aiogram and publish it" -" into YouTube, Medium, GitHub Books, any Courses platform or any other " -"platform that you know." -msgstr "" - -#: ../../contributing.rst:202 -msgid "" -"This will help more people learn about the framework and learn how to use" -" it" -msgstr "" - -#: ../../contributing.rst:206 -msgid "Take answers" -msgstr "" - -#: ../../contributing.rst:208 -msgid "" -"The developers is always asks for any question in our chats or any other " -"platforms like GitHub Discussions, StackOverflow and others, feel free to" -" answer to this questions." -msgstr "" - -#: ../../contributing.rst:212 -msgid "Funding" -msgstr "" - -#: ../../contributing.rst:214 -msgid "" -"The development of the project is free and not financed by commercial " -"organizations, it is my personal initiative (`@JRootJunior " -"`_) and I am engaged in the development of the " -"project in my free time." -msgstr "" - -#: ../../contributing.rst:218 -msgid "" -"So, if you want to financially support the project, or, for example, give" -" me a pizza or a beer, you can do it on `OpenCollective " -"`_." -msgstr "" - -#~ msgid "" -#~ "So, if you want to financially " -#~ "support the project, or, for example," -#~ " give me a pizza or a beer, " -#~ "you can do it on `OpenCollective " -#~ "`_ or `Patreon " -#~ "`_." -#~ msgstr "" - -#~ msgid "Linux/ macOS:" -#~ msgstr "" - -#~ msgid "Windows PoweShell" -#~ msgstr "" - -#~ msgid "" -#~ "To check it worked, use described " -#~ "command, it should show the :code:`pip`" -#~ " location inside the isolated environment" -#~ msgstr "" - -#~ msgid "Linux, macOS:" -#~ msgstr "" - -#~ msgid "" -#~ "Also make you shure you have the" -#~ " latest pip version in your virtual" -#~ " environment to avoid errors on next" -#~ " steps:" -#~ msgstr "" - -#~ msgid "" -#~ "After activating the environment install " -#~ "`aiogram` from sources and their " -#~ "dependencies:" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/deployment/index.po b/docs/locale/en/LC_MESSAGES/deployment/index.po deleted file mode 100644 index e5fe6ce8..00000000 --- a/docs/locale/en/LC_MESSAGES/deployment/index.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../deployment/index.rst:3 -msgid "Deployment" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/base.po b/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/base.po deleted file mode 100644 index 0237e667..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/base.po +++ /dev/null @@ -1,56 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/class_based_handlers/base.rst:5 -msgid "BaseHandler" -msgstr "" - -#: ../../dispatcher/class_based_handlers/base.rst:7 -msgid "" -"Base handler is generic abstract class and should be used in all other " -"class-based handlers." -msgstr "" - -#: ../../dispatcher/class_based_handlers/base.rst:9 -msgid "Import: :code:`from aiogram.handler import BaseHandler`" -msgstr "" - -#: ../../dispatcher/class_based_handlers/base.rst:11 -msgid "" -"By default you will need to override only method :code:`async def " -"handle(self) -> Any: ...`" -msgstr "" - -#: ../../dispatcher/class_based_handlers/base.rst:13 -msgid "" -"This class is also have an default initializer and you don't need to " -"change it. Initializer accepts current event and all contextual data and " -"which can be accessed from the handler through attributes: :code:`event: " -"TelegramEvent` and :code:`data: Dict[Any, str]`" -msgstr "" - -#: ../../dispatcher/class_based_handlers/base.rst:17 -msgid "" -"If instance of the bot is specified in context data or current context it" -" can be accessed through *bot* class attribute." -msgstr "" - -#: ../../dispatcher/class_based_handlers/base.rst:20 -msgid "Example" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/callback_query.po b/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/callback_query.po deleted file mode 100644 index d7d31d0c..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/callback_query.po +++ /dev/null @@ -1,42 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/class_based_handlers/callback_query.rst:3 -msgid "CallbackQueryHandler" -msgstr "" - -#: aiogram.handlers.callback_query.CallbackQueryHandler:1 of -msgid "There is base class for callback query handlers." -msgstr "" - -#: aiogram.handlers.callback_query.CallbackQueryHandler:13 of -msgid "Example:" -msgstr "" - -#: aiogram.handlers.callback_query.CallbackQueryHandler.from_user:1 of -msgid "Is alias for `event.from_user`" -msgstr "" - -#: aiogram.handlers.callback_query.CallbackQueryHandler.message:1 of -msgid "Is alias for `event.message`" -msgstr "" - -#: aiogram.handlers.callback_query.CallbackQueryHandler.callback_data:1 of -msgid "Is alias for `event.data`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/chat_member.po b/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/chat_member.po deleted file mode 100644 index 19d4b9b0..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/chat_member.po +++ /dev/null @@ -1,44 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/class_based_handlers/chat_member.rst:3 -msgid "ChatMemberHandler" -msgstr "" - -#: ../../dispatcher/class_based_handlers/chat_member.rst:5 -msgid "There is base class for chat member updated events." -msgstr "" - -#: ../../dispatcher/class_based_handlers/chat_member.rst:8 -msgid "Simple usage" -msgstr "" - -#: ../../dispatcher/class_based_handlers/chat_member.rst:23 -msgid "Extension" -msgstr "" - -#: ../../dispatcher/class_based_handlers/chat_member.rst:25 -msgid "" -"This base handler is subclass of :ref:`BaseHandler ` " -"with some extensions:" -msgstr "" - -#: ../../dispatcher/class_based_handlers/chat_member.rst:27 -msgid ":code:`self.chat` is alias for :code:`self.event.chat`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/chosen_inline_result.po b/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/chosen_inline_result.po deleted file mode 100644 index 558adf89..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/chosen_inline_result.po +++ /dev/null @@ -1,48 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/class_based_handlers/chosen_inline_result.rst:3 -msgid "ChosenInlineResultHandler" -msgstr "" - -#: ../../dispatcher/class_based_handlers/chosen_inline_result.rst:5 -msgid "There is base class for chosen inline result handlers." -msgstr "" - -#: ../../dispatcher/class_based_handlers/chosen_inline_result.rst:8 -msgid "Simple usage" -msgstr "" - -#: ../../dispatcher/class_based_handlers/chosen_inline_result.rst:22 -msgid "Extension" -msgstr "" - -#: ../../dispatcher/class_based_handlers/chosen_inline_result.rst:24 -msgid "" -"This base handler is subclass of :ref:`BaseHandler ` " -"with some extensions:" -msgstr "" - -#: ../../dispatcher/class_based_handlers/chosen_inline_result.rst:26 -msgid ":code:`self.chat` is alias for :code:`self.event.chat`" -msgstr "" - -#: ../../dispatcher/class_based_handlers/chosen_inline_result.rst:27 -msgid ":code:`self.from_user` is alias for :code:`self.event.from_user`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/error.po b/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/error.po deleted file mode 100644 index 0d6e9328..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/error.po +++ /dev/null @@ -1,50 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/class_based_handlers/error.rst:3 -msgid "ErrorHandler" -msgstr "" - -#: ../../dispatcher/class_based_handlers/error.rst:5 -msgid "There is base class for error handlers." -msgstr "" - -#: ../../dispatcher/class_based_handlers/error.rst:8 -msgid "Simple usage" -msgstr "" - -#: ../../dispatcher/class_based_handlers/error.rst:27 -msgid "Extension" -msgstr "" - -#: ../../dispatcher/class_based_handlers/error.rst:29 -msgid "" -"This base handler is subclass of :ref:`BaseHandler ` " -"with some extensions:" -msgstr "" - -#: ../../dispatcher/class_based_handlers/error.rst:31 -msgid "" -":code:`self.exception_name` is alias for " -":code:`self.event.__class__.__name__`" -msgstr "" - -#: ../../dispatcher/class_based_handlers/error.rst:32 -msgid ":code:`self.exception_message` is alias for :code:`str(self.event)`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/index.po b/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/index.po deleted file mode 100644 index 780ca896..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/index.po +++ /dev/null @@ -1,42 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/class_based_handlers/index.rst:3 -msgid "Class based handlers" -msgstr "" - -#: ../../dispatcher/class_based_handlers/index.rst:5 -msgid "" -"A handler is a async callable which takes a event with contextual data " -"and returns a response." -msgstr "" - -#: ../../dispatcher/class_based_handlers/index.rst:7 -msgid "" -"In **aiogram** it can be more than just an async function, these allow " -"you to use classes which can be used as Telegram event handlers to " -"structure your event handlers and reuse code by harnessing inheritance " -"and mixins." -msgstr "" - -#: ../../dispatcher/class_based_handlers/index.rst:10 -msgid "" -"There are some base class based handlers what you need to use in your own" -" handlers:" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/inline_query.po b/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/inline_query.po deleted file mode 100644 index b8a5fdef..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/inline_query.po +++ /dev/null @@ -1,48 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/class_based_handlers/inline_query.rst:3 -msgid "InlineQueryHandler" -msgstr "" - -#: ../../dispatcher/class_based_handlers/inline_query.rst:5 -msgid "There is base class for inline query handlers." -msgstr "" - -#: ../../dispatcher/class_based_handlers/inline_query.rst:8 -msgid "Simple usage" -msgstr "" - -#: ../../dispatcher/class_based_handlers/inline_query.rst:22 -msgid "Extension" -msgstr "" - -#: ../../dispatcher/class_based_handlers/inline_query.rst:24 -msgid "" -"This base handler is subclass of :ref:`BaseHandler ` " -"with some extensions:" -msgstr "" - -#: ../../dispatcher/class_based_handlers/inline_query.rst:26 -msgid ":code:`self.chat` is alias for :code:`self.event.chat`" -msgstr "" - -#: ../../dispatcher/class_based_handlers/inline_query.rst:27 -msgid ":code:`self.query` is alias for :code:`self.event.query`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/message.po b/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/message.po deleted file mode 100644 index 247cd4de..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/message.po +++ /dev/null @@ -1,48 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/class_based_handlers/message.rst:3 -msgid "MessageHandler" -msgstr "" - -#: ../../dispatcher/class_based_handlers/message.rst:5 -msgid "There is base class for message handlers." -msgstr "" - -#: ../../dispatcher/class_based_handlers/message.rst:8 -msgid "Simple usage" -msgstr "" - -#: ../../dispatcher/class_based_handlers/message.rst:22 -msgid "Extension" -msgstr "" - -#: ../../dispatcher/class_based_handlers/message.rst:24 -msgid "" -"This base handler is subclass of [BaseHandler](basics.md#basehandler) " -"with some extensions:" -msgstr "" - -#: ../../dispatcher/class_based_handlers/message.rst:26 -msgid ":code:`self.chat` is alias for :code:`self.event.chat`" -msgstr "" - -#: ../../dispatcher/class_based_handlers/message.rst:27 -msgid ":code:`self.from_user` is alias for :code:`self.event.from_user`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/poll.po b/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/poll.po deleted file mode 100644 index c8717a1d..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/poll.po +++ /dev/null @@ -1,48 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/class_based_handlers/poll.rst:3 -msgid "PollHandler" -msgstr "" - -#: ../../dispatcher/class_based_handlers/poll.rst:5 -msgid "There is base class for poll handlers." -msgstr "" - -#: ../../dispatcher/class_based_handlers/poll.rst:8 -msgid "Simple usage" -msgstr "" - -#: ../../dispatcher/class_based_handlers/poll.rst:21 -msgid "Extension" -msgstr "" - -#: ../../dispatcher/class_based_handlers/poll.rst:23 -msgid "" -"This base handler is subclass of :ref:`BaseHandler ` " -"with some extensions:" -msgstr "" - -#: ../../dispatcher/class_based_handlers/poll.rst:25 -msgid ":code:`self.question` is alias for :code:`self.event.question`" -msgstr "" - -#: ../../dispatcher/class_based_handlers/poll.rst:26 -msgid ":code:`self.options` is alias for :code:`self.event.options`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/pre_checkout_query.po b/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/pre_checkout_query.po deleted file mode 100644 index 2f868119..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/pre_checkout_query.po +++ /dev/null @@ -1,44 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/class_based_handlers/pre_checkout_query.rst:3 -msgid "PreCheckoutQueryHandler" -msgstr "" - -#: ../../dispatcher/class_based_handlers/pre_checkout_query.rst:5 -msgid "There is base class for callback query handlers." -msgstr "" - -#: ../../dispatcher/class_based_handlers/pre_checkout_query.rst:8 -msgid "Simple usage" -msgstr "" - -#: ../../dispatcher/class_based_handlers/pre_checkout_query.rst:21 -msgid "Extension" -msgstr "" - -#: ../../dispatcher/class_based_handlers/pre_checkout_query.rst:23 -msgid "" -"This base handler is subclass of :ref:`BaseHandler ` " -"with some extensions:" -msgstr "" - -#: ../../dispatcher/class_based_handlers/pre_checkout_query.rst:25 -msgid ":code:`self.from_user` is alias for :code:`self.event.from_user`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/shipping_query.po b/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/shipping_query.po deleted file mode 100644 index ccc60897..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/class_based_handlers/shipping_query.po +++ /dev/null @@ -1,44 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/class_based_handlers/shipping_query.rst:3 -msgid "ShippingQueryHandler" -msgstr "" - -#: ../../dispatcher/class_based_handlers/shipping_query.rst:5 -msgid "There is base class for callback query handlers." -msgstr "" - -#: ../../dispatcher/class_based_handlers/shipping_query.rst:8 -msgid "Simple usage" -msgstr "" - -#: ../../dispatcher/class_based_handlers/shipping_query.rst:21 -msgid "Extension" -msgstr "" - -#: ../../dispatcher/class_based_handlers/shipping_query.rst:23 -msgid "" -"This base handler is subclass of :ref:`BaseHandler ` " -"with some extensions:" -msgstr "" - -#: ../../dispatcher/class_based_handlers/shipping_query.rst:25 -msgid ":code:`self.from_user` is alias for :code:`self.event.from_user`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/dependency_injection.po b/docs/locale/en/LC_MESSAGES/dispatcher/dependency_injection.po deleted file mode 100644 index b3e158d8..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/dependency_injection.po +++ /dev/null @@ -1,96 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 2023. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aiogram \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-26 23:17+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/dependency_injection.rst:3 -msgid "Dependency injection" -msgstr "" - -#: ../../dispatcher/dependency_injection.rst:5 -msgid "" -"Dependency injection is a programming technique that makes a class " -"independent of its dependencies. It achieves that by decoupling the usage" -" of an object from its creation. This helps you to follow `SOLID's " -"`_ dependency inversion and single " -"responsibility principles." -msgstr "" - -#: ../../dispatcher/dependency_injection.rst:12 -msgid "How it works in aiogram" -msgstr "" - -#: ../../dispatcher/dependency_injection.rst:14 -msgid "" -"For each update :class:`aiogram.dispatcher.dispatcher.Dispatcher` passes " -"handling context data. Filters and middleware can also make changes to " -"the context." -msgstr "" - -#: ../../dispatcher/dependency_injection.rst:17 -msgid "" -"To access contextual data you should specify corresponding keyword " -"parameter in handler or filter. For example, to get " -":class:`aiogram.fsm.context.FSMContext` we do it like that:" -msgstr "" - -#: ../../dispatcher/dependency_injection.rst:30 -msgid "Injecting own dependencies" -msgstr "" - -#: ../../dispatcher/dependency_injection.rst:32 -msgid "Aiogram provides several ways to complement / modify contextual data." -msgstr "" - -#: ../../dispatcher/dependency_injection.rst:34 -msgid "" -"The first and easiest way is to simply specify the named arguments in " -":class:`aiogram.dispatcher.dispatcher.Dispatcher` initialization, polling" -" start methods or " -":class:`aiogram.webhook.aiohttp_server.SimpleRequestHandler` " -"initialization if you use webhooks." -msgstr "" - -#: ../../dispatcher/dependency_injection.rst:46 -msgid "Analogy for webhook:" -msgstr "" - -#: ../../dispatcher/dependency_injection.rst:55 -msgid "" -":class:`aiogram.dispatcher.dispatcher.Dispatcher`'s workflow data also " -"can be supplemented by setting values as in a dictionary:" -msgstr "" - -#: ../../dispatcher/dependency_injection.rst:63 -msgid "" -"The middlewares updates the context quite often. You can read more about " -"them on this page:" -msgstr "" - -#: ../../dispatcher/dependency_injection.rst:66 -msgid ":ref:`Middlewares `" -msgstr "" - -#: ../../dispatcher/dependency_injection.rst:68 -msgid "The last way is to return a dictionary from the filter:" -msgstr "" - -#: ../../dispatcher/dependency_injection.rst:72 -msgid "" -"...or using :ref:`MagicFilter ` with :code:`.as_(...)` " -"method." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/dispatcher.po b/docs/locale/en/LC_MESSAGES/dispatcher/dispatcher.po deleted file mode 100644 index e5a8a9f2..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/dispatcher.po +++ /dev/null @@ -1,184 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 2022. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aiogram \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-26 23:17+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/dispatcher.rst:3 -msgid "Dispatcher" -msgstr "" - -#: ../../dispatcher/dispatcher.rst:5 -msgid "" -"Dispatcher is root :obj:`Router` and in code Dispatcher can be used " -"directly for routing updates or attach another routers into dispatcher." -msgstr "" - -#: ../../dispatcher/dispatcher.rst:7 -msgid "" -"Here is only listed base information about Dispatcher. All about writing " -"handlers, filters and etc. you can found in next pages:" -msgstr "" - -#: ../../dispatcher/dispatcher.rst:9 -msgid ":ref:`Router `" -msgstr "" - -#: ../../dispatcher/dispatcher.rst:10 -msgid ":ref:`Filtering events`" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher:1 -#: aiogram.dispatcher.dispatcher.Dispatcher.__init__:1 of -msgid "Root router" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.__init__ -#: aiogram.dispatcher.dispatcher.Dispatcher.feed_raw_update -#: aiogram.dispatcher.dispatcher.Dispatcher.feed_update -#: aiogram.dispatcher.dispatcher.Dispatcher.run_polling -#: aiogram.dispatcher.dispatcher.Dispatcher.start_polling of -msgid "Parameters" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.__init__:3 of -msgid "Storage for FSM" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.__init__:4 of -msgid "FSM strategy" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.__init__:5 of -msgid "Events isolation" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.__init__:6 of -msgid "" -"Disable FSM, note that if you disable FSM then you should not use storage" -" and events isolation" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.__init__:8 of -msgid "Other arguments, will be passed as keyword arguments to handlers" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.feed_raw_update:1 of -msgid "" -"Main entry point for incoming updates with automatic Dict->Update " -"serializer" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.feed_update:1 of -msgid "" -"Main entry point for incoming updates Response of this method can be used" -" as Webhook response" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.run_polling:1 of -msgid "Run many bots with polling" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.run_polling:3 of -msgid "Bot instances (one or mre)" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.run_polling:4 -#: aiogram.dispatcher.dispatcher.Dispatcher.start_polling:4 of -msgid "Long-polling wait time" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.run_polling:5 -#: aiogram.dispatcher.dispatcher.Dispatcher.start_polling:5 of -msgid "Run task for each event and no wait result" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.run_polling:6 -#: aiogram.dispatcher.dispatcher.Dispatcher.start_polling:6 of -msgid "backoff-retry config" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.run_polling:7 of -msgid "List of the update types you want your bot to receive" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.run_polling:8 -#: aiogram.dispatcher.dispatcher.Dispatcher.start_polling:9 of -msgid "handle signals (SIGINT/SIGTERM)" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.run_polling:9 -#: aiogram.dispatcher.dispatcher.Dispatcher.start_polling:10 of -msgid "close bot sessions on shutdown" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.run_polling:10 -#: aiogram.dispatcher.dispatcher.Dispatcher.start_polling:11 of -msgid "contextual data" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.run_polling -#: aiogram.dispatcher.dispatcher.Dispatcher.start_polling of -msgid "Returns" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.start_polling:1 of -msgid "Polling runner" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.start_polling:3 of -msgid "Bot instances (one or more)" -msgstr "" - -#: aiogram.dispatcher.dispatcher.Dispatcher.start_polling:7 of -msgid "" -"List of the update types you want your bot to receive By default, all " -"used update types are enabled (resolved from handlers)" -msgstr "" - -#: ../../dispatcher/dispatcher.rst:18 -msgid "Simple usage" -msgstr "" - -#: ../../dispatcher/dispatcher.rst:20 ../../dispatcher/dispatcher.rst:33 -msgid "Example:" -msgstr "" - -#: ../../dispatcher/dispatcher.rst:31 -msgid "Including routers" -msgstr "" - -#: ../../dispatcher/dispatcher.rst:43 -msgid "Handling updates" -msgstr "" - -#: ../../dispatcher/dispatcher.rst:45 -msgid "" -"All updates can be propagated to the dispatcher by " -":obj:`Dispatcher.feed_update(bot=..., update=...)` method:" -msgstr "" - -#~ msgid "Bot instances" -#~ msgstr "" - -#~ msgid "Poling timeout" -#~ msgstr "" - -#~ msgid "`Router `__" -#~ msgstr "" - -#~ msgid "`Observer `__" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/errors.po b/docs/locale/en/LC_MESSAGES/dispatcher/errors.po deleted file mode 100644 index d9f28e0a..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/errors.po +++ /dev/null @@ -1,159 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/errors.rst:3 -msgid "Errors" -msgstr "" - -#: ../../dispatcher/errors.rst:7 -msgid "Handling errors" -msgstr "" - -#: ../../dispatcher/errors.rst:9 -msgid "" -"Is recommended way that you should use errors inside handlers using try-" -"except block, but in common cases you can use global errors handler at " -"router or dispatcher level." -msgstr "" - -#: ../../dispatcher/errors.rst:12 -msgid "" -"If you specify errors handler for router - it will be used for all " -"handlers inside this router." -msgstr "" - -#: ../../dispatcher/errors.rst:14 -msgid "" -"If you specify errors handler for dispatcher - it will be used for all " -"handlers inside all routers." -msgstr "" - -#: ../../dispatcher/errors.rst:34 -msgid "ErrorEvent" -msgstr "" - -#: aiogram.types.error_event.ErrorEvent:1 of -msgid "" -"Internal event, should be used to receive errors while processing Updates" -" from Telegram" -msgstr "" - -#: aiogram.types.error_event.ErrorEvent:3 of -msgid "Source: https://core.telegram.org/bots/api#error-event" -msgstr "" - -#: ../../docstring aiogram.types.error_event.ErrorEvent.update:1 of -msgid "Received update" -msgstr "" - -#: ../../docstring aiogram.types.error_event.ErrorEvent.exception:1 of -msgid "Exception" -msgstr "" - -#: ../../dispatcher/errors.rst:45 -msgid "Error types" -msgstr "" - -#: aiogram.exceptions.AiogramError:1 of -msgid "Base exception for all aiogram errors." -msgstr "" - -#: aiogram.exceptions.DetailedAiogramError:1 of -msgid "Base exception for all aiogram errors with detailed message." -msgstr "" - -#: aiogram.exceptions.CallbackAnswerException:1 of -msgid "Exception for callback answer." -msgstr "" - -#: aiogram.exceptions.UnsupportedKeywordArgument:1 of -msgid "Exception raised when a keyword argument is passed as filter." -msgstr "" - -#: aiogram.exceptions.TelegramAPIError:1 of -msgid "Base exception for all Telegram API errors." -msgstr "" - -#: aiogram.exceptions.TelegramNetworkError:1 of -msgid "Base exception for all Telegram network errors." -msgstr "" - -#: aiogram.exceptions.TelegramRetryAfter:1 of -msgid "Exception raised when flood control exceeds." -msgstr "" - -#: aiogram.exceptions.TelegramMigrateToChat:1 of -msgid "Exception raised when chat has been migrated to a supergroup." -msgstr "" - -#: aiogram.exceptions.TelegramBadRequest:1 of -msgid "Exception raised when request is malformed." -msgstr "" - -#: aiogram.exceptions.TelegramNotFound:1 of -msgid "Exception raised when chat, message, user, etc. not found." -msgstr "" - -#: aiogram.exceptions.TelegramConflictError:1 of -msgid "" -"Exception raised when bot token is already used by another application in" -" polling mode." -msgstr "" - -#: aiogram.exceptions.TelegramUnauthorizedError:1 of -msgid "Exception raised when bot token is invalid." -msgstr "" - -#: aiogram.exceptions.TelegramForbiddenError:1 of -msgid "Exception raised when bot is kicked from chat or etc." -msgstr "" - -#: aiogram.exceptions.TelegramServerError:1 of -msgid "Exception raised when Telegram server returns 5xx error." -msgstr "" - -#: aiogram.exceptions.RestartingTelegram:1 of -msgid "Exception raised when Telegram server is restarting." -msgstr "" - -#: aiogram.exceptions.RestartingTelegram:3 of -msgid "" -"It seems like this error is not used by Telegram anymore, but it's still " -"here for backward compatibility." -msgstr "" - -#: aiogram.exceptions.RestartingTelegram:6 of -msgid "" -"Currently, you should expect that Telegram can raise RetryAfter (with " -"timeout 5 seconds)" -msgstr "" - -#: aiogram.exceptions.RestartingTelegram:7 of -msgid "error instead of this one." -msgstr "" - -#: aiogram.exceptions.TelegramEntityTooLarge:1 of -msgid "Exception raised when you are trying to send a file that is too large." -msgstr "" - -#: aiogram.exceptions.ClientDecodeError:1 of -msgid "" -"Exception raised when client can't decode response. (Malformed response, " -"etc.)" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/filters/callback_data.po b/docs/locale/en/LC_MESSAGES/dispatcher/filters/callback_data.po deleted file mode 100644 index 559bf6be..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/filters/callback_data.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/filters/callback_data.rst:3 -msgid "Callback Data Factory & Filter" -msgstr "" - -#: aiogram.filters.callback_data.CallbackData:1 of -msgid "Base class for callback data wrapper" -msgstr "" - -#: aiogram.filters.callback_data.CallbackData:3 of -msgid "This class should be used as super-class of user-defined callbacks." -msgstr "" - -#: aiogram.filters.callback_data.CallbackData:5 of -msgid "" -"The class-keyword :code:`prefix` is required to define prefix and also " -"the argument :code:`sep` can be passed to define separator (default is " -":code:`:`)." -msgstr "" - -#: aiogram.filters.callback_data.CallbackData.pack:1 of -msgid "Generate callback data string" -msgstr "" - -#: aiogram.filters.callback_data.CallbackData.filter -#: aiogram.filters.callback_data.CallbackData.pack -#: aiogram.filters.callback_data.CallbackData.unpack of -msgid "Returns" -msgstr "" - -#: aiogram.filters.callback_data.CallbackData.pack:3 of -msgid "valid callback data for Telegram Bot API" -msgstr "" - -#: aiogram.filters.callback_data.CallbackData.unpack:1 of -msgid "Parse callback data string" -msgstr "" - -#: aiogram.filters.callback_data.CallbackData.filter -#: aiogram.filters.callback_data.CallbackData.unpack of -msgid "Parameters" -msgstr "" - -#: aiogram.filters.callback_data.CallbackData.unpack:3 of -msgid "value from Telegram" -msgstr "" - -#: aiogram.filters.callback_data.CallbackData.unpack:4 of -msgid "instance of CallbackData" -msgstr "" - -#: aiogram.filters.callback_data.CallbackData.filter:1 of -msgid "Generates a filter for callback query with rule" -msgstr "" - -#: aiogram.filters.callback_data.CallbackData.filter:3 of -msgid "magic rule" -msgstr "" - -#: aiogram.filters.callback_data.CallbackData.filter:4 of -msgid "instance of filter" -msgstr "" - -#: ../../dispatcher/filters/callback_data.rst:11 -msgid "Usage" -msgstr "" - -#: ../../dispatcher/filters/callback_data.rst:13 -msgid "Create subclass of :code:`CallbackData`:" -msgstr "" - -#: ../../dispatcher/filters/callback_data.rst:21 -msgid "After that you can generate any callback based on this class, for example:" -msgstr "" - -#: ../../dispatcher/filters/callback_data.rst:29 -msgid "" -"So... Now you can use this class to generate any callbacks with defined " -"structure" -msgstr "" - -#: ../../dispatcher/filters/callback_data.rst:41 -msgid "... and handle by specific rules" -msgstr "" - -#: ../../dispatcher/filters/callback_data.rst:52 -msgid "Also can be used in :doc:`Keyboard builder `:" -msgstr "" - -#: ../../dispatcher/filters/callback_data.rst:63 -msgid "Another abstract example:" -msgstr "" - -#: ../../dispatcher/filters/callback_data.rst:101 -msgid "Known limitations" -msgstr "" - -#: ../../dispatcher/filters/callback_data.rst:103 -msgid "Allowed types and their subclasses:" -msgstr "" - -#: ../../dispatcher/filters/callback_data.rst:105 -msgid ":code:`str`" -msgstr "" - -#: ../../dispatcher/filters/callback_data.rst:106 -msgid ":code:`int`" -msgstr "" - -#: ../../dispatcher/filters/callback_data.rst:107 -msgid ":code:`bool`" -msgstr "" - -#: ../../dispatcher/filters/callback_data.rst:108 -msgid ":code:`float`" -msgstr "" - -#: ../../dispatcher/filters/callback_data.rst:109 -msgid ":code:`Decimal` (:code:`from decimal import Decimal`)" -msgstr "" - -#: ../../dispatcher/filters/callback_data.rst:110 -msgid ":code:`Fraction` (:code:`from fractions import Fraction`)" -msgstr "" - -#: ../../dispatcher/filters/callback_data.rst:111 -msgid ":code:`UUID` (:code:`from uuid import UUID`)" -msgstr "" - -#: ../../dispatcher/filters/callback_data.rst:112 -msgid ":code:`Enum` (:code:`from enum import Enum`, only for string enums)" -msgstr "" - -#: ../../dispatcher/filters/callback_data.rst:113 -msgid ":code:`IntEnum` (:code:`from enum import IntEnum`, only for int enums)" -msgstr "" - -#: ../../dispatcher/filters/callback_data.rst:118 -msgid "" -"Note that the integer Enum's should be always is subclasses of " -":code:`IntEnum` in due to parsing issues." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/filters/chat_member_updated.po b/docs/locale/en/LC_MESSAGES/dispatcher/filters/chat_member_updated.po deleted file mode 100644 index f20ee663..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/filters/chat_member_updated.po +++ /dev/null @@ -1,228 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 2022. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aiogram \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-26 23:17+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/filters/chat_member_updated.rst:3 -msgid "ChatMemberUpdated" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:6 -msgid "Usage" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:8 -msgid "Handle user leave or join events" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:20 -msgid "" -"Or construct your own terms via using pre-defined set of statuses and " -"transitions." -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:24 -msgid "Explanation" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:31 -msgid "" -"You can import from :code:`aiogram.filters` all available variants of " -"`statuses`_, `status groups`_ or `transitions`_:" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:35 -msgid "Statuses" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:38 -#: ../../dispatcher/filters/chat_member_updated.rst:63 -#: ../../dispatcher/filters/chat_member_updated.rst:83 -msgid "name" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:38 -#: ../../dispatcher/filters/chat_member_updated.rst:63 -#: ../../dispatcher/filters/chat_member_updated.rst:83 -msgid "Description" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:40 -msgid ":code:`CREATOR`" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:40 -msgid "Chat owner" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:42 -msgid ":code:`ADMINISTRATOR`" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:42 -msgid "Chat administrator" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:44 -msgid ":code:`MEMBER`" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:44 -msgid "Member of the chat" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:46 -msgid ":code:`RESTRICTED`" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:46 -msgid "Restricted user (can be not member)" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:48 -msgid ":code:`LEFT`" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:48 -msgid "Isn't member of the chat" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:50 -msgid ":code:`KICKED`" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:50 -msgid "Kicked member by administrators" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:53 -msgid "" -"Statuses can be extended with `is_member` flag by prefixing with " -":code:`+` (for :code:`is_member == True)` or :code:`-` (for " -":code:`is_member == False`) symbol, like :code:`+RESTRICTED` or " -":code:`-RESTRICTED`" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:58 -msgid "Status groups" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:60 -msgid "" -"The particular statuses can be combined via bitwise :code:`or` operator, " -"like :code:`CREATOR | ADMINISTRATOR`" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:65 -msgid ":code:`IS_MEMBER`" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:65 -msgid "" -"Combination of :code:`(CREATOR | ADMINISTRATOR | MEMBER | +RESTRICTED)` " -"statuses." -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:67 -msgid ":code:`IS_ADMIN`" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:67 -msgid "Combination of :code:`(CREATOR | ADMINISTRATOR)` statuses." -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:69 -msgid ":code:`IS_NOT_MEMBER`" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:69 -msgid "Combination of :code:`(LEFT | KICKED | -RESTRICTED)` statuses." -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:73 -msgid "Transitions" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:75 -msgid "" -"Transitions can be defined via bitwise shift operators :code:`>>` and " -":code:`<<`. Old chat member status should be defined in the left side for" -" :code:`>>` operator (right side for :code:`<<`) and new status should be" -" specified on the right side for :code:`>>` operator (left side for " -":code:`<<`)" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:79 -msgid "" -"The direction of transition can be changed via bitwise inversion " -"operator: :code:`~JOIN_TRANSITION` will produce swap of old and new " -"statuses." -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:85 -msgid ":code:`JOIN_TRANSITION`" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:85 -msgid "" -"Means status changed from :code:`IS_NOT_MEMBER` to :code:`IS_MEMBER` " -"(:code:`IS_NOT_MEMBER >> IS_MEMBER`)" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:88 -msgid ":code:`LEAVE_TRANSITION`" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:88 -msgid "" -"Means status changed from :code:`IS_MEMBER` to :code:`IS_NOT_MEMBER` " -"(:code:`~JOIN_TRANSITION`)" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:91 -msgid ":code:`PROMOTED_TRANSITION`" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:91 -msgid "" -"Means status changed from :code:`(MEMBER | RESTRICTED | LEFT | KICKED) >>" -" ADMINISTRATOR` (:code:`(MEMBER | RESTRICTED | LEFT | KICKED) >> " -"ADMINISTRATOR`)" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:98 -msgid "" -"Note that if you define the status unions (via :code:`|`) you will need " -"to add brackets for the statement before use shift operator in due to " -"operator priorities." -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:103 -msgid "Allowed handlers" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:105 -msgid "Allowed update types for this filter:" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:107 -msgid "`my_chat_member`" -msgstr "" - -#: ../../dispatcher/filters/chat_member_updated.rst:108 -msgid "`chat_member`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/filters/command.po b/docs/locale/en/LC_MESSAGES/dispatcher/filters/command.po deleted file mode 100644 index 846f439e..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/filters/command.po +++ /dev/null @@ -1,156 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/filters/command.rst:3 -msgid "Command" -msgstr "" - -#: aiogram.filters.command.Command:1 of -msgid "This filter can be helpful for handling commands from the text messages." -msgstr "" - -#: aiogram.filters.command.Command:3 of -msgid "" -"Works only with :class:`aiogram.types.message.Message` events which have " -"the :code:`text`." -msgstr "" - -#: aiogram.filters.command.Command.__init__:1 of -msgid "List of commands (string or compiled regexp patterns)" -msgstr "" - -#: aiogram.filters.command.Command.__init__ of -msgid "Parameters" -msgstr "" - -#: aiogram.filters.command.Command.__init__:3 of -msgid "" -"Prefix for command. Prefix is always a single char but here you can pass " -"all of allowed prefixes, for example: :code:`\"/!\"` will work with " -"commands prefixed by :code:`\"/\"` or :code:`\"!\"`." -msgstr "" - -#: aiogram.filters.command.Command.__init__:7 of -msgid "Ignore case (Does not work with regexp, use flags instead)" -msgstr "" - -#: aiogram.filters.command.Command.__init__:8 of -msgid "" -"Ignore bot mention. By default, bot can not handle commands intended for " -"other bots" -msgstr "" - -#: aiogram.filters.command.Command.__init__:10 of -msgid "Validate command object via Magic filter after all checks done" -msgstr "" - -#: ../../dispatcher/filters/command.rst:10 -msgid "" -"When filter is passed the :class:`aiogram.filters.command.CommandObject` " -"will be passed to the handler argument :code:`command`" -msgstr "" - -#: aiogram.filters.command.CommandObject:1 of -msgid "" -"Instance of this object is always has command and it prefix. Can be " -"passed as keyword argument **command** to the handler" -msgstr "" - -#: ../../docstring aiogram.filters.command.CommandObject.prefix:1 of -msgid "Command prefix" -msgstr "" - -#: ../../docstring aiogram.filters.command.CommandObject.command:1 of -msgid "Command without prefix and mention" -msgstr "" - -#: ../../docstring aiogram.filters.command.CommandObject.mention:1 of -msgid "Mention (if available)" -msgstr "" - -#: ../../docstring aiogram.filters.command.CommandObject.args:1 of -msgid "Command argument" -msgstr "" - -#: ../../docstring aiogram.filters.command.CommandObject.regexp_match:1 of -msgid "" -"Will be presented match result if the command is presented as regexp in " -"filter" -msgstr "" - -#: aiogram.filters.command.CommandObject.mentioned:1 of -msgid "This command has mention?" -msgstr "" - -#: aiogram.filters.command.CommandObject.text:1 of -msgid "Generate original text from object" -msgstr "" - -#: ../../dispatcher/filters/command.rst:19 -msgid "Usage" -msgstr "" - -#: ../../dispatcher/filters/command.rst:21 -msgid "Filter single variant of commands: :code:`Command(\"start\")`" -msgstr "" - -#: ../../dispatcher/filters/command.rst:22 -msgid "" -"Handle command by regexp pattern: " -":code:`Command(re.compile(r\"item_(\\d+)\"))`" -msgstr "" - -#: ../../dispatcher/filters/command.rst:23 -msgid "" -"Match command by multiple variants: :code:`Command(\"item\", " -"re.compile(r\"item_(\\d+)\"))`" -msgstr "" - -#: ../../dispatcher/filters/command.rst:24 -msgid "" -"Handle commands in public chats intended for other bots: " -":code:`Command(\"command\", ignore_mention=True)`" -msgstr "" - -#: ../../dispatcher/filters/command.rst:25 -msgid "" -"Use :class:`aiogram.types.bot_command.BotCommand` object as command " -"reference :code:`Command(BotCommand(command=\"command\", description=\"My" -" awesome command\")`" -msgstr "" - -#: ../../dispatcher/filters/command.rst:29 -msgid "Command cannot include spaces or any whitespace" -msgstr "" - -#: ../../dispatcher/filters/command.rst:32 -msgid "Allowed handlers" -msgstr "" - -#: ../../dispatcher/filters/command.rst:34 -msgid "Allowed update types for this filter:" -msgstr "" - -#: ../../dispatcher/filters/command.rst:36 -msgid "`message`" -msgstr "" - -#: ../../dispatcher/filters/command.rst:37 -msgid "`edited_message`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/filters/exception.po b/docs/locale/en/LC_MESSAGES/dispatcher/filters/exception.po deleted file mode 100644 index 75292abb..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/filters/exception.po +++ /dev/null @@ -1,46 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/filters/exception.rst:3 -msgid "Exceptions" -msgstr "" - -#: ../../dispatcher/filters/exception.rst:5 -msgid "This filters can be helpful for handling errors from the text messages." -msgstr "" - -#: aiogram.filters.exception.ExceptionTypeFilter:1 of -msgid "Allows to match exception by type" -msgstr "" - -#: aiogram.filters.exception.ExceptionMessageFilter:1 of -msgid "Allow to match exception by message" -msgstr "" - -#: ../../dispatcher/filters/exception.rst:18 -msgid "Allowed handlers" -msgstr "" - -#: ../../dispatcher/filters/exception.rst:20 -msgid "Allowed update types for this filters:" -msgstr "" - -#: ../../dispatcher/filters/exception.rst:22 -msgid ":code:`error`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/filters/index.po b/docs/locale/en/LC_MESSAGES/dispatcher/filters/index.po deleted file mode 100644 index 5151825e..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/filters/index.po +++ /dev/null @@ -1,178 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 2022. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aiogram \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-18 01:50+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/filters/index.rst:3 -msgid "Filtering events" -msgstr "" - -#: ../../dispatcher/filters/index.rst:5 -msgid "" -"Filters is needed for routing updates to the specific handler. Searching " -"of handler is always stops on first match set of filters are pass." -msgstr "" - -#: ../../dispatcher/filters/index.rst:8 -msgid "*aiogram* has some builtin useful filters." -msgstr "" - -#: ../../dispatcher/filters/index.rst:11 -msgid "Builtin filters" -msgstr "" - -#: ../../dispatcher/filters/index.rst:13 -msgid "Here is list of builtin filters:" -msgstr "" - -#: ../../dispatcher/filters/index.rst:27 -msgid "Writing own filters" -msgstr "" - -#: ../../dispatcher/filters/index.rst:29 -msgid "Filters can be:" -msgstr "" - -#: ../../dispatcher/filters/index.rst:31 -msgid "Asynchronous function (:code:`async def my_filter(*args, **kwargs): pass`)" -msgstr "" - -#: ../../dispatcher/filters/index.rst:32 -msgid "Synchronous function (:code:`def my_filter(*args, **kwargs): pass`)" -msgstr "" - -#: ../../dispatcher/filters/index.rst:33 -msgid "Anonymous function (:code:`lambda event: True`)" -msgstr "" - -#: ../../dispatcher/filters/index.rst:34 -msgid "Any awaitable object" -msgstr "" - -#: ../../dispatcher/filters/index.rst:35 -msgid "Subclass of :class:`aiogram.filters.base.Filter`" -msgstr "" - -#: ../../dispatcher/filters/index.rst:36 -msgid "Instances of :ref:`MagicFilter `" -msgstr "" - -#: ../../dispatcher/filters/index.rst:38 -msgid "" -"and should return bool or dict. If the dictionary is passed as result of " -"filter - resulted data will be propagated to the next filters and handler" -" as keywords arguments." -msgstr "" - -#: ../../dispatcher/filters/index.rst:43 -msgid "Base class for own filters" -msgstr "" - -#: aiogram.filters.base.Filter:1 of -msgid "" -"If you want to register own filters like builtin filters you will need to" -" write subclass of this class with overriding the :code:`__call__` method" -" and adding filter attributes." -msgstr "" - -#: aiogram.filters.base.Filter.__call__:1 of -msgid "This method should be overridden." -msgstr "" - -#: aiogram.filters.base.Filter.__call__:3 of -msgid "Accepts incoming event and should return boolean or dict." -msgstr "" - -#: aiogram.filters.base.Filter.__call__ of -msgid "Returns" -msgstr "" - -#: aiogram.filters.base.Filter.__call__:5 of -msgid ":class:`bool` or :class:`Dict[str, Any]`" -msgstr "" - -#: aiogram.filters.base.Filter.update_handler_flags:1 of -msgid "" -"Also if you want to extend handler flags with using this filter you " -"should implement this method" -msgstr "" - -#: aiogram.filters.base.Filter.update_handler_flags of -msgid "Parameters" -msgstr "" - -#: aiogram.filters.base.Filter.update_handler_flags:3 of -msgid "existing flags, can be updated directly" -msgstr "" - -#: ../../dispatcher/filters/index.rst:51 -msgid "Own filter example" -msgstr "" - -#: ../../dispatcher/filters/index.rst:53 -msgid "For example if you need to make simple text filter:" -msgstr "" - -#: ../../dispatcher/filters/index.rst:60 -msgid "Combining Filters" -msgstr "" - -#: ../../dispatcher/filters/index.rst:62 -msgid "In general, all filters can be combined in two ways" -msgstr "" - -#: ../../dispatcher/filters/index.rst:66 -msgid "Recommended way" -msgstr "" - -#: ../../dispatcher/filters/index.rst:68 -msgid "" -"If you specify multiple filters in a row, it will be checked with an " -"\"and\" condition:" -msgstr "" - -#: ../../dispatcher/filters/index.rst:75 -msgid "" -"Also, if you want to use two alternative ways to run the same handler " -"(\"or\" condition) you can register the handler twice or more times as " -"you like" -msgstr "" - -#: ../../dispatcher/filters/index.rst:84 -msgid "" -"Also sometimes you will need to invert the filter result, for example you" -" have an *IsAdmin* filter and you want to check if the user is not an " -"admin" -msgstr "" - -#: ../../dispatcher/filters/index.rst:93 -msgid "Another possible way" -msgstr "" - -#: ../../dispatcher/filters/index.rst:95 -msgid "" -"An alternative way is to combine using special functions (:func:`and_f`, " -":func:`or_f`, :func:`invert_f` from :code:`aiogram.filters` module):" -msgstr "" - -#~ msgid "" -#~ "Also, if you want to use two " -#~ "alternative ways to run the sage " -#~ "handler (\"or\" condition) you can " -#~ "register the handler twice or more " -#~ "times as you like" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/filters/magic_data.po b/docs/locale/en/LC_MESSAGES/dispatcher/filters/magic_data.po deleted file mode 100644 index 5a39eaf0..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/filters/magic_data.po +++ /dev/null @@ -1,122 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 2022. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aiogram \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-26 23:17+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/filters/magic_data.rst:3 -msgid "MagicData" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:6 -msgid "Usage" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:8 -msgid "" -":code:`MagicData(F.event.from_user.id == F.config.admin_id)` (Note that " -":code:`config` should be passed from middleware)" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:11 -msgid "Explanation" -msgstr "" - -#: aiogram.filters.magic_data.MagicData:1 of -msgid "This filter helps to filter event with contextual data" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:18 -msgid "Can be imported:" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:20 -msgid ":code:`from aiogram.filters import MagicData`" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:24 -msgid "Allowed handlers" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:26 -msgid "Allowed update types for this filter:" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:28 -msgid ":code:`message`" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:29 -msgid ":code:`edited_message`" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:30 -msgid ":code:`channel_post`" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:31 -msgid ":code:`edited_channel_post`" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:32 -msgid ":code:`inline_query`" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:33 -msgid ":code:`chosen_inline_result`" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:34 -msgid ":code:`callback_query`" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:35 -msgid ":code:`shipping_query`" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:36 -msgid ":code:`pre_checkout_query`" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:37 -msgid ":code:`poll`" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:38 -msgid ":code:`poll_answer`" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:39 -msgid ":code:`my_chat_member`" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:40 -msgid ":code:`chat_member`" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:41 -msgid ":code:`chat_join_request`" -msgstr "" - -#: ../../dispatcher/filters/magic_data.rst:42 -msgid ":code:`error`" -msgstr "" - -#~ msgid "" -#~ "Or used from filters factory by " -#~ "passing corresponding arguments to handler " -#~ "registration line" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/filters/magic_filters.po b/docs/locale/en/LC_MESSAGES/dispatcher/filters/magic_filters.po deleted file mode 100644 index 6f7bd698..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/filters/magic_filters.po +++ /dev/null @@ -1,175 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/filters/magic_filters.rst:5 -msgid "Magic filters" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:9 -msgid "This page still in progress. Has many incorrectly worded sentences." -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:11 -msgid "Is external package maintained by *aiogram* core team." -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:13 -msgid "" -"By default installs with *aiogram* and also is available on `PyPi - " -"magic-filter `_. That's mean you " -"can install it and use with any other libraries and in own projects " -"without depending *aiogram* installed." -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:17 -msgid "Usage" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:19 -msgid "" -"The **magic_filter** package implements class shortly named " -":class:`magic_filter.F` that's mean :code:`F` can be imported from " -":code:`aiogram` or :code:`magic_filter`. :class:`F` is alias for " -":class:`MagicFilter`." -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:23 -msgid "" -"Note that *aiogram* has an small extension over magic-filter and if you " -"want to use this extension you should import magic from *aiogram* instead" -" of *magic_filter* package" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:25 -msgid "" -"The :class:`MagicFilter` object is callable, supports :ref:`some actions " -"` and memorize the attributes chain and " -"the action which should be checked on demand." -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:28 -msgid "" -"So that's mean you can chain attribute getters, describe simple data " -"validations and then call the resulted object passing single object as " -"argument, for example make attributes chain :code:`F.foo.bar.baz` then " -"add action ':code:`F.foo.bar.baz == 'spam'` and then call the resulted " -"object - :code:`(F.foo.bar.baz == 'spam').resolve(obj)`" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:36 -msgid "Possible actions" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:38 -msgid "" -"Magic filter object supports some of basic logical operations over object" -" attributes" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:41 -msgid "Exists or not None" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:43 -msgid "Default actions." -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:50 -msgid "Equals" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:58 -msgid "Is one of" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:60 -msgid "" -"Can be used as method named :code:`in_` or as matmul operator :code:`@` " -"with any iterable" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:68 -msgid "Contains" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:75 -msgid "String startswith/endswith" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:77 -msgid "Can be applied only for text attributes" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:85 -msgid "Regexp" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:92 -msgid "Custom function" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:94 -msgid "Accepts any callable. Callback will be called when filter checks result" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:101 -msgid "Inverting result" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:103 -msgid "" -"Any of available operation can be inverted by bitwise inversion - " -":code:`~`" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:111 -msgid "Combining" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:113 -msgid "" -"All operations can be combined via bitwise and/or operators - " -":code:`&`/:code:`|`" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:123 -msgid "Attribute modifiers - string manipulations" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:125 -msgid "Make text upper- or lower-case" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:127 -msgid "Can be used only with string attributes." -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:137 -msgid "Get filter result as handler argument" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:139 -msgid "" -"This part is not available in *magic-filter* directly but can be used " -"with *aiogram*" -msgstr "" - -#: ../../dispatcher/filters/magic_filters.rst:152 -msgid "Usage in *aiogram*" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/filters/text.po b/docs/locale/en/LC_MESSAGES/dispatcher/filters/text.po deleted file mode 100644 index f267c57f..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/filters/text.po +++ /dev/null @@ -1,130 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 2022. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aiogram \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-25 22:10+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/filters/text.rst:3 -msgid "Text" -msgstr "" - -#: aiogram.filters.text.Text:1 of -msgid "" -"Is useful for filtering text :class:`aiogram.types.message.Message`, any " -":class:`aiogram.types.callback_query.CallbackQuery` with `data`, " -":class:`aiogram.types.inline_query.InlineQuery` or " -":class:`aiogram.types.poll.Poll` question." -msgstr "" - -#: aiogram.filters.text.Text:7 of -msgid "" -"Only one of `text`, `contains`, `startswith` or `endswith` argument can " -"be used at once. Any of that arguments can be string, list, set or tuple " -"of strings." -msgstr "" - -#: aiogram.filters.text.Text:12 of -msgid "" -"use :ref:`magic-filter `. For example do :pycode:`F.text " -"== \"text\"` instead" -msgstr "" - -#: ../../dispatcher/filters/text.rst:10 -msgid "Can be imported:" -msgstr "" - -#: ../../dispatcher/filters/text.rst:12 -msgid ":code:`from aiogram.filters.text import Text`" -msgstr "" - -#: ../../dispatcher/filters/text.rst:13 -msgid ":code:`from aiogram.filters import Text`" -msgstr "" - -#: ../../dispatcher/filters/text.rst:16 -msgid "Usage" -msgstr "" - -#: ../../dispatcher/filters/text.rst:18 -msgid "" -"Text equals with the specified value: :code:`Text(text=\"text\") # value" -" == 'text'`" -msgstr "" - -#: ../../dispatcher/filters/text.rst:19 -msgid "" -"Text starts with the specified value: :code:`Text(startswith=\"text\") #" -" value.startswith('text')`" -msgstr "" - -#: ../../dispatcher/filters/text.rst:20 -msgid "" -"Text ends with the specified value: :code:`Text(endswith=\"text\") # " -"value.endswith('text')`" -msgstr "" - -#: ../../dispatcher/filters/text.rst:21 -msgid "" -"Text contains the specified value: :code:`Text(contains=\"text\") # " -"value in 'text'`" -msgstr "" - -#: ../../dispatcher/filters/text.rst:22 -msgid "" -"Any of previous listed filters can be list, set or tuple of strings " -"that's mean any of listed value should be " -"equals/startswith/endswith/contains: :code:`Text(text=[\"text\", " -"\"spam\"])`" -msgstr "" - -#: ../../dispatcher/filters/text.rst:23 -msgid "" -"Ignore case can be combined with any previous listed filter: " -":code:`Text(text=\"Text\", ignore_case=True) # value.lower() == " -"'text'.lower()`" -msgstr "" - -#: ../../dispatcher/filters/text.rst:26 -msgid "Allowed handlers" -msgstr "" - -#: ../../dispatcher/filters/text.rst:28 -msgid "Allowed update types for this filter:" -msgstr "" - -#: ../../dispatcher/filters/text.rst:30 -msgid ":code:`message`" -msgstr "" - -#: ../../dispatcher/filters/text.rst:31 -msgid ":code:`edited_message`" -msgstr "" - -#: ../../dispatcher/filters/text.rst:32 -msgid ":code:`channel_post`" -msgstr "" - -#: ../../dispatcher/filters/text.rst:33 -msgid ":code:`edited_channel_post`" -msgstr "" - -#: ../../dispatcher/filters/text.rst:34 -msgid ":code:`inline_query`" -msgstr "" - -#: ../../dispatcher/filters/text.rst:35 -msgid ":code:`callback_query`" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/finite_state_machine/index.po b/docs/locale/en/LC_MESSAGES/dispatcher/finite_state_machine/index.po deleted file mode 100644 index 0d9353d2..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/finite_state_machine/index.po +++ /dev/null @@ -1,130 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/finite_state_machine/index.rst:3 -msgid "Finite State Machine" -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:5 -msgid "" -"A finite-state machine (FSM) or finite-state automaton (FSA, plural: " -"automata), finite automaton, or simply a state machine, is a mathematical" -" model of computation." -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:8 -msgid "" -"It is an abstract machine that can be in exactly one of a finite number " -"of states at any given time. The FSM can change from one state to another" -" in response to some inputs; the change from one state to another is " -"called a transition." -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:12 -msgid "" -"An FSM is defined by a list of its states, its initial state, and the " -"inputs that trigger each transition." -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:19 -msgid "Source: `WikiPedia `_" -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:22 -msgid "Usage example" -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:24 -msgid "" -"Not all functionality of the bot can be implemented as single handler, " -"for example you will need to collect some data from user in separated " -"steps you will need to use FSM." -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:-1 -msgid "FSM Example" -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:31 -msgid "Let's see how to do that step-by-step" -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:34 -msgid "Step by step" -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:36 -msgid "" -"Before handle any states you will need to specify what kind of states you" -" want to handle" -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:44 -msgid "And then write handler for each state separately from the start of dialog" -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:46 -msgid "" -"Here is dialog can be started only via command :code:`/start`, so lets " -"handle it and make transition user to state :code:`Form.name`" -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:54 -msgid "" -"After that you will need to save some data to the storage and make " -"transition to next step." -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:62 -msgid "" -"At the next steps user can make different answers, it can be `yes`, `no` " -"or any other" -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:64 -msgid "Handle :code:`yes` and soon we need to handle :code:`Form.language` state" -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:72 -msgid "Handle :code:`no`" -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:80 -msgid "And handle any other answers" -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:88 -msgid "" -"All possible cases of `like_bots` step was covered, let's implement " -"finally step" -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:96 -msgid "" -"And now you have covered all steps from the image, but you can make " -"possibility to cancel conversation, lets do that via command or text" -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:105 -msgid "Complete example" -msgstr "" - -#: ../../dispatcher/finite_state_machine/index.rst:112 -msgid "Read more" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/finite_state_machine/storages.po b/docs/locale/en/LC_MESSAGES/dispatcher/finite_state_machine/storages.po deleted file mode 100644 index f8669452..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/finite_state_machine/storages.po +++ /dev/null @@ -1,225 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/finite_state_machine/storages.rst:3 -msgid "Storages" -msgstr "" - -#: ../../dispatcher/finite_state_machine/storages.rst:6 -msgid "Storages out of the box" -msgstr "" - -#: ../../dispatcher/finite_state_machine/storages.rst:9 -msgid "MemoryStorage" -msgstr "" - -#: aiogram.fsm.storage.memory.MemoryStorage:1 of -msgid "" -"Default FSM storage, stores all data in :class:`dict` and loss everything" -" on shutdown" -msgstr "" - -#: aiogram.fsm.storage.memory.MemoryStorage:5 of -msgid "" -"Is not recommended using in production in due to you will lose all data " -"when your bot restarts" -msgstr "" - -#: ../../dispatcher/finite_state_machine/storages.rst:16 -msgid "RedisStorage" -msgstr "" - -#: aiogram.fsm.storage.redis.RedisStorage:1 of -msgid "" -"Redis storage required :code:`redis` package installed (:code:`pip " -"install redis`)" -msgstr "" - -#: aiogram.fsm.storage.base.BaseStorage.get_data -#: aiogram.fsm.storage.base.BaseStorage.get_state -#: aiogram.fsm.storage.base.BaseStorage.set_data -#: aiogram.fsm.storage.base.BaseStorage.set_state -#: aiogram.fsm.storage.base.BaseStorage.update_data -#: aiogram.fsm.storage.redis.DefaultKeyBuilder.build -#: aiogram.fsm.storage.redis.KeyBuilder.build -#: aiogram.fsm.storage.redis.RedisStorage.__init__ -#: aiogram.fsm.storage.redis.RedisStorage.from_url of -msgid "Parameters" -msgstr "" - -#: aiogram.fsm.storage.redis.RedisStorage.__init__:1 of -msgid "Instance of Redis connection" -msgstr "" - -#: aiogram.fsm.storage.redis.RedisStorage.__init__:2 of -msgid "builder that helps to convert contextual key to string" -msgstr "" - -#: aiogram.fsm.storage.redis.RedisStorage.__init__:3 of -msgid "TTL for state records" -msgstr "" - -#: aiogram.fsm.storage.redis.RedisStorage.__init__:4 of -msgid "TTL for data records" -msgstr "" - -#: aiogram.fsm.storage.redis.RedisStorage.from_url:1 of -msgid "" -"Create an instance of :class:`RedisStorage` with specifying the " -"connection string" -msgstr "" - -#: aiogram.fsm.storage.redis.RedisStorage.from_url:3 of -msgid "for example :code:`redis://user:password@host:port/db`" -msgstr "" - -#: aiogram.fsm.storage.redis.RedisStorage.from_url:4 of -msgid "see :code:`redis` docs" -msgstr "" - -#: aiogram.fsm.storage.redis.RedisStorage.from_url:5 of -msgid "arguments to be passed to :class:`RedisStorage`" -msgstr "" - -#: aiogram.fsm.storage.base.BaseStorage.get_data -#: aiogram.fsm.storage.base.BaseStorage.get_state -#: aiogram.fsm.storage.base.BaseStorage.update_data -#: aiogram.fsm.storage.redis.DefaultKeyBuilder.build -#: aiogram.fsm.storage.redis.KeyBuilder.build -#: aiogram.fsm.storage.redis.RedisStorage.from_url of -msgid "Returns" -msgstr "" - -#: aiogram.fsm.storage.redis.RedisStorage.from_url:6 of -msgid "an instance of :class:`RedisStorage`" -msgstr "" - -#: ../../dispatcher/finite_state_machine/storages.rst:22 -msgid "Keys inside storage can be customized via key builders:" -msgstr "" - -#: aiogram.fsm.storage.redis.KeyBuilder:1 of -msgid "Base class for Redis key builder" -msgstr "" - -#: aiogram.fsm.storage.redis.DefaultKeyBuilder.build:1 -#: aiogram.fsm.storage.redis.KeyBuilder.build:1 of -msgid "This method should be implemented in subclasses" -msgstr "" - -#: aiogram.fsm.storage.redis.DefaultKeyBuilder.build:3 -#: aiogram.fsm.storage.redis.KeyBuilder.build:3 of -msgid "contextual key" -msgstr "" - -#: aiogram.fsm.storage.redis.DefaultKeyBuilder.build:4 -#: aiogram.fsm.storage.redis.KeyBuilder.build:4 of -msgid "part of the record" -msgstr "" - -#: aiogram.fsm.storage.redis.DefaultKeyBuilder.build:5 -#: aiogram.fsm.storage.redis.KeyBuilder.build:5 of -msgid "key to be used in Redis queries" -msgstr "" - -#: aiogram.fsm.storage.redis.DefaultKeyBuilder:1 of -msgid "Simple Redis key builder with default prefix." -msgstr "" - -#: aiogram.fsm.storage.redis.DefaultKeyBuilder:3 of -msgid "" -"Generates a colon-joined string with prefix, chat_id, user_id, optional " -"bot_id and optional destiny." -msgstr "" - -#: ../../dispatcher/finite_state_machine/storages.rst:34 -msgid "Writing own storages" -msgstr "" - -#: aiogram.fsm.storage.base.BaseStorage:1 of -msgid "Base class for all FSM storages" -msgstr "" - -#: aiogram.fsm.storage.base.BaseStorage.set_state:1 of -msgid "Set state for specified key" -msgstr "" - -#: aiogram.fsm.storage.base.BaseStorage.get_data:3 -#: aiogram.fsm.storage.base.BaseStorage.get_state:3 -#: aiogram.fsm.storage.base.BaseStorage.set_data:3 -#: aiogram.fsm.storage.base.BaseStorage.set_state:3 -#: aiogram.fsm.storage.base.BaseStorage.update_data:3 of -msgid "storage key" -msgstr "" - -#: aiogram.fsm.storage.base.BaseStorage.set_state:4 of -msgid "new state" -msgstr "" - -#: aiogram.fsm.storage.base.BaseStorage.get_state:1 of -msgid "Get key state" -msgstr "" - -#: aiogram.fsm.storage.base.BaseStorage.get_state:4 of -msgid "current state" -msgstr "" - -#: aiogram.fsm.storage.base.BaseStorage.set_data:1 of -msgid "Write data (replace)" -msgstr "" - -#: aiogram.fsm.storage.base.BaseStorage.set_data:4 -#: aiogram.fsm.storage.base.BaseStorage.update_data:5 of -msgid "new data" -msgstr "" - -#: aiogram.fsm.storage.base.BaseStorage.get_data:1 of -msgid "Get current data for key" -msgstr "" - -#: aiogram.fsm.storage.base.BaseStorage.get_data:4 of -msgid "current data" -msgstr "" - -#: aiogram.fsm.storage.base.BaseStorage.update_data:1 of -msgid "Update date in the storage for key (like dict.update)" -msgstr "" - -#: aiogram.fsm.storage.base.BaseStorage.update_data:4 of -msgid "partial data" -msgstr "" - -#: aiogram.fsm.storage.base.BaseStorage.close:1 of -msgid "Close storage (database connection, file or etc.)" -msgstr "" - -#~ msgid "" -#~ "Redis storage required :code:`aioredis` " -#~ "package installed (:code:`pip install " -#~ "aioredis`)" -#~ msgstr "" - -#~ msgid "see :code:`aioredis` docs" -#~ msgstr "" - -#~ msgid "Custom arguments for Redis lock" -#~ msgstr "" - -#~ msgid "instance of the current bot" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/flags.po b/docs/locale/en/LC_MESSAGES/dispatcher/flags.po deleted file mode 100644 index 0ad40047..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/flags.po +++ /dev/null @@ -1,129 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 2022. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aiogram \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-07 23:33+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/flags.rst:3 -msgid "Flags" -msgstr "" - -#: ../../dispatcher/flags.rst:5 -msgid "" -"Flags is a markers for handlers that can be used in `middlewares <#use-" -"in-middlewares>`_ or special `utilities <#use-in-utilities>`_ to make " -"classification of the handlers." -msgstr "" - -#: ../../dispatcher/flags.rst:8 -msgid "" -"Flags can be added to the handler via `decorators <#via-decorators>`_, " -"`handlers registration <#via-handler-registration-method>`_ or `filters " -"`_." -msgstr "" - -#: ../../dispatcher/flags.rst:13 -msgid "Via decorators" -msgstr "" - -#: ../../dispatcher/flags.rst:15 -msgid "For example mark handler with `chat_action` flag" -msgstr "" - -#: ../../dispatcher/flags.rst:24 -msgid "Or just for rate-limit or something else" -msgstr "" - -#: ../../dispatcher/flags.rst:34 -msgid "Via handler registration method" -msgstr "" - -#: ../../dispatcher/flags.rst:41 -msgid "Via filters" -msgstr "" - -#: ../../dispatcher/flags.rst:55 -msgid "Use in middlewares" -msgstr "" - -#: aiogram.dispatcher.flags.check_flags:1 of -msgid "Check flags via magic filter" -msgstr "" - -#: aiogram.dispatcher.flags.check_flags aiogram.dispatcher.flags.extract_flags -#: aiogram.dispatcher.flags.get_flag of -msgid "Parameters" -msgstr "" - -#: aiogram.dispatcher.flags.check_flags:3 -#: aiogram.dispatcher.flags.extract_flags:3 aiogram.dispatcher.flags.get_flag:3 -#: of -msgid "handler object or data" -msgstr "" - -#: aiogram.dispatcher.flags.check_flags:4 of -msgid "instance of the magic" -msgstr "" - -#: aiogram.dispatcher.flags.check_flags aiogram.dispatcher.flags.extract_flags -#: aiogram.dispatcher.flags.get_flag of -msgid "Returns" -msgstr "" - -#: aiogram.dispatcher.flags.check_flags:5 of -msgid "the result of magic filter check" -msgstr "" - -#: aiogram.dispatcher.flags.extract_flags:1 of -msgid "Extract flags from handler or middleware context data" -msgstr "" - -#: aiogram.dispatcher.flags.extract_flags:4 of -msgid "dictionary with all handler flags" -msgstr "" - -#: aiogram.dispatcher.flags.get_flag:1 of -msgid "Get flag by name" -msgstr "" - -#: aiogram.dispatcher.flags.get_flag:4 of -msgid "name of the flag" -msgstr "" - -#: aiogram.dispatcher.flags.get_flag:5 of -msgid "default value (None)" -msgstr "" - -#: aiogram.dispatcher.flags.get_flag:6 of -msgid "value of the flag or default" -msgstr "" - -#: ../../dispatcher/flags.rst:62 -msgid "Example in middlewares" -msgstr "" - -#: ../../dispatcher/flags.rst:75 -msgid "Use in utilities" -msgstr "" - -#: ../../dispatcher/flags.rst:77 -msgid "" -"For example you can collect all registered commands with handler " -"description and then it can be used for generating commands help" -msgstr "" - -#~ msgid "FlagDecorator(flag: aiogram.dispatcher.flags.Flag)" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/index.po b/docs/locale/en/LC_MESSAGES/dispatcher/index.po deleted file mode 100644 index 1f0a0e02..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/index.po +++ /dev/null @@ -1,76 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/index.rst:3 -msgid "Handling events" -msgstr "" - -#: ../../dispatcher/index.rst:5 -msgid "" -"*aiogram* includes Dispatcher mechanism. Dispatcher is needed for " -"handling incoming updates from Telegram." -msgstr "" - -#: ../../dispatcher/index.rst:8 -msgid "With dispatcher you can do:" -msgstr "" - -#: ../../dispatcher/index.rst:10 -msgid "Handle incoming updates;" -msgstr "" - -#: ../../dispatcher/index.rst:11 -msgid "Filter incoming events before it will be processed by specific handler;" -msgstr "" - -#: ../../dispatcher/index.rst:12 -msgid "Modify event and related data in middlewares;" -msgstr "" - -#: ../../dispatcher/index.rst:13 -msgid "" -"Separate bot functionality between different handlers, modules and " -"packages" -msgstr "" - -#: ../../dispatcher/index.rst:15 -msgid "" -"Dispatcher is also separated into two entities - Router and Dispatcher. " -"Dispatcher is subclass of router and should be always is root router." -msgstr "" - -#: ../../dispatcher/index.rst:18 -msgid "Telegram supports two ways of receiving updates:" -msgstr "" - -#: ../../dispatcher/index.rst:20 -msgid "" -":ref:`Webhook ` - you should configure your web server to " -"receive updates from Telegram;" -msgstr "" - -#: ../../dispatcher/index.rst:21 -msgid "" -":ref:`Long polling ` - you should request updates from " -"Telegram." -msgstr "" - -#: ../../dispatcher/index.rst:23 -msgid "So, you can use both of them with *aiogram*." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/long_polling.po b/docs/locale/en/LC_MESSAGES/dispatcher/long_polling.po deleted file mode 100644 index d5581be5..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/long_polling.po +++ /dev/null @@ -1,62 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/long_polling.rst:5 -msgid "Long-polling" -msgstr "" - -#: ../../dispatcher/long_polling.rst:7 -msgid "" -"Long-polling is a technology that allows a Telegram server to send " -"updates in case when you don't have dedicated IP address or port to " -"receive webhooks for example on a developer machine." -msgstr "" - -#: ../../dispatcher/long_polling.rst:11 -msgid "" -"To use long-polling mode you should use " -":meth:`aiogram.dispatcher.dispatcher.Dispatcher.start_polling` or " -":meth:`aiogram.dispatcher.dispatcher.Dispatcher.run_polling` methods." -msgstr "" - -#: ../../dispatcher/long_polling.rst:16 -msgid "" -"You can use polling from only one polling process per single Bot token, " -"in other case Telegram server will return an error." -msgstr "" - -#: ../../dispatcher/long_polling.rst:21 -msgid "" -"If you will need to scale your bot, you should use webhooks instead of " -"long-polling." -msgstr "" - -#: ../../dispatcher/long_polling.rst:25 -msgid "If you will use multibot mode, you should use webhook mode for all bots." -msgstr "" - -#: ../../dispatcher/long_polling.rst:28 -msgid "Example" -msgstr "" - -#: ../../dispatcher/long_polling.rst:30 -msgid "" -"This example will show you how to create simple echo bot based on long-" -"polling." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/middlewares.po b/docs/locale/en/LC_MESSAGES/dispatcher/middlewares.po deleted file mode 100644 index e562e992..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/middlewares.po +++ /dev/null @@ -1,181 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/middlewares.rst:3 -msgid "Middlewares" -msgstr "" - -#: ../../dispatcher/middlewares.rst:5 -msgid "" -"**aiogram** provides powerful mechanism for customizing event handlers " -"via middlewares." -msgstr "" - -#: ../../dispatcher/middlewares.rst:7 -msgid "" -"Middlewares in bot framework seems like Middlewares mechanism in web-" -"frameworks like `aiohttp " -"`_, `fastapi " -"`_, `Django " -"`_ or " -"etc.) with small difference - here is implemented two layers of " -"middlewares (before and after filters)." -msgstr "" - -#: ../../dispatcher/middlewares.rst:15 -msgid "" -"Middleware is function that triggered on every event received from " -"Telegram Bot API in many points on processing pipeline." -msgstr "" - -#: ../../dispatcher/middlewares.rst:19 -msgid "Base theory" -msgstr "" - -#: ../../dispatcher/middlewares.rst:21 -msgid "As many books and other literature in internet says:" -msgstr "" - -#: ../../dispatcher/middlewares.rst:23 -msgid "" -"Middleware is reusable software that leverages patterns and frameworks to" -" bridge the gap between the functional requirements of applications and " -"the underlying operating systems, network protocol stacks, and databases." -msgstr "" - -#: ../../dispatcher/middlewares.rst:27 -msgid "" -"Middleware can modify, extend or reject processing event in many places " -"of pipeline." -msgstr "" - -#: ../../dispatcher/middlewares.rst:30 -msgid "Basics" -msgstr "" - -#: ../../dispatcher/middlewares.rst:32 -msgid "" -"Middleware instance can be applied for every type of Telegram Event " -"(Update, Message, etc.) in two places" -msgstr "" - -#: ../../dispatcher/middlewares.rst:34 -msgid "" -"Outer scope - before processing filters " -"(:code:`..outer_middleware(...)`)" -msgstr "" - -#: ../../dispatcher/middlewares.rst:35 -msgid "" -"Inner scope - after processing filters but before handler " -"(:code:`..middleware(...)`)" -msgstr "" - -#: ../../dispatcher/middlewares.rst:-1 -msgid "Middleware basics" -msgstr "" - -#: ../../dispatcher/middlewares.rst:42 -msgid "" -"Middleware should be subclass of :code:`BaseMiddleware` (:code:`from " -"aiogram import BaseMiddleware`) or any async callable" -msgstr "" - -#: ../../dispatcher/middlewares.rst:45 -msgid "Arguments specification" -msgstr "" - -#: aiogram.dispatcher.middlewares.base.BaseMiddleware:1 of -msgid "Bases: :py:class:`~abc.ABC`" -msgstr "" - -#: aiogram.dispatcher.middlewares.base.BaseMiddleware:1 of -msgid "Generic middleware class" -msgstr "" - -#: aiogram.dispatcher.middlewares.base.BaseMiddleware.__call__:1 of -msgid "Execute middleware" -msgstr "" - -#: aiogram.dispatcher.middlewares.base.BaseMiddleware.__call__ of -msgid "Parameters" -msgstr "" - -#: aiogram.dispatcher.middlewares.base.BaseMiddleware.__call__:3 of -msgid "Wrapped handler in middlewares chain" -msgstr "" - -#: aiogram.dispatcher.middlewares.base.BaseMiddleware.__call__:4 of -msgid "Incoming event (Subclass of :class:`aiogram.types.base.TelegramObject`)" -msgstr "" - -#: aiogram.dispatcher.middlewares.base.BaseMiddleware.__call__:5 of -msgid "Contextual data. Will be mapped to handler arguments" -msgstr "" - -#: aiogram.dispatcher.middlewares.base.BaseMiddleware.__call__ of -msgid "Returns" -msgstr "" - -#: aiogram.dispatcher.middlewares.base.BaseMiddleware.__call__:6 of -msgid ":class:`Any`" -msgstr "" - -#: ../../dispatcher/middlewares.rst:56 -msgid "Examples" -msgstr "" - -#: ../../dispatcher/middlewares.rst:60 -msgid "" -"Middleware should always call :code:`await handler(event, data)` to " -"propagate event for next middleware/handler" -msgstr "" - -#: ../../dispatcher/middlewares.rst:64 -msgid "Class-based" -msgstr "" - -#: ../../dispatcher/middlewares.rst:85 -msgid "and then" -msgstr "" - -#: ../../dispatcher/middlewares.rst:94 -msgid "Function-based" -msgstr "" - -#: ../../dispatcher/middlewares.rst:109 -msgid "Facts" -msgstr "" - -#: ../../dispatcher/middlewares.rst:111 -msgid "Middlewares from outer scope will be called on every incoming event" -msgstr "" - -#: ../../dispatcher/middlewares.rst:112 -msgid "Middlewares from inner scope will be called only when filters pass" -msgstr "" - -#: ../../dispatcher/middlewares.rst:113 -msgid "" -"Inner middlewares is always calls for " -":class:`aiogram.types.update.Update` event type in due to all incoming " -"updates going to specific event type handler through built in update " -"handler" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/observer.po b/docs/locale/en/LC_MESSAGES/dispatcher/observer.po deleted file mode 100644 index b8a61e72..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/observer.po +++ /dev/null @@ -1,109 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 2022. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aiogram \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-19 22:52+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/observer.rst:3 -msgid "Observer" -msgstr "" - -#: ../../dispatcher/observer.rst:5 -msgid "" -"Observer is used for filtering and handling different events. That is " -"part of internal API with some public methods and is recommended to don't" -" use methods is not listed here." -msgstr "" - -#: ../../dispatcher/observer.rst:7 -msgid "In `aiogram` framework is available two variants of observer:" -msgstr "" - -#: ../../dispatcher/observer.rst:9 -msgid "`EventObserver <#eventobserver>`__" -msgstr "" - -#: ../../dispatcher/observer.rst:10 -msgid "`TelegramEventObserver <#telegrameventobserver>`__" -msgstr "" - -#: ../../dispatcher/observer.rst:14 -msgid "EventObserver" -msgstr "" - -#: aiogram.dispatcher.event.event.EventObserver:1 of -msgid "Simple events observer" -msgstr "" - -#: aiogram.dispatcher.event.event.EventObserver:3 of -msgid "" -"Is used for managing events is not related with Telegram (For example " -"startup/shutdown processes)" -msgstr "" - -#: aiogram.dispatcher.event.event.EventObserver:5 of -msgid "Handlers can be registered via decorator or method" -msgstr "" - -#: aiogram.dispatcher.event.event.EventObserver.register:1 of -msgid "Register callback with filters" -msgstr "" - -#: aiogram.dispatcher.event.event.EventObserver.trigger:1 of -msgid "" -"Propagate event to handlers. Handler will be called when all its filters " -"is pass." -msgstr "" - -#: aiogram.dispatcher.event.event.EventObserver.__call__:1 -#: aiogram.dispatcher.event.telegram.TelegramEventObserver.__call__:1 of -msgid "Decorator for registering event handlers" -msgstr "" - -#: ../../dispatcher/observer.rst:22 -msgid "TelegramEventObserver" -msgstr "" - -#: aiogram.dispatcher.event.telegram.TelegramEventObserver:1 of -msgid "Event observer for Telegram events" -msgstr "" - -#: aiogram.dispatcher.event.telegram.TelegramEventObserver:3 of -msgid "" -"Here you can register handler with filter. This observer will stop event " -"propagation when first handler is pass." -msgstr "" - -#: aiogram.dispatcher.event.telegram.TelegramEventObserver.register:1 of -msgid "Register event handler" -msgstr "" - -#: aiogram.dispatcher.event.telegram.TelegramEventObserver.trigger:1 of -msgid "" -"Propagate event to handlers and stops propagation on first match. Handler" -" will be called when all its filters is pass." -msgstr "" - -#~ msgid "" -#~ "Here you can register handler with " -#~ "filters or bounded filters which can " -#~ "be used as keyword arguments instead " -#~ "of writing full references when you " -#~ "register new handlers. This observer " -#~ "will stop event propagation when first" -#~ " handler is pass." -#~ msgstr "" - diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/router.po b/docs/locale/en/LC_MESSAGES/dispatcher/router.po deleted file mode 100644 index 8e88e944..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/router.po +++ /dev/null @@ -1,270 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 2022. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aiogram \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-26 23:17+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/router.rst:5 -msgid "Router" -msgstr "" - -#: ../../dispatcher/router.rst:7 -msgid "Usage:" -msgstr "" - -#: aiogram.dispatcher.router.Router:1 of -msgid "Bases: :py:class:`object`" -msgstr "" - -#: aiogram.dispatcher.router.Router:1 of -msgid "" -"Router can route update, and it nested update types like messages, " -"callback query, polls and all other event types." -msgstr "" - -#: aiogram.dispatcher.router.Router:4 of -msgid "Event handlers can be registered in observer by two ways:" -msgstr "" - -#: aiogram.dispatcher.router.Router:6 of -msgid "" -"By observer method - :obj:`router..register(handler, " -")`" -msgstr "" - -#: aiogram.dispatcher.router.Router:7 of -msgid "By decorator - :obj:`@router.()`" -msgstr "" - -#: aiogram.dispatcher.router.Router.__init__ -#: aiogram.dispatcher.router.Router.include_router -#: aiogram.dispatcher.router.Router.include_routers -#: aiogram.dispatcher.router.Router.resolve_used_update_types of -msgid "Parameters" -msgstr "" - -#: aiogram.dispatcher.router.Router.__init__:1 of -msgid "Optional router name, can be useful for debugging" -msgstr "" - -#: aiogram.dispatcher.router.Router.include_router:1 of -msgid "Attach another router." -msgstr "" - -#: aiogram.dispatcher.router.Router.include_router -#: aiogram.dispatcher.router.Router.include_routers -#: aiogram.dispatcher.router.Router.resolve_used_update_types of -msgid "Returns" -msgstr "" - -#: aiogram.dispatcher.router.Router.include_routers:1 of -msgid "Attach multiple routers." -msgstr "" - -#: aiogram.dispatcher.router.Router.resolve_used_update_types:1 of -msgid "Resolve registered event names" -msgstr "" - -#: aiogram.dispatcher.router.Router.resolve_used_update_types:3 of -msgid "Is useful for getting updates only for registered event types." -msgstr "" - -#: aiogram.dispatcher.router.Router.resolve_used_update_types:5 of -msgid "skip specified event names" -msgstr "" - -#: aiogram.dispatcher.router.Router.resolve_used_update_types:6 of -msgid "set of registered names" -msgstr "" - -#: ../../dispatcher/router.rst:29 -msgid "Event observers" -msgstr "" - -#: ../../dispatcher/router.rst:33 -msgid "" -"All handlers always should be asynchronous. The name of the handler " -"function is not important. The event argument name is also not important " -"but it is recommended to not overlap the name with contextual data in due" -" to function can not accept two arguments with the same name." -msgstr "" - -#: ../../dispatcher/router.rst:36 -msgid "" -"Here is the list of available observers and examples of how to register " -"handlers" -msgstr "" - -#: ../../dispatcher/router.rst:38 -msgid "" -"In these examples only decorator-style registering handlers are used, but" -" if you don't like @decorators just use :obj:`.register(...)`" -" method instead." -msgstr "" - -#: ../../dispatcher/router.rst:41 -msgid "Message" -msgstr "" - -#: ../../dispatcher/router.rst:46 -msgid "Be attentive with filtering this event" -msgstr "" - -#: ../../dispatcher/router.rst:48 -msgid "" -"You should expect that this event can be with different sets of " -"attributes in different cases" -msgstr "" - -#: ../../dispatcher/router.rst:50 -msgid "" -"(For example text, sticker and document are always of different content " -"types of message)" -msgstr "" - -#: ../../dispatcher/router.rst:52 -msgid "" -"Recommended way to check field availability before usage, for example via" -" :ref:`magic filter `: :code:`F.text` to handle text, " -":code:`F.sticker` to handle stickers only and etc." -msgstr "" - -#: ../../dispatcher/router.rst:63 -msgid "Edited message" -msgstr "" - -#: ../../dispatcher/router.rst:71 -msgid "Channel post" -msgstr "" - -#: ../../dispatcher/router.rst:79 -msgid "Edited channel post" -msgstr "" - -#: ../../dispatcher/router.rst:88 -msgid "Inline query" -msgstr "" - -#: ../../dispatcher/router.rst:96 -msgid "Chosen inline query" -msgstr "" - -#: ../../dispatcher/router.rst:104 -msgid "Callback query" -msgstr "" - -#: ../../dispatcher/router.rst:112 -msgid "Shipping query" -msgstr "" - -#: ../../dispatcher/router.rst:120 -msgid "Pre checkout query" -msgstr "" - -#: ../../dispatcher/router.rst:128 -msgid "Poll" -msgstr "" - -#: ../../dispatcher/router.rst:136 -msgid "Poll answer" -msgstr "" - -#: ../../dispatcher/router.rst:144 -msgid "Errors" -msgstr "" - -#: ../../dispatcher/router.rst:151 -msgid "" -"Is useful for handling errors from other handlers, error event described " -":ref:`here `" -msgstr "" - -#: ../../dispatcher/router.rst:158 -msgid "Nested routers" -msgstr "" - -#: ../../dispatcher/router.rst:163 -msgid "" -"Routers by the way can be nested to an another routers with some " -"limitations:" -msgstr "" - -#: ../../dispatcher/router.rst:163 -msgid "" -"1. Router **CAN NOT** include itself 1. Routers **CAN NOT** be used for " -"circular including (router 1 include router 2, router 2 include router 3," -" router 3 include router 1)" -msgstr "" - -#: ../../dispatcher/router.rst:167 -msgid "Example:" -msgstr "" - -#: ../../dispatcher/router.rst:169 -msgid "module_1.py" -msgstr "" - -#: ../../dispatcher/router.rst:179 -msgid "module_2.py" -msgstr "" - -#: ../../dispatcher/router.rst:191 -msgid "Update" -msgstr "" - -#: ../../dispatcher/router.rst:200 -msgid "The only root Router (Dispatcher) can handle this type of event." -msgstr "" - -#: ../../dispatcher/router.rst:204 -msgid "" -"Dispatcher already has default handler for this event type, so you can " -"use it for handling all updates that are not handled by any other " -"handlers." -msgstr "" - -#: ../../dispatcher/router.rst:207 -msgid "How it works?" -msgstr "" - -#: ../../dispatcher/router.rst:209 -msgid "" -"For example, dispatcher has 2 routers, the last router also has one " -"nested router:" -msgstr "" - -#: ../../dispatcher/router.rst:-1 -msgid "Nested routers example" -msgstr "" - -#: ../../dispatcher/router.rst:214 -msgid "In this case update propagation flow will have form:" -msgstr "" - -#~ msgid "" -#~ "Can be attached directly or by " -#~ "import string in format " -#~ "\":\"" -#~ msgstr "" - -#~ msgid "" -#~ "By default Router already has an " -#~ "update handler which route all event " -#~ "types to another observers." -#~ msgstr "" - -#~ msgid "Is useful for handling errors from other handlers" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/dispatcher/webhook.po b/docs/locale/en/LC_MESSAGES/dispatcher/webhook.po deleted file mode 100644 index 6d9f582d..00000000 --- a/docs/locale/en/LC_MESSAGES/dispatcher/webhook.po +++ /dev/null @@ -1,303 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../dispatcher/webhook.rst:5 -msgid "Webhook" -msgstr "" - -#: ../../dispatcher/webhook.rst:7 -msgid "" -"Telegram Bot API supports webhook. If you set webhook for your bot, " -"Telegram will send updates to the specified url. You can use " -":meth:`aiogram.methods.set_webhook.SetWebhook` method to specify a url " -"and receive incoming updates on it." -msgstr "" - -#: ../../dispatcher/webhook.rst:14 -msgid "If you use webhook, you can't use long polling at the same time." -msgstr "" - -#: ../../dispatcher/webhook.rst:16 -msgid "" -"Before start i'll recommend you to read `official Telegram's " -"documentation about webhook `_" -msgstr "" - -#: ../../dispatcher/webhook.rst:18 -msgid "After you read it, you can start to read this section." -msgstr "" - -#: ../../dispatcher/webhook.rst:20 -msgid "" -"Generally to use webhook with aiogram you should use any async web " -"framework. By out of the box aiogram has an aiohttp integration, so " -"we'll use it." -msgstr "" - -#: ../../dispatcher/webhook.rst:25 -msgid "" -"You can use any async web framework you want, but you should write your " -"own integration if you don't use aiohttp." -msgstr "" - -#: ../../dispatcher/webhook.rst:29 -msgid "aiohttp integration" -msgstr "" - -#: ../../dispatcher/webhook.rst:31 -msgid "Out of the box aiogram has aiohttp integration, so you can use it." -msgstr "" - -#: ../../dispatcher/webhook.rst:33 -msgid "" -"Here is available few ways to do it using different implementations of " -"the webhook controller:" -msgstr "" - -#: ../../dispatcher/webhook.rst:35 -msgid "" -":class:`aiogram.webhook.aiohttp_server.BaseRequestHandler` - Abstract " -"class for aiohttp webhook controller" -msgstr "" - -#: ../../dispatcher/webhook.rst:36 -msgid "" -":class:`aiogram.webhook.aiohttp_server.SimpleRequestHandler` - Simple " -"webhook controller, uses single Bot instance" -msgstr "" - -#: ../../dispatcher/webhook.rst:37 -msgid "" -":class:`aiogram.webhook.aiohttp_server.TokenBasedRequestHandler` - Token" -" based webhook controller, uses multiple Bot instances and tokens" -msgstr "" - -#: ../../dispatcher/webhook.rst:39 -msgid "You can use it as is or inherit from it and override some methods." -msgstr "" - -#: aiogram.webhook.aiohttp_server.BaseRequestHandler.__init__:1 of -msgid "" -"Base handler that helps to handle incoming request from aiohttp and " -"propagate it to the Dispatcher" -msgstr "" - -#: aiogram.webhook.aiohttp_server.BaseRequestHandler.__init__ -#: aiogram.webhook.aiohttp_server.BaseRequestHandler.register -#: aiogram.webhook.aiohttp_server.BaseRequestHandler.resolve_bot -#: aiogram.webhook.aiohttp_server.SimpleRequestHandler.__init__ -#: aiogram.webhook.aiohttp_server.SimpleRequestHandler.resolve_bot -#: aiogram.webhook.aiohttp_server.TokenBasedRequestHandler.__init__ -#: aiogram.webhook.aiohttp_server.TokenBasedRequestHandler.register -#: aiogram.webhook.aiohttp_server.TokenBasedRequestHandler.resolve_bot -#: aiogram.webhook.aiohttp_server.ip_filter_middleware of -msgid "Parameters" -msgstr "" - -#: aiogram.webhook.aiohttp_server.BaseRequestHandler.__init__:4 -#: aiogram.webhook.aiohttp_server.SimpleRequestHandler.__init__:3 -#: aiogram.webhook.aiohttp_server.TokenBasedRequestHandler.__init__:9 of -msgid "instance of :class:`aiogram.dispatcher.dispatcher.Dispatcher`" -msgstr "" - -#: aiogram.webhook.aiohttp_server.BaseRequestHandler.__init__:5 of -msgid "" -"immediately responds to the Telegram instead of a waiting end of a " -"handler process" -msgstr "" - -#: aiogram.webhook.aiohttp_server.BaseRequestHandler.register:1 of -msgid "Register route and shutdown callback" -msgstr "" - -#: aiogram.webhook.aiohttp_server.BaseRequestHandler.register:3 -#: aiogram.webhook.aiohttp_server.TokenBasedRequestHandler.register:3 of -msgid "instance of aiohttp Application" -msgstr "" - -#: aiogram.webhook.aiohttp_server.BaseRequestHandler.register:4 -#: aiogram.webhook.aiohttp_server.TokenBasedRequestHandler.register:4 of -msgid "route path" -msgstr "" - -#: aiogram.webhook.aiohttp_server.BaseRequestHandler.resolve_bot:1 -#: aiogram.webhook.aiohttp_server.SimpleRequestHandler.resolve_bot:1 of -msgid "This method should be implemented in subclasses of this class." -msgstr "" - -#: aiogram.webhook.aiohttp_server.BaseRequestHandler.resolve_bot:3 -#: aiogram.webhook.aiohttp_server.SimpleRequestHandler.resolve_bot:3 of -msgid "Resolve Bot instance from request." -msgstr "" - -#: aiogram.webhook.aiohttp_server.BaseRequestHandler.resolve_bot -#: aiogram.webhook.aiohttp_server.SimpleRequestHandler.resolve_bot -#: aiogram.webhook.aiohttp_server.TokenBasedRequestHandler.resolve_bot -#: aiogram.webhook.aiohttp_server.ip_filter_middleware of -msgid "Returns" -msgstr "" - -#: aiogram.webhook.aiohttp_server.BaseRequestHandler.resolve_bot:6 -#: aiogram.webhook.aiohttp_server.SimpleRequestHandler.resolve_bot:6 of -msgid "Bot instance" -msgstr "" - -#: aiogram.webhook.aiohttp_server.SimpleRequestHandler.__init__:1 of -msgid "Handler for single Bot instance" -msgstr "" - -#: aiogram.webhook.aiohttp_server.SimpleRequestHandler.__init__:4 -#: aiogram.webhook.aiohttp_server.TokenBasedRequestHandler.__init__:10 of -msgid "" -"immediately responds to the Telegram instead of a waiting end of handler " -"process" -msgstr "" - -#: aiogram.webhook.aiohttp_server.SimpleRequestHandler.__init__:6 of -msgid "instance of :class:`aiogram.client.bot.Bot`" -msgstr "" - -#: aiogram.webhook.aiohttp_server.SimpleRequestHandler.close:1 of -msgid "Close bot session" -msgstr "" - -#: aiogram.webhook.aiohttp_server.TokenBasedRequestHandler.__init__:1 of -msgid "" -"Handler that supports multiple bots the context will be resolved from " -"path variable 'bot_token'" -msgstr "" - -#: aiogram.webhook.aiohttp_server.TokenBasedRequestHandler.__init__:6 of -msgid "" -"This handler is not recommended in due to token is available in URL and " -"can be logged by reverse proxy server or other middleware." -msgstr "" - -#: aiogram.webhook.aiohttp_server.TokenBasedRequestHandler.__init__:12 of -msgid "kwargs that will be passed to new Bot instance" -msgstr "" - -#: aiogram.webhook.aiohttp_server.TokenBasedRequestHandler.register:1 of -msgid "Validate path, register route and shutdown callback" -msgstr "" - -#: aiogram.webhook.aiohttp_server.TokenBasedRequestHandler.resolve_bot:1 of -msgid "Get bot token from a path and create or get from cache Bot instance" -msgstr "" - -#: ../../dispatcher/webhook.rst:51 -msgid "Security" -msgstr "" - -#: ../../dispatcher/webhook.rst:53 -msgid "" -"Telegram supports two methods to verify incoming requests that they are " -"from Telegram:" -msgstr "" - -#: ../../dispatcher/webhook.rst:56 -msgid "Using a secret token" -msgstr "" - -#: ../../dispatcher/webhook.rst:58 -msgid "" -"When you set webhook, you can specify a secret token and then use it to " -"verify incoming requests." -msgstr "" - -#: ../../dispatcher/webhook.rst:61 -msgid "Using IP filtering" -msgstr "" - -#: ../../dispatcher/webhook.rst:63 -msgid "" -"You can specify a list of IP addresses from which you expect incoming " -"requests, and then use it to verify incoming requests." -msgstr "" - -#: ../../dispatcher/webhook.rst:65 -msgid "" -"It can be acy using firewall rules or nginx configuration or middleware " -"on application level." -msgstr "" - -#: ../../dispatcher/webhook.rst:67 -msgid "" -"So, aiogram has an implementation of the IP filtering middleware for " -"aiohttp." -msgstr "" - -#: ../../dispatcher/webhook.rst:75 -msgid "Examples" -msgstr "" - -#: ../../dispatcher/webhook.rst:78 -msgid "Behind reverse proxy" -msgstr "" - -#: ../../dispatcher/webhook.rst:80 -msgid "" -"In this example we'll use aiohttp as web framework and nginx as reverse " -"proxy." -msgstr "" - -#: ../../dispatcher/webhook.rst:84 -msgid "" -"When you use nginx as reverse proxy, you should set `proxy_pass` to your " -"aiohttp server address." -msgstr "" - -#: ../../dispatcher/webhook.rst:98 -msgid "Without reverse proxy (not recommended)" -msgstr "" - -#: ../../dispatcher/webhook.rst:100 -msgid "" -"In case you want can't use reverse proxy, you can use aiohttp's ssl " -"context." -msgstr "" - -#: ../../dispatcher/webhook.rst:102 -msgid "Also this example contains usage with self-signed certificate." -msgstr "" - -#: ../../dispatcher/webhook.rst:108 -msgid "With using other web framework" -msgstr "" - -#: ../../dispatcher/webhook.rst:110 -msgid "" -"You can pass incoming request to aiogram's webhook controller from any " -"web framework you want." -msgstr "" - -#: ../../dispatcher/webhook.rst:112 -msgid "" -"Read more about it in " -":meth:`aiogram.dispatcher.dispatcher.Dispatcher.feed_webhook_update` or " -":meth:`aiogram.dispatcher.dispatcher.Dispatcher.feed_update` methods." -msgstr "" - -#: ../../dispatcher/webhook.rst:123 -msgid "" -"If you want to use reply into webhook, you should check that result of " -"the :code:`feed_update` methods is an instance of API method and build " -":code:`multipart/form-data` or :code:`application/json` response body " -"manually." -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/index.po b/docs/locale/en/LC_MESSAGES/index.po deleted file mode 100644 index 6e7d2a46..00000000 --- a/docs/locale/en/LC_MESSAGES/index.po +++ /dev/null @@ -1,249 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 2022. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aiogram \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-26 23:17+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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" - -#: ../../../README.rst:3 -msgid "aiogram" -msgstr "" - -#: ../../../README.rst:-1 -msgid "MIT License" -msgstr "" - -#: ../../../README.rst:-1 -msgid "PyPi status" -msgstr "" - -#: ../../../README.rst:-1 -msgid "PyPi Package Version" -msgstr "" - -#: ../../../README.rst:-1 -msgid "Downloads" -msgstr "" - -#: ../../../README.rst:-1 -msgid "Supported python versions" -msgstr "" - -#: ../../../README.rst:-1 -msgid "Telegram Bot API" -msgstr "" - -#: ../../../README.rst:-1 -msgid "Tests" -msgstr "" - -#: ../../../README.rst:-1 -msgid "Codecov" -msgstr "" - -#: ../../../README.rst:37 -msgid "" -"**aiogram** is a modern and fully asynchronous framework for `Telegram " -"Bot API `_ written in Python 3.8 " -"using `asyncio `_ and " -"`aiohttp `_." -msgstr "" - -#: ../../../README.rst:42 -msgid "Make your bots faster and more powerful!" -msgstr "" - -#: ../../../README.rst:47 -msgid "Documentation:" -msgstr "" - -#: ../../../README.rst:45 -msgid "🇺🇸 `English `_" -msgstr "" - -#: ../../../README.rst:46 -msgid "🇺🇦 `Ukrainian `_" -msgstr "" - -#: ../../../README.rst:50 -msgid "Features" -msgstr "" - -#: ../../../README.rst:52 -msgid "" -"Asynchronous (`asyncio docs " -"`_, :pep:`492`)" -msgstr "" - -#: ../../../README.rst:53 -msgid "" -"Has type hints (:pep:`484`) and can be used with `mypy `_" -msgstr "" - -#: ../../../README.rst:54 -msgid "Supports `PyPy `_" -msgstr "" - -#: ../../../README.rst:55 -msgid "" -"Supports `Telegram Bot API 6.8 `_ and" -" gets fast updates to the latest versions of the Bot API" -msgstr "" - -#: ../../../README.rst:56 -msgid "" -"Telegram Bot API integration code was `autogenerated " -"`_ and can be easily re-generated " -"when API gets updated" -msgstr "" - -#: ../../../README.rst:57 -msgid "Updates router (Blueprints)" -msgstr "" - -#: ../../../README.rst:58 -msgid "Has Finite State Machine" -msgstr "" - -#: ../../../README.rst:59 -msgid "" -"Uses powerful `magic filters " -"`_" -msgstr "" - -#: ../../../README.rst:60 -msgid "Middlewares (incoming updates and API calls)" -msgstr "" - -#: ../../../README.rst:61 -msgid "" -"Provides `Replies into Webhook `_" -msgstr "" - -#: ../../../README.rst:62 -msgid "Integrated I18n/L10n support with GNU Gettext (or Fluent)" -msgstr "" - -#: ../../../README.rst:67 -msgid "" -"It is strongly advised that you have prior experience working with " -"`asyncio `_ before " -"beginning to use **aiogram**." -msgstr "" - -#: ../../../README.rst:71 -msgid "If you have any questions, you can visit our community chats on Telegram:" -msgstr "" - -#: ../../../README.rst:73 -msgid "🇺🇸 `@aiogram `_" -msgstr "" - -#: ../../../README.rst:74 -msgid "🇺🇦 `@aiogramua `_" -msgstr "" - -#: ../../../README.rst:75 -msgid "🇺🇿 `@aiogram_uz `_" -msgstr "" - -#: ../../../README.rst:76 -msgid "🇰🇿 `@aiogram_kz `_" -msgstr "" - -#: ../../../README.rst:77 -msgid "🇷🇺 `@aiogram_ru `_" -msgstr "" - -#: ../../../README.rst:78 -msgid "🇮🇷 `@aiogram_fa `_" -msgstr "" - -#: ../../../README.rst:79 -msgid "🇮🇹 `@aiogram_it `_" -msgstr "" - -#: ../../../README.rst:80 -msgid "🇧🇷 `@aiogram_br `_" -msgstr "" - -#: ../../index.rst:4 -msgid "Simple usage" -msgstr "" - -#: ../../index.rst:9 -msgid "Contents" -msgstr "" - -#~ msgid "Uses powerful :ref:`magic filters `" -#~ msgstr "" - -#~ msgid "" -#~ "Supports `Telegram Bot API 6.3 " -#~ "`_ and gets fast" -#~ " updates to the latest versions of" -#~ " the Bot API" -#~ msgstr "" - -#~ msgid "[Telegram] aiogram live" -#~ msgstr "" - -#~ msgid "" -#~ "Supports `Telegram Bot API 6.4 " -#~ "`_ and gets fast" -#~ " updates to the latest versions of" -#~ " the Bot API" -#~ msgstr "" - -#~ msgid "" -#~ "Supports `Telegram Bot API 6.6 " -#~ "`_ and gets fast" -#~ " updates to the latest versions of" -#~ " the Bot API" -#~ msgstr "" - -#~ msgid "aiogram |beta badge|" -#~ msgstr "" - -#~ msgid "Beta badge" -#~ msgstr "" - -#~ msgid "This version is still in development!" -#~ msgstr "" - -#~ msgid "**Breaking News:**" -#~ msgstr "" - -#~ msgid "*aiogram* 3.0 has breaking changes." -#~ msgstr "" - -#~ msgid "It breaks backward compatibility by introducing new breaking changes!" -#~ msgstr "" - -#~ msgid "" -#~ "Supports `Telegram Bot API 6.7 " -#~ "`_ and gets fast" -#~ " updates to the latest versions of" -#~ " the Bot API" -#~ msgstr "" - -#~ msgid "" -#~ "Uses powerful `magic filters " -#~ "`" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/install.po b/docs/locale/en/LC_MESSAGES/install.po deleted file mode 100644 index bc4ae706..00000000 --- a/docs/locale/en/LC_MESSAGES/install.po +++ /dev/null @@ -1,44 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../install.rst:3 -msgid "Installation" -msgstr "" - -#: ../../install.rst:6 ../../install.rst:23 -msgid "From PyPI" -msgstr "" - -#: ../../install.rst:13 -msgid "From Arch Linux Repository" -msgstr "" - -#: ../../install.rst:20 -msgid "Development build (3.x)" -msgstr "" - -#: ../../install.rst:30 -msgid "From GitHub" -msgstr "" - -#~ msgid "Stable (2.x)" -#~ msgstr "" - -#~ msgid "From AUR" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/migration_2_to_3.po b/docs/locale/en/LC_MESSAGES/migration_2_to_3.po deleted file mode 100644 index 3541ffff..00000000 --- a/docs/locale/en/LC_MESSAGES/migration_2_to_3.po +++ /dev/null @@ -1,305 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 2023. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aiogram \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-26 23:17+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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" - -#: ../../migration_2_to_3.rst:3 -msgid "Migration FAQ (2.x -> 3.0)" -msgstr "" - -#: ../../migration_2_to_3.rst:7 -msgid "This guide is still in progress." -msgstr "" - -#: ../../migration_2_to_3.rst:9 -msgid "" -"This version introduces much many breaking changes and architectural " -"improvements, helping to reduce global variables count in your code, " -"provides useful mechanisms to separate your code to modules or just make " -"sharable modules via packages on the PyPi, makes middlewares and filters " -"more controllable and others." -msgstr "" - -#: ../../migration_2_to_3.rst:14 -msgid "" -"On this page you can read about points that changed corresponding to last" -" stable 2.x version." -msgstr "" - -#: ../../migration_2_to_3.rst:18 -msgid "" -"This page is most like a detailed changelog than a migration guide, but " -"it will be updated in the future." -msgstr "" - -#: ../../migration_2_to_3.rst:21 -msgid "" -"Feel free to contribute to this page, if you find something that is not " -"mentioned here." -msgstr "" - -#: ../../migration_2_to_3.rst:25 -msgid "Dispatcher" -msgstr "" - -#: ../../migration_2_to_3.rst:27 -msgid "" -":class:`Dispatcher` class no longer accepts the `Bot` instance into the " -"initializer, it should be passed to dispatcher only for starting polling " -"or handling event from webhook. Also this way adds possibility to use " -"multiple bot instances at the same time (\"multibot\")" -msgstr "" - -#: ../../migration_2_to_3.rst:30 -msgid "" -":class:`Dispatcher` now can be extended with another Dispatcher-like " -"thing named :class:`Router` (:ref:`Read more » `). With " -"routes you can easily separate your code to multiple modules and may be " -"share this modules between projects." -msgstr "" - -#: ../../migration_2_to_3.rst:34 -msgid "" -"Removed the **_handler** suffix from all event handler decorators and " -"registering methods. (:ref:`Read more » `)" -msgstr "" - -#: ../../migration_2_to_3.rst:36 -msgid "" -"Executor entirely removed, now you can use Dispatcher directly to start " -"polling or webhook." -msgstr "" - -#: ../../migration_2_to_3.rst:37 -msgid "" -"Throttling method is completely removed, now you can use middlewares to " -"control the execution context and use any throttling mechanism you want." -msgstr "" - -#: ../../migration_2_to_3.rst:39 -msgid "" -"Removed global context variables from the API types, Bot and Dispatcher " -"object, from now if you want to get current bot instance inside handlers " -"or filters you should accept the argument :code:`bot: Bot` and use it " -"instead of :code:`Bot.get_current()` Inside middlewares it can be " -"accessed via :code:`data[\"bot\"]`." -msgstr "" - -#: ../../migration_2_to_3.rst:43 -msgid "" -"Now to skip pending updates, you should call the " -":class:`aiogram.methods.delete_webhook.DeleteWebhook` method directly " -"instead of passing :code:`skip_updates=True` to start polling method." -msgstr "" - -#: ../../migration_2_to_3.rst:47 -msgid "Filtering events" -msgstr "" - -#: ../../migration_2_to_3.rst:49 -msgid "" -"Keyword filters can no more be used, use filters explicitly. (`Read more " -"» `_)" -msgstr "" - -#: ../../migration_2_to_3.rst:50 -msgid "" -"In due to keyword filters was removed all enabled by default filters " -"(state and content_type now is not enabled), so you should specify them " -"explicitly if you want to use. For example instead of using " -":code:`@dp.message_handler(content_types=ContentType.PHOTO)` you should " -"use :code:`@router.message(F.photo)`" -msgstr "" - -#: ../../migration_2_to_3.rst:54 -msgid "" -"Most of common filters is replaced by \"magic filter\". (:ref:`Read more " -"» `)" -msgstr "" - -#: ../../migration_2_to_3.rst:55 -msgid "" -"Now by default message handler receives any content type, if you want " -"specific one just add the filters (Magic or any other)" -msgstr "" - -#: ../../migration_2_to_3.rst:57 -msgid "" -"State filter now is not enabled by default, that's mean if you using " -":code:`state=\"*\"` in v2 then you should not pass any state filter in " -"v3, and vice versa, if the state in v2 is not specified now you should " -"specify the state." -msgstr "" - -#: ../../migration_2_to_3.rst:60 -msgid "" -"Added possibility to register per-router global filters, that helps to " -"reduces the number of repetitions in the code and makes easily way to " -"control for what each router will be used." -msgstr "" - -#: ../../migration_2_to_3.rst:66 -msgid "Bot API" -msgstr "" - -#: ../../migration_2_to_3.rst:68 -msgid "" -"Now all API methods is classes with validation (via `pydantic " -"`_) (all API calls is also available as " -"methods in the Bot class)." -msgstr "" - -#: ../../migration_2_to_3.rst:70 -msgid "" -"Added more pre-defined Enums and moved into `aiogram.enums` sub-package. " -"For example chat type enum now is :class:`aiogram.enums.ChatType` instead" -" of :class:`aiogram.types.chat.ChatType`. (:ref:`Read more » `)" -msgstr "" - -#: ../../migration_2_to_3.rst:73 -msgid "" -"Separated HTTP client session into container that can be reused between " -"different Bot instances in the application." -msgstr "" - -#: ../../migration_2_to_3.rst:75 -msgid "" -"API Exceptions is no more classified by specific message in due to " -"Telegram has no documented error codes. But all errors is classified by " -"HTTP status code and for each method only one case can be caused with the" -" same code, so in most cases you should check that only error type (by " -"status-code) without checking error message. (:ref:`Read more » `)" -msgstr "" - -#: ../../migration_2_to_3.rst:82 -msgid "Middlewares" -msgstr "" - -#: ../../migration_2_to_3.rst:84 -msgid "" -"Middlewares can now control a execution context, e.g. using context " -"managers (:ref:`Read more » `)" -msgstr "" - -#: ../../migration_2_to_3.rst:85 -msgid "" -"All contextual data now is shared between middlewares, filters and " -"handlers to end-to-end use. For example now you can easily pass some data" -" into context inside middleware and get it in the filters layer as the " -"same way as in the handlers via keyword arguments." -msgstr "" - -#: ../../migration_2_to_3.rst:88 -msgid "" -"Added mechanism named **flags**, that helps to customize handler behavior" -" in conjunction with middlewares. (:ref:`Read more » `)" -msgstr "" - -#: ../../migration_2_to_3.rst:93 -msgid "Keyboard Markup" -msgstr "" - -#: ../../migration_2_to_3.rst:95 -msgid "" -"Now :class:`aiogram.types.inline_keyboard_markup.InlineKeyboardMarkup` " -"and :class:`aiogram.types.reply_keyboard_markup.ReplyKeyboardMarkup` has " -"no methods to extend it, instead you have to use markup builders " -":class:`aiogram.utils.keyboard.ReplyKeyboardBuilder` and " -":class:`aiogram.utils.keyboard.KeyboardBuilder` respectively (:ref:`Read " -"more » `)" -msgstr "" - -#: ../../migration_2_to_3.rst:103 -msgid "Callbacks data" -msgstr "" - -#: ../../migration_2_to_3.rst:105 -msgid "" -"Callback data factory now is strictly typed via `pydantic " -"`_ models (:ref:`Read more » `)" -msgstr "" - -#: ../../migration_2_to_3.rst:110 -msgid "Finite State machine" -msgstr "" - -#: ../../migration_2_to_3.rst:112 -msgid "" -"State filter will no more added to all handlers, you will need to specify" -" state if you want" -msgstr "" - -#: ../../migration_2_to_3.rst:113 -msgid "" -"Added possibility to change FSM strategy, for example if you want to " -"control state for each user in chat topics instead of user in chat you " -"can specify it in the Dispatcher." -msgstr "" - -#: ../../migration_2_to_3.rst:115 -msgid "" -"Now :class:`aiogram.fsm.state.State` and " -":class:`aiogram.fsm.state.StateGroup` don't have helper methods like " -":code:`.set()`, :code:`.next()`, etc." -msgstr "" - -#: ../../migration_2_to_3.rst:118 -msgid "" -"Instead of this you should set states by passing them directly to " -":class:`aiogram.fsm.context.FSMContext` (:ref:`Read more » `)" -msgstr "" - -#: ../../migration_2_to_3.rst:120 -msgid "" -"State proxy is deprecated, you should update the state data by calling " -":code:`state.set_data(...)` and :code:`state.get_data()` respectively." -msgstr "" - -#: ../../migration_2_to_3.rst:125 -msgid "Sending Files" -msgstr "" - -#: ../../migration_2_to_3.rst:127 -msgid "" -"From now you should wrap sending files into InputFile object before send " -"instead of passing IO object directly to the API method. (:ref:`Read more" -" » `)" -msgstr "" - -#: ../../migration_2_to_3.rst:132 -msgid "Webhook" -msgstr "" - -#: ../../migration_2_to_3.rst:134 -msgid "Simplified aiohttp web app configuration" -msgstr "" - -#: ../../migration_2_to_3.rst:135 -msgid "" -"By default added possibility to upload files when you use reply into " -"webhook" -msgstr "" - -#~ msgid "" -#~ "Callback data factory now is strictly" -#~ " typed via `pydantic " -#~ "`_ models (:ref:`Read " -#~ "more » `)" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/utils/callback_answer.po b/docs/locale/en/LC_MESSAGES/utils/callback_answer.po deleted file mode 100644 index daa3c973..00000000 --- a/docs/locale/en/LC_MESSAGES/utils/callback_answer.po +++ /dev/null @@ -1,204 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../utils/callback_answer.rst:4 -msgid "Callback answer" -msgstr "" - -#: ../../utils/callback_answer.rst:6 -msgid "" -"Helper for callback query handlers, can be useful in bots with a lot of " -"callback handlers to automatically take answer to all requests." -msgstr "" - -#: ../../utils/callback_answer.rst:10 -msgid "Simple usage" -msgstr "" - -#: ../../utils/callback_answer.rst:12 -msgid "" -"For use, it is enough to register the inner middleware " -":class:`aiogram.utils.callback_answer.CallbackAnswerMiddleware` in " -"dispatcher or specific router:" -msgstr "" - -#: ../../utils/callback_answer.rst:18 -msgid "" -"After that all handled callback queries will be answered automatically " -"after processing the handler." -msgstr "" - -#: ../../utils/callback_answer.rst:21 -msgid "Advanced usage" -msgstr "" - -#: ../../utils/callback_answer.rst:23 -msgid "" -"In some cases you need to have some non-standard response parameters, " -"this can be done in several ways:" -msgstr "" - -#: ../../utils/callback_answer.rst:26 -msgid "Global defaults" -msgstr "" - -#: ../../utils/callback_answer.rst:28 -msgid "" -"Change default parameters while initializing middleware, for example " -"change answer to `pre` mode and text \"OK\":" -msgstr "" - -#: ../../utils/callback_answer.rst:35 -msgid "" -"Look at :class:`aiogram.utils.callback_answer.CallbackAnswerMiddleware` " -"to get all available parameters" -msgstr "" - -#: ../../utils/callback_answer.rst:39 -msgid "Handler specific" -msgstr "" - -#: ../../utils/callback_answer.rst:41 -msgid "" -"By using :ref:`flags ` you can change the behavior for specific " -"handler" -msgstr "" - -#: ../../utils/callback_answer.rst:50 -msgid "" -"Flag arguments is the same as in " -":class:`aiogram.utils.callback_answer.CallbackAnswerMiddleware` with " -"additional one :code:`disabled` to disable answer." -msgstr "" - -#: ../../utils/callback_answer.rst:54 -msgid "A special case" -msgstr "" - -#: ../../utils/callback_answer.rst:56 -msgid "" -"It is not always correct to answer the same in every case, so there is an" -" option to change the answer inside the handler. You can get an instance " -"of :class:`aiogram.utils.callback_answer.CallbackAnswer` object inside " -"handler and change whatever you want." -msgstr "" - -#: ../../utils/callback_answer.rst:61 -msgid "" -"Note that is impossible to change callback answer attributes when you use" -" :code:`pre=True` mode." -msgstr "" - -#: ../../utils/callback_answer.rst:76 -msgid "Combine that all at once" -msgstr "" - -#: ../../utils/callback_answer.rst:78 -msgid "" -"For example you want to answer in most of cases before handler with text " -"\"🤔\" but at some cases need to answer after the handler with custom " -"text, so you can do it:" -msgstr "" - -#: ../../utils/callback_answer.rst:94 -msgid "Description of objects" -msgstr "" - -#: aiogram.utils.callback_answer.CallbackAnswerMiddleware:1 of -msgid "Bases: :py:class:`~aiogram.dispatcher.middlewares.base.BaseMiddleware`" -msgstr "" - -#: aiogram.utils.callback_answer.CallbackAnswerMiddleware.__init__:1 of -msgid "" -"Inner middleware for callback query handlers, can be useful in bots with " -"a lot of callback handlers to automatically take answer to all requests" -msgstr "" - -#: aiogram.utils.callback_answer.CallbackAnswer.__init__ -#: aiogram.utils.callback_answer.CallbackAnswerMiddleware.__init__ of -msgid "Parameters" -msgstr "" - -#: aiogram.utils.callback_answer.CallbackAnswerMiddleware.__init__:4 of -msgid "send answer before execute handler" -msgstr "" - -#: aiogram.utils.callback_answer.CallbackAnswer.__init__:5 -#: aiogram.utils.callback_answer.CallbackAnswerMiddleware.__init__:5 of -msgid "answer with text" -msgstr "" - -#: aiogram.utils.callback_answer.CallbackAnswer.__init__:6 -#: aiogram.utils.callback_answer.CallbackAnswerMiddleware.__init__:6 of -msgid "show alert" -msgstr "" - -#: aiogram.utils.callback_answer.CallbackAnswer.__init__:7 -#: aiogram.utils.callback_answer.CallbackAnswerMiddleware.__init__:7 of -msgid "game url" -msgstr "" - -#: aiogram.utils.callback_answer.CallbackAnswer.__init__:8 -#: aiogram.utils.callback_answer.CallbackAnswerMiddleware.__init__:8 of -msgid "cache answer for some time" -msgstr "" - -#: aiogram.utils.callback_answer.CallbackAnswer:1 of -msgid "Bases: :py:class:`object`" -msgstr "" - -#: aiogram.utils.callback_answer.CallbackAnswer.__init__:1 of -msgid "Callback answer configuration" -msgstr "" - -#: aiogram.utils.callback_answer.CallbackAnswer.__init__:3 of -msgid "this request is already answered by middleware" -msgstr "" - -#: aiogram.utils.callback_answer.CallbackAnswer.__init__:4 of -msgid "answer will not be performed" -msgstr "" - -#: aiogram.utils.callback_answer.CallbackAnswer.disable:1 of -msgid "Deactivate answering for this handler" -msgstr "" - -#: aiogram.utils.callback_answer.CallbackAnswer.disabled:1 of -msgid "Indicates that automatic answer is disabled in this handler" -msgstr "" - -#: aiogram.utils.callback_answer.CallbackAnswer.answered:1 of -msgid "Indicates that request is already answered by middleware" -msgstr "" - -#: aiogram.utils.callback_answer.CallbackAnswer.text:1 of -msgid "Response text :return:" -msgstr "" - -#: aiogram.utils.callback_answer.CallbackAnswer.show_alert:1 of -msgid "Whether to display an alert" -msgstr "" - -#: aiogram.utils.callback_answer.CallbackAnswer.url:1 of -msgid "Game url" -msgstr "" - -#: aiogram.utils.callback_answer.CallbackAnswer.cache_time:1 of -msgid "Response cache time" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/utils/chat_action.po b/docs/locale/en/LC_MESSAGES/utils/chat_action.po deleted file mode 100644 index abc33c56..00000000 --- a/docs/locale/en/LC_MESSAGES/utils/chat_action.po +++ /dev/null @@ -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 , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../utils/chat_action.rst:3 -msgid "Chat action sender" -msgstr "" - -#: ../../utils/chat_action.rst:6 -msgid "Sender" -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender:1 of -msgid "" -"This utility helps to automatically send chat action until long actions " -"is done to take acknowledge bot users the bot is doing something and not " -"crashed." -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender:4 of -msgid "Provides simply to use context manager." -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender:6 of -msgid "" -"Technically sender start background task with infinity loop which works " -"until action will be finished and sends the `chat action " -"`_ every 5 seconds." -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender.__init__ of -msgid "Parameters" -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender.__init__:1 of -msgid "instance of the bot" -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender.__init__:2 of -msgid "target chat id" -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender.__init__:3 of -msgid "chat action type" -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender.__init__:4 of -msgid "interval between iterations" -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender.__init__:5 of -msgid "sleep before first iteration" -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender.choose_sticker:1 of -msgid "Create instance of the sender with `choose_sticker` action" -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender.find_location:1 of -msgid "Create instance of the sender with `find_location` action" -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender.record_video:1 of -msgid "Create instance of the sender with `record_video` action" -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender.record_video_note:1 of -msgid "Create instance of the sender with `record_video_note` action" -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender.record_voice:1 of -msgid "Create instance of the sender with `record_voice` action" -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender.typing:1 of -msgid "Create instance of the sender with `typing` action" -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender.upload_document:1 of -msgid "Create instance of the sender with `upload_document` action" -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender.upload_photo:1 of -msgid "Create instance of the sender with `upload_photo` action" -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender.upload_video:1 of -msgid "Create instance of the sender with `upload_video` action" -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender.upload_video_note:1 of -msgid "Create instance of the sender with `upload_video_note` action" -msgstr "" - -#: aiogram.utils.chat_action.ChatActionSender.upload_voice:1 of -msgid "Create instance of the sender with `upload_voice` action" -msgstr "" - -#: ../../utils/chat_action.rst:12 ../../utils/chat_action.rst:29 -msgid "Usage" -msgstr "" - -#: ../../utils/chat_action.rst:23 -msgid "Middleware" -msgstr "" - -#: aiogram.utils.chat_action.ChatActionMiddleware:1 of -msgid "Helps to automatically use chat action sender for all message handlers" -msgstr "" - -#: ../../utils/chat_action.rst:31 -msgid "Before usa should be registered for the `message` event" -msgstr "" - -#: ../../utils/chat_action.rst:37 -msgid "" -"After this action all handlers which works longer than `initial_sleep` " -"will produce the '`typing`' chat action." -msgstr "" - -#: ../../utils/chat_action.rst:39 -msgid "Also sender can be customized via flags feature for particular handler." -msgstr "" - -#: ../../utils/chat_action.rst:41 -msgid "Change only action type:" -msgstr "" - -#: ../../utils/chat_action.rst:50 -msgid "Change sender configuration:" -msgstr "" - -#~ msgid "instance of the bot, can be omitted from the context" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/utils/formatting.po b/docs/locale/en/LC_MESSAGES/utils/formatting.po deleted file mode 100644 index bb92b9f9..00000000 --- a/docs/locale/en/LC_MESSAGES/utils/formatting.po +++ /dev/null @@ -1,449 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2023, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../utils/formatting.rst:5 -msgid "Formatting" -msgstr "" - -#: ../../utils/formatting.rst:7 -msgid "Make your message formatting flexible and simple" -msgstr "" - -#: ../../utils/formatting.rst:9 -msgid "" -"This instrument works on top of Message entities instead of using HTML or" -" Markdown markups, you can easily construct your message and sent it to " -"the Telegram without the need to remember tag parity (opening and " -"closing) or escaping user input." -msgstr "" - -#: ../../utils/formatting.rst:14 -msgid "Usage" -msgstr "" - -#: ../../utils/formatting.rst:17 -msgid "Basic scenario" -msgstr "" - -#: ../../utils/formatting.rst:19 -msgid "Construct your message and send it to the Telegram." -msgstr "" - -#: ../../utils/formatting.rst:26 -msgid "Is the same as the next example, but without usage markup" -msgstr "" - -#: ../../utils/formatting.rst:35 -msgid "" -"Literally when you execute :code:`as_kwargs` method the Text object is " -"converted into text :code:`Hello, Alex!` with entities list " -":code:`[MessageEntity(type='bold', offset=7, length=4)]` and passed into " -"dict which can be used as :code:`**kwargs` in API call." -msgstr "" - -#: ../../utils/formatting.rst:39 -msgid "" -"The complete list of elements is listed `on this page below <#available-" -"elements>`_." -msgstr "" - -#: ../../utils/formatting.rst:42 -msgid "Advanced scenario" -msgstr "" - -#: ../../utils/formatting.rst:44 -msgid "" -"On top of base elements can be implemented content rendering structures, " -"so, out of the box aiogram has a few already implemented functions that " -"helps you to format your messages:" -msgstr "" - -#: aiogram.utils.formatting.as_line:1 of -msgid "Wrap multiple nodes into line with :code:`\\\\n` at the end of line." -msgstr "" - -#: aiogram.utils.formatting.Text.as_kwargs -#: aiogram.utils.formatting.as_key_value aiogram.utils.formatting.as_line -#: aiogram.utils.formatting.as_list aiogram.utils.formatting.as_marked_list -#: aiogram.utils.formatting.as_marked_section -#: aiogram.utils.formatting.as_numbered_list -#: aiogram.utils.formatting.as_numbered_section -#: aiogram.utils.formatting.as_section of -msgid "Parameters" -msgstr "" - -#: aiogram.utils.formatting.as_line:3 of -msgid "Text or Any" -msgstr "" - -#: aiogram.utils.formatting.as_line:4 of -msgid "ending of the line, by default is :code:`\\\\n`" -msgstr "" - -#: aiogram.utils.formatting.as_line:5 of -msgid "separator between items, by default is empty string" -msgstr "" - -#: aiogram.utils.formatting.Text.as_kwargs aiogram.utils.formatting.Text.render -#: aiogram.utils.formatting.as_key_value aiogram.utils.formatting.as_line -#: aiogram.utils.formatting.as_list aiogram.utils.formatting.as_marked_list -#: aiogram.utils.formatting.as_marked_section -#: aiogram.utils.formatting.as_numbered_list -#: aiogram.utils.formatting.as_numbered_section -#: aiogram.utils.formatting.as_section of -msgid "Returns" -msgstr "" - -#: aiogram.utils.formatting.as_key_value:5 aiogram.utils.formatting.as_line:6 -#: aiogram.utils.formatting.as_marked_list:5 -#: aiogram.utils.formatting.as_numbered_list:6 -#: aiogram.utils.formatting.as_section:5 of -msgid "Text" -msgstr "" - -#: aiogram.utils.formatting.as_list:1 of -msgid "Wrap each element to separated lines" -msgstr "" - -#: aiogram.utils.formatting.as_marked_list:1 of -msgid "Wrap elements as marked list" -msgstr "" - -#: aiogram.utils.formatting.as_marked_list:4 of -msgid "line marker, by default is '- '" -msgstr "" - -#: aiogram.utils.formatting.as_numbered_list:1 of -msgid "Wrap elements as numbered list" -msgstr "" - -#: aiogram.utils.formatting.as_numbered_list:4 of -msgid "initial number, by default 1" -msgstr "" - -#: aiogram.utils.formatting.as_numbered_list:5 of -msgid "number format, by default '{}. '" -msgstr "" - -#: aiogram.utils.formatting.as_section:1 of -msgid "Wrap elements as simple section, section has title and body" -msgstr "" - -#: aiogram.utils.formatting.as_marked_section:1 of -msgid "Wrap elements as section with marked list" -msgstr "" - -#: aiogram.utils.formatting.as_numbered_section:1 of -msgid "Wrap elements as section with numbered list" -msgstr "" - -#: aiogram.utils.formatting.as_key_value:1 of -msgid "Wrap elements pair as key-value line. (:code:`{key}: {value}`)" -msgstr "" - -#: ../../utils/formatting.rst:64 -msgid "and lets complete them all:" -msgstr "" - -#: ../../utils/formatting.rst:92 -msgid "Will be rendered into:" -msgstr "" - -#: ../../utils/formatting.rst:94 -msgid "**Success:**" -msgstr "" - -#: ../../utils/formatting.rst:96 -msgid "✅ Test 1" -msgstr "" - -#: ../../utils/formatting.rst:98 -msgid "✅ Test 3" -msgstr "" - -#: ../../utils/formatting.rst:100 -msgid "✅ Test 4" -msgstr "" - -#: ../../utils/formatting.rst:102 -msgid "**Failed:**" -msgstr "" - -#: ../../utils/formatting.rst:104 -msgid "❌ Test 2" -msgstr "" - -#: ../../utils/formatting.rst:106 -msgid "**Summary:**" -msgstr "" - -#: ../../utils/formatting.rst:108 -msgid "**Total**: 4" -msgstr "" - -#: ../../utils/formatting.rst:110 -msgid "**Success**: 3" -msgstr "" - -#: ../../utils/formatting.rst:112 -msgid "**Failed**: 1" -msgstr "" - -#: ../../utils/formatting.rst:114 -msgid "#test" -msgstr "" - -#: ../../utils/formatting.rst:117 -msgid "Or as HTML:" -msgstr "" - -#: ../../utils/formatting.rst:137 -msgid "Available methods" -msgstr "" - -#: aiogram.utils.formatting.Text:1 of -msgid "Bases: :py:class:`~typing.Iterable`\\ [:py:obj:`~typing.Any`]" -msgstr "" - -#: aiogram.utils.formatting.Text:1 of -msgid "Simple text element" -msgstr "" - -#: aiogram.utils.formatting.Text.render:1 of -msgid "Render elements tree as text with entities list" -msgstr "" - -#: aiogram.utils.formatting.Text.as_kwargs:1 of -msgid "" -"Render elements tree as keyword arguments for usage in the API call, for " -"example:" -msgstr "" - -#: aiogram.utils.formatting.Text.as_html:1 of -msgid "Render elements tree as HTML markup" -msgstr "" - -#: aiogram.utils.formatting.Text.as_markdown:1 of -msgid "Render elements tree as MarkdownV2 markup" -msgstr "" - -#: ../../utils/formatting.rst:147 -msgid "Available elements" -msgstr "" - -#: aiogram.utils.formatting.Bold:1 aiogram.utils.formatting.BotCommand:1 -#: aiogram.utils.formatting.CashTag:1 aiogram.utils.formatting.Code:1 -#: aiogram.utils.formatting.CustomEmoji:1 aiogram.utils.formatting.Email:1 -#: aiogram.utils.formatting.HashTag:1 aiogram.utils.formatting.Italic:1 -#: aiogram.utils.formatting.PhoneNumber:1 aiogram.utils.formatting.Pre:1 -#: aiogram.utils.formatting.Spoiler:1 aiogram.utils.formatting.Strikethrough:1 -#: aiogram.utils.formatting.TextLink:1 aiogram.utils.formatting.TextMention:1 -#: aiogram.utils.formatting.Underline:1 aiogram.utils.formatting.Url:1 of -msgid "Bases: :py:class:`~aiogram.utils.formatting.Text`" -msgstr "" - -#: aiogram.utils.formatting.HashTag:1 of -msgid "Hashtag element." -msgstr "" - -#: aiogram.utils.formatting.HashTag:5 of -msgid "The value should always start with '#' symbol" -msgstr "" - -#: aiogram.utils.formatting.HashTag:7 of -msgid "" -"Will be wrapped into :obj:`aiogram.types.message_entity.MessageEntity` " -"with type " -":obj:`aiogram.enums.message_entity_type.MessageEntityType.HASHTAG`" -msgstr "" - -#: aiogram.utils.formatting.CashTag:1 of -msgid "Cashtag element." -msgstr "" - -#: aiogram.utils.formatting.CashTag:5 of -msgid "The value should always start with '$' symbol" -msgstr "" - -#: aiogram.utils.formatting.CashTag:7 of -msgid "" -"Will be wrapped into :obj:`aiogram.types.message_entity.MessageEntity` " -"with type " -":obj:`aiogram.enums.message_entity_type.MessageEntityType.CASHTAG`" -msgstr "" - -#: aiogram.utils.formatting.BotCommand:1 of -msgid "Bot command element." -msgstr "" - -#: aiogram.utils.formatting.BotCommand:5 of -msgid "The value should always start with '/' symbol" -msgstr "" - -#: aiogram.utils.formatting.BotCommand:7 of -msgid "" -"Will be wrapped into :obj:`aiogram.types.message_entity.MessageEntity` " -"with type " -":obj:`aiogram.enums.message_entity_type.MessageEntityType.BOT_COMMAND`" -msgstr "" - -#: aiogram.utils.formatting.Url:1 of -msgid "Url element." -msgstr "" - -#: aiogram.utils.formatting.Url:3 of -msgid "" -"Will be wrapped into :obj:`aiogram.types.message_entity.MessageEntity` " -"with type :obj:`aiogram.enums.message_entity_type.MessageEntityType.URL`" -msgstr "" - -#: aiogram.utils.formatting.Email:1 of -msgid "Email element." -msgstr "" - -#: aiogram.utils.formatting.Email:3 of -msgid "" -"Will be wrapped into :obj:`aiogram.types.message_entity.MessageEntity` " -"with type " -":obj:`aiogram.enums.message_entity_type.MessageEntityType.EMAIL`" -msgstr "" - -#: aiogram.utils.formatting.PhoneNumber:1 of -msgid "Phone number element." -msgstr "" - -#: aiogram.utils.formatting.PhoneNumber:3 of -msgid "" -"Will be wrapped into :obj:`aiogram.types.message_entity.MessageEntity` " -"with type " -":obj:`aiogram.enums.message_entity_type.MessageEntityType.PHONE_NUMBER`" -msgstr "" - -#: aiogram.utils.formatting.Bold:1 of -msgid "Bold element." -msgstr "" - -#: aiogram.utils.formatting.Bold:3 of -msgid "" -"Will be wrapped into :obj:`aiogram.types.message_entity.MessageEntity` " -"with type :obj:`aiogram.enums.message_entity_type.MessageEntityType.BOLD`" -msgstr "" - -#: aiogram.utils.formatting.Italic:1 of -msgid "Italic element." -msgstr "" - -#: aiogram.utils.formatting.Italic:3 of -msgid "" -"Will be wrapped into :obj:`aiogram.types.message_entity.MessageEntity` " -"with type " -":obj:`aiogram.enums.message_entity_type.MessageEntityType.ITALIC`" -msgstr "" - -#: aiogram.utils.formatting.Underline:1 of -msgid "Underline element." -msgstr "" - -#: aiogram.utils.formatting.Underline:3 of -msgid "" -"Will be wrapped into :obj:`aiogram.types.message_entity.MessageEntity` " -"with type " -":obj:`aiogram.enums.message_entity_type.MessageEntityType.UNDERLINE`" -msgstr "" - -#: aiogram.utils.formatting.Strikethrough:1 of -msgid "Strikethrough element." -msgstr "" - -#: aiogram.utils.formatting.Strikethrough:3 of -msgid "" -"Will be wrapped into :obj:`aiogram.types.message_entity.MessageEntity` " -"with type " -":obj:`aiogram.enums.message_entity_type.MessageEntityType.STRIKETHROUGH`" -msgstr "" - -#: aiogram.utils.formatting.Spoiler:1 of -msgid "Spoiler element." -msgstr "" - -#: aiogram.utils.formatting.Spoiler:3 of -msgid "" -"Will be wrapped into :obj:`aiogram.types.message_entity.MessageEntity` " -"with type " -":obj:`aiogram.enums.message_entity_type.MessageEntityType.SPOILER`" -msgstr "" - -#: aiogram.utils.formatting.Code:1 of -msgid "Code element." -msgstr "" - -#: aiogram.utils.formatting.Code:3 of -msgid "" -"Will be wrapped into :obj:`aiogram.types.message_entity.MessageEntity` " -"with type :obj:`aiogram.enums.message_entity_type.MessageEntityType.CODE`" -msgstr "" - -#: aiogram.utils.formatting.Pre:1 of -msgid "Pre element." -msgstr "" - -#: aiogram.utils.formatting.Pre:3 of -msgid "" -"Will be wrapped into :obj:`aiogram.types.message_entity.MessageEntity` " -"with type :obj:`aiogram.enums.message_entity_type.MessageEntityType.PRE`" -msgstr "" - -#: aiogram.utils.formatting.TextLink:1 of -msgid "Text link element." -msgstr "" - -#: aiogram.utils.formatting.TextLink:3 of -msgid "" -"Will be wrapped into :obj:`aiogram.types.message_entity.MessageEntity` " -"with type " -":obj:`aiogram.enums.message_entity_type.MessageEntityType.TEXT_LINK`" -msgstr "" - -#: aiogram.utils.formatting.TextMention:1 of -msgid "Text mention element." -msgstr "" - -#: aiogram.utils.formatting.TextMention:3 of -msgid "" -"Will be wrapped into :obj:`aiogram.types.message_entity.MessageEntity` " -"with type " -":obj:`aiogram.enums.message_entity_type.MessageEntityType.TEXT_MENTION`" -msgstr "" - -#: aiogram.utils.formatting.CustomEmoji:1 of -msgid "Custom emoji element." -msgstr "" - -#: aiogram.utils.formatting.CustomEmoji:3 of -msgid "" -"Will be wrapped into :obj:`aiogram.types.message_entity.MessageEntity` " -"with type " -":obj:`aiogram.enums.message_entity_type.MessageEntityType.CUSTOM_EMOJI`" -msgstr "" - -#~ msgid "line marker, by default is :code:`- `" -#~ msgstr "" - -#~ msgid "number format, by default :code:`{}. `" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/utils/i18n.po b/docs/locale/en/LC_MESSAGES/utils/i18n.po deleted file mode 100644 index de674640..00000000 --- a/docs/locale/en/LC_MESSAGES/utils/i18n.po +++ /dev/null @@ -1,339 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 2022. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: aiogram \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-14 19:29+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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" - -#: ../../utils/i18n.rst:3 -msgid "Translation" -msgstr "" - -#: ../../utils/i18n.rst:5 -msgid "" -"In order to make you bot translatable you have to add a minimal number of" -" hooks to your Python code." -msgstr "" - -#: ../../utils/i18n.rst:7 -msgid "These hooks are called translation strings." -msgstr "" - -#: ../../utils/i18n.rst:9 -msgid "" -"The aiogram translation utils is build on top of `GNU gettext Python " -"module `_ and `Babel " -"library `_." -msgstr "" - -#: ../../utils/i18n.rst:13 -msgid "Installation" -msgstr "" - -#: ../../utils/i18n.rst:15 -msgid "" -"Babel is required to make simple way to extract translation strings from " -"your code" -msgstr "" - -#: ../../utils/i18n.rst:17 -msgid "Can be installed from pip directly:" -msgstr "" - -#: ../../utils/i18n.rst:24 -msgid "or as `aiogram` extra dependency:" -msgstr "" - -#: ../../utils/i18n.rst:32 -msgid "Make messages translatable" -msgstr "" - -#: ../../utils/i18n.rst:34 -msgid "" -"In order to gettext need to know what the strings should be translated " -"you will need to write translation strings." -msgstr "" - -#: ../../utils/i18n.rst:36 -msgid "For example:" -msgstr "" - -#: ../../utils/i18n.rst:54 -msgid "" -"f-strings can't be used as translations string because any dynamic " -"variables should be added to message after getting translated message" -msgstr "" - -#: ../../utils/i18n.rst:57 -msgid "" -"Also if you want to use translated string in keyword- or magic- filters " -"you will need to use lazy gettext calls:" -msgstr "" - -#: ../../utils/i18n.rst:72 -msgid "" -"Lazy gettext calls should always be used when the current language is not" -" know at the moment" -msgstr "" - -#: ../../utils/i18n.rst:77 -msgid "" -"Lazy gettext can't be used as value for API methods or any Telegram " -"Object (like " -":class:`aiogram.types.inline_keyboard_button.InlineKeyboardButton` or " -"etc.)" -msgstr "" - -#: ../../utils/i18n.rst:80 -msgid "Configuring engine" -msgstr "" - -#: ../../utils/i18n.rst:82 -msgid "" -"After you messages is already done to use gettext your bot should know " -"how to detect user language" -msgstr "" - -#: ../../utils/i18n.rst:84 -msgid "" -"On top of your application the instance of " -":class:`aiogram.utils.i18n.I18n` should be created" -msgstr "" - -#: ../../utils/i18n.rst:92 -msgid "" -"After that you will need to choose one of builtin I18n middleware or " -"write your own." -msgstr "" - -#: ../../utils/i18n.rst:94 -msgid "Builtin middlewares:" -msgstr "" - -#: ../../utils/i18n.rst:98 -msgid "SimpleI18nMiddleware" -msgstr "" - -#: aiogram.utils.i18n.middleware.SimpleI18nMiddleware:1 of -msgid "Simple I18n middleware." -msgstr "" - -#: aiogram.utils.i18n.middleware.SimpleI18nMiddleware:3 of -msgid "Chooses language code from the User object received in event" -msgstr "" - -#: aiogram.utils.i18n.middleware.ConstI18nMiddleware.__init__:1 -#: aiogram.utils.i18n.middleware.FSMI18nMiddleware.__init__:1 -#: aiogram.utils.i18n.middleware.I18nMiddleware.__init__:1 -#: aiogram.utils.i18n.middleware.SimpleI18nMiddleware.__init__:1 of -msgid "Create an instance of middleware" -msgstr "" - -#: aiogram.utils.i18n.middleware.ConstI18nMiddleware.__init__ -#: aiogram.utils.i18n.middleware.FSMI18nMiddleware.__init__ -#: aiogram.utils.i18n.middleware.FSMI18nMiddleware.set_locale -#: aiogram.utils.i18n.middleware.I18nMiddleware.__init__ -#: aiogram.utils.i18n.middleware.I18nMiddleware.get_locale -#: aiogram.utils.i18n.middleware.I18nMiddleware.setup -#: aiogram.utils.i18n.middleware.SimpleI18nMiddleware.__init__ of -msgid "Parameters" -msgstr "" - -#: aiogram.utils.i18n.middleware.ConstI18nMiddleware.__init__:3 -#: aiogram.utils.i18n.middleware.FSMI18nMiddleware.__init__:3 -#: aiogram.utils.i18n.middleware.I18nMiddleware.__init__:3 -#: aiogram.utils.i18n.middleware.SimpleI18nMiddleware.__init__:3 of -msgid "instance of I18n" -msgstr "" - -#: aiogram.utils.i18n.middleware.ConstI18nMiddleware.__init__:4 -#: aiogram.utils.i18n.middleware.FSMI18nMiddleware.__init__:4 -#: aiogram.utils.i18n.middleware.I18nMiddleware.__init__:4 -#: aiogram.utils.i18n.middleware.SimpleI18nMiddleware.__init__:4 of -msgid "context key for I18n instance" -msgstr "" - -#: aiogram.utils.i18n.middleware.ConstI18nMiddleware.__init__:5 -#: aiogram.utils.i18n.middleware.FSMI18nMiddleware.__init__:5 -#: aiogram.utils.i18n.middleware.I18nMiddleware.__init__:5 -#: aiogram.utils.i18n.middleware.SimpleI18nMiddleware.__init__:5 of -msgid "context key for this middleware" -msgstr "" - -#: ../../utils/i18n.rst:104 -msgid "ConstI18nMiddleware" -msgstr "" - -#: aiogram.utils.i18n.middleware.ConstI18nMiddleware:1 of -msgid "Const middleware chooses statically defined locale" -msgstr "" - -#: ../../utils/i18n.rst:110 -msgid "FSMI18nMiddleware" -msgstr "" - -#: aiogram.utils.i18n.middleware.FSMI18nMiddleware:1 of -msgid "This middleware stores locale in the FSM storage" -msgstr "" - -#: aiogram.utils.i18n.middleware.FSMI18nMiddleware.set_locale:1 of -msgid "Write new locale to the storage" -msgstr "" - -#: aiogram.utils.i18n.middleware.FSMI18nMiddleware.set_locale:3 of -msgid "instance of FSMContext" -msgstr "" - -#: aiogram.utils.i18n.middleware.FSMI18nMiddleware.set_locale:4 of -msgid "new locale" -msgstr "" - -#: ../../utils/i18n.rst:117 -msgid "I18nMiddleware" -msgstr "" - -#: ../../utils/i18n.rst:119 -msgid "or define you own based on abstract I18nMiddleware middleware:" -msgstr "" - -#: aiogram.utils.i18n.middleware.I18nMiddleware:1 of -msgid "Abstract I18n middleware." -msgstr "" - -#: aiogram.utils.i18n.middleware.I18nMiddleware.get_locale:1 of -msgid "Detect current user locale based on event and context." -msgstr "" - -#: aiogram.utils.i18n.middleware.I18nMiddleware.get_locale:3 of -msgid "**This method must be defined in child classes**" -msgstr "" - -#: aiogram.utils.i18n.middleware.I18nMiddleware.get_locale -#: aiogram.utils.i18n.middleware.I18nMiddleware.setup of -msgid "Returns" -msgstr "" - -#: aiogram.utils.i18n.middleware.I18nMiddleware.setup:1 of -msgid "Register middleware for all events in the Router" -msgstr "" - -#: ../../utils/i18n.rst:126 -msgid "Deal with Babel" -msgstr "" - -#: ../../utils/i18n.rst:129 -msgid "Step 1 Extract messages" -msgstr "" - -#: ../../utils/i18n.rst:136 -msgid "" -"Here is :code:`--input-dirs=.` - path to code and the " -":code:`locales/messages.pot` is template where messages will be extracted" -" and `messages` is translation domain." -msgstr "" - -#: ../../utils/i18n.rst:141 -msgid "Some useful options:" -msgstr "" - -#: ../../utils/i18n.rst:143 -msgid "Extract texts with pluralization support :code:`-k __:1,2`" -msgstr "" - -#: ../../utils/i18n.rst:144 -msgid "" -"Add comments for translators, you can use another tag if you want (TR) " -":code:`--add-comments=NOTE`" -msgstr "" - -#: ../../utils/i18n.rst:145 -msgid "Disable comments with string location in code :code:`--no-location`" -msgstr "" - -#: ../../utils/i18n.rst:146 -msgid "Set project name :code:`--project=MySuperBot`" -msgstr "" - -#: ../../utils/i18n.rst:147 -msgid "Set version :code:`--version=2.2`" -msgstr "" - -#: ../../utils/i18n.rst:151 -msgid "Step 2: Init language" -msgstr "" - -#: ../../utils/i18n.rst:157 -msgid ":code:`-i locales/messages.pot` - pre-generated template" -msgstr "" - -#: ../../utils/i18n.rst:158 -msgid ":code:`-d locales` - translations directory" -msgstr "" - -#: ../../utils/i18n.rst:159 -msgid ":code:`-D messages` - translations domain" -msgstr "" - -#: ../../utils/i18n.rst:160 -msgid "" -":code:`-l en` - language. Can be changed to any other valid language code" -" (For example :code:`-l uk` for ukrainian language)" -msgstr "" - -#: ../../utils/i18n.rst:164 -msgid "Step 3: Translate texts" -msgstr "" - -#: ../../utils/i18n.rst:166 -msgid "" -"To open .po file you can use basic text editor or any PO editor, e.g. " -"`Poedit `_" -msgstr "" - -#: ../../utils/i18n.rst:168 -msgid "" -"Just open the file named " -":code:`locales/{language}/LC_MESSAGES/messages.po` and write translations" -msgstr "" - -#: ../../utils/i18n.rst:171 -msgid "Step 4: Compile translations" -msgstr "" - -#: ../../utils/i18n.rst:179 -msgid "Step 5: Updating messages" -msgstr "" - -#: ../../utils/i18n.rst:181 -msgid "When you change the code of your bot you need to update po & mo files" -msgstr "" - -#: ../../utils/i18n.rst:183 -msgid "Step 5.1: regenerate pot file: command from step 1" -msgstr "" - -#: ../../utils/i18n.rst:187 -msgid "Step 5.2: update po files" -msgstr "" - -#: ../../utils/i18n.rst:189 -msgid "" -"Step 5.3: update your translations: location and tools you know from step" -" 3" -msgstr "" - -#: ../../utils/i18n.rst:190 -msgid "Step 5.4: compile mo files: command from step 4" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/utils/index.po b/docs/locale/en/LC_MESSAGES/utils/index.po deleted file mode 100644 index 2ed18085..00000000 --- a/docs/locale/en/LC_MESSAGES/utils/index.po +++ /dev/null @@ -1,22 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../utils/index.rst:3 -msgid "Utils" -msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/utils/keyboard.po b/docs/locale/en/LC_MESSAGES/utils/keyboard.po deleted file mode 100644 index ea00376e..00000000 --- a/docs/locale/en/LC_MESSAGES/utils/keyboard.po +++ /dev/null @@ -1,178 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../utils/keyboard.rst:4 -msgid "Keyboard builder" -msgstr "" - -#: ../../utils/keyboard.rst:6 -msgid "Keyboard builder helps to dynamically generate markup." -msgstr "" - -#: ../../utils/keyboard.rst:10 -msgid "" -"Note that if you have static markup, it's best to define it explicitly " -"rather than using builder, but if you have dynamic markup configuration, " -"feel free to use builder as you wish." -msgstr "" - -#: ../../utils/keyboard.rst:15 -msgid "Usage example" -msgstr "" - -#: ../../utils/keyboard.rst:17 -msgid "For example you want to generate inline keyboard with 10 buttons" -msgstr "" - -#: ../../utils/keyboard.rst:27 -msgid "" -"then adjust this buttons to some grid, for example first line will have 3" -" buttons, the next lines will have 2 buttons" -msgstr "" - -#: ../../utils/keyboard.rst:33 -msgid "also you can attach another builder to this one" -msgstr "" - -#: ../../utils/keyboard.rst:40 -msgid "or you can attach some already generated markup" -msgstr "" - -#: ../../utils/keyboard.rst:47 -msgid "and finally you can export this markup to use it in your message" -msgstr "" - -#: ../../utils/keyboard.rst:53 -msgid "Reply keyboard builder has the same interface" -msgstr "" - -#: ../../utils/keyboard.rst:57 -msgid "" -"Note that you can't attach reply keyboard builder to inline keyboard " -"builder and vice versa" -msgstr "" - -#: ../../utils/keyboard.rst:61 -msgid "Inline Keyboard" -msgstr "" - -#: aiogram.utils.keyboard.InlineKeyboardBuilder:1 of -msgid "Inline keyboard builder inherits all methods from generic builder" -msgstr "" - -#: ../../utils/keyboard.rst:69 -msgid "Add new inline button to markup" -msgstr "" - -#: ../../utils/keyboard.rst:74 -msgid "Construct an InlineKeyboardMarkup" -msgstr "" - -#: aiogram.utils.keyboard.KeyboardBuilder.add:1 of -msgid "Add one or many buttons to markup." -msgstr "" - -#: aiogram.utils.keyboard.InlineKeyboardBuilder.from_markup -#: aiogram.utils.keyboard.KeyboardBuilder.add -#: aiogram.utils.keyboard.KeyboardBuilder.adjust -#: aiogram.utils.keyboard.KeyboardBuilder.row -#: aiogram.utils.keyboard.ReplyKeyboardBuilder.from_markup of -msgid "Parameters" -msgstr "" - -#: aiogram.utils.keyboard.InlineKeyboardBuilder.buttons -#: aiogram.utils.keyboard.InlineKeyboardBuilder.copy -#: aiogram.utils.keyboard.InlineKeyboardBuilder.from_markup -#: aiogram.utils.keyboard.KeyboardBuilder.add -#: aiogram.utils.keyboard.KeyboardBuilder.adjust -#: aiogram.utils.keyboard.KeyboardBuilder.export -#: aiogram.utils.keyboard.KeyboardBuilder.row -#: aiogram.utils.keyboard.ReplyKeyboardBuilder.buttons -#: aiogram.utils.keyboard.ReplyKeyboardBuilder.copy -#: aiogram.utils.keyboard.ReplyKeyboardBuilder.from_markup of -msgid "Returns" -msgstr "" - -#: aiogram.utils.keyboard.KeyboardBuilder.adjust:1 of -msgid "Adjust previously added buttons to specific row sizes." -msgstr "" - -#: aiogram.utils.keyboard.KeyboardBuilder.adjust:3 of -msgid "" -"By default, when the sum of passed sizes is lower than buttons count the " -"last one size will be used for tail of the markup. If repeat=True is " -"passed - all sizes will be cycled when available more buttons count than " -"all sizes" -msgstr "" - -#: aiogram.utils.keyboard.InlineKeyboardBuilder.buttons:1 -#: aiogram.utils.keyboard.ReplyKeyboardBuilder.buttons:1 of -msgid "Get flatten set of all buttons" -msgstr "" - -#: aiogram.utils.keyboard.InlineKeyboardBuilder.copy:1 -#: aiogram.utils.keyboard.ReplyKeyboardBuilder.copy:1 of -msgid "Make full copy of current builder with markup" -msgstr "" - -#: aiogram.utils.keyboard.KeyboardBuilder.export:1 of -msgid "Export configured markup as list of lists of buttons" -msgstr "" - -#: aiogram.utils.keyboard.InlineKeyboardBuilder.from_markup:1 -#: aiogram.utils.keyboard.ReplyKeyboardBuilder.from_markup:1 of -msgid "Create builder from existing markup" -msgstr "" - -#: aiogram.utils.keyboard.KeyboardBuilder.row:1 of -msgid "Add row to markup" -msgstr "" - -#: aiogram.utils.keyboard.KeyboardBuilder.row:3 of -msgid "When too much buttons is passed it will be separated to many rows" -msgstr "" - -#: ../../utils/keyboard.rst:77 -msgid "Reply Keyboard" -msgstr "" - -#: aiogram.utils.keyboard.ReplyKeyboardBuilder:1 of -msgid "Reply keyboard builder inherits all methods from generic builder" -msgstr "" - -#: ../../utils/keyboard.rst:85 -msgid "Add new button to markup" -msgstr "" - -#: ../../utils/keyboard.rst:90 -msgid "Construct an ReplyKeyboardMarkup" -msgstr "" - -#~ msgid "" -#~ "By default when the sum of passed" -#~ " sizes is lower than buttons count" -#~ " the last one size will be used" -#~ " for tail of the markup. If " -#~ "repeat=True is passed - all sizes " -#~ "will be cycled when available more " -#~ "buttons count than all sizes" -#~ msgstr "" - -#~ msgid "Base builder" -#~ msgstr "" diff --git a/docs/locale/en/LC_MESSAGES/utils/web_app.po b/docs/locale/en/LC_MESSAGES/utils/web_app.po deleted file mode 100644 index 617dd687..00000000 --- a/docs/locale/en/LC_MESSAGES/utils/web_app.po +++ /dev/null @@ -1,228 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022, aiogram Team -# This file is distributed under the same license as the aiogram package. -# FIRST AUTHOR , 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 \n" -"Language-Team: LANGUAGE \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" - -#: ../../utils/web_app.rst:3 -msgid "WebApp" -msgstr "" - -#: ../../utils/web_app.rst:5 -msgid "" -"Telegram Bot API 6.0 announces a revolution in the development of " -"chatbots using WebApp feature." -msgstr "" - -#: ../../utils/web_app.rst:7 -msgid "" -"You can read more details on it in the official `blog " -"`_ and " -"`documentation `_." -msgstr "" - -#: ../../utils/web_app.rst:10 -msgid "" -"`aiogram` implements simple utils to remove headache with the data " -"validation from Telegram WebApp on the backend side." -msgstr "" - -#: ../../utils/web_app.rst:13 -msgid "Usage" -msgstr "" - -#: ../../utils/web_app.rst:15 -msgid "" -"For example from frontend you will pass :code:`application/x-www-form-" -"urlencoded` POST request with :code:`_auth` field in body and wants to " -"return User info inside response as :code:`application/json`" -msgstr "" - -#: ../../utils/web_app.rst:35 -msgid "Functions" -msgstr "" - -#: aiogram.utils.web_app.check_webapp_signature:1 of -msgid "Check incoming WebApp init data signature" -msgstr "" - -#: aiogram.utils.web_app.check_webapp_signature:3 of -msgid "" -"Source: https://core.telegram.org/bots/webapps#validating-data-received-" -"via-the-web-app" -msgstr "" - -#: aiogram.utils.web_app.check_webapp_signature -#: aiogram.utils.web_app.parse_webapp_init_data -#: aiogram.utils.web_app.safe_parse_webapp_init_data of -msgid "Parameters" -msgstr "" - -#: aiogram.utils.web_app.check_webapp_signature:5 of -msgid "bot Token" -msgstr "" - -#: aiogram.utils.web_app.check_webapp_signature:6 of -msgid "data from frontend to be validated" -msgstr "" - -#: aiogram.utils.web_app.check_webapp_signature -#: aiogram.utils.web_app.parse_webapp_init_data -#: aiogram.utils.web_app.safe_parse_webapp_init_data of -msgid "Returns" -msgstr "" - -#: aiogram.utils.web_app.parse_webapp_init_data:1 of -msgid "Parse WebApp init data and return it as WebAppInitData object" -msgstr "" - -#: aiogram.utils.web_app.parse_webapp_init_data:3 of -msgid "" -"This method doesn't make any security check, so you shall not trust to " -"this data, use :code:`safe_parse_webapp_init_data` instead." -msgstr "" - -#: aiogram.utils.web_app.parse_webapp_init_data:6 of -msgid "data from frontend to be parsed" -msgstr "" - -#: aiogram.utils.web_app.safe_parse_webapp_init_data:1 of -msgid "Validate raw WebApp init data and return it as WebAppInitData object" -msgstr "" - -#: aiogram.utils.web_app.safe_parse_webapp_init_data:3 of -msgid "Raise :obj:`ValueError` when data is invalid" -msgstr "" - -#: aiogram.utils.web_app.safe_parse_webapp_init_data:5 of -msgid "bot token" -msgstr "" - -#: aiogram.utils.web_app.safe_parse_webapp_init_data:6 of -msgid "data from frontend to be parsed and validated" -msgstr "" - -#: ../../utils/web_app.rst:45 -msgid "Types" -msgstr "" - -#: aiogram.utils.web_app.WebAppInitData:1 of -msgid "" -"This object contains data that is transferred to the Web App when it is " -"opened. It is empty if the Web App was launched from a keyboard button." -msgstr "" - -#: aiogram.utils.web_app.WebAppInitData:4 of -msgid "Source: https://core.telegram.org/bots/webapps#webappinitdata" -msgstr "" - -#: ../../docstring aiogram.utils.web_app.WebAppInitData.query_id:1 of -msgid "" -"A unique identifier for the Web App session, required for sending " -"messages via the answerWebAppQuery method." -msgstr "" - -#: ../../docstring aiogram.utils.web_app.WebAppInitData.model_config:1 -#: aiogram.utils.web_app.WebAppUser.model_config:1 of -msgid "" -"Configuration for the model, should be a dictionary conforming to " -"[`ConfigDict`][pydantic.config.ConfigDict]." -msgstr "" - -#: ../../docstring aiogram.utils.web_app.WebAppInitData.model_fields:1 -#: aiogram.utils.web_app.WebAppUser.model_fields:1 of -msgid "" -"Metadata about the fields defined on the model, mapping of field names to" -" [`FieldInfo`][pydantic.fields.FieldInfo]." -msgstr "" - -#: ../../docstring aiogram.utils.web_app.WebAppInitData.model_fields:4 -#: aiogram.utils.web_app.WebAppUser.model_fields:4 of -msgid "This replaces `Model.__fields__` from Pydantic V1." -msgstr "" - -#: ../../docstring aiogram.utils.web_app.WebAppInitData.user:1 of -msgid "An object containing data about the current user." -msgstr "" - -#: ../../docstring aiogram.utils.web_app.WebAppInitData.receiver:1 of -msgid "" -"An object containing data about the chat partner of the current user in " -"the chat where the bot was launched via the attachment menu. Returned " -"only for Web Apps launched via the attachment menu." -msgstr "" - -#: ../../docstring aiogram.utils.web_app.WebAppInitData.start_param:1 of -msgid "" -"The value of the startattach parameter, passed via link. Only returned " -"for Web Apps when launched from the attachment menu via link. The value " -"of the start_param parameter will also be passed in the GET-parameter " -"tgWebAppStartParam, so the Web App can load the correct interface right " -"away." -msgstr "" - -#: ../../docstring aiogram.utils.web_app.WebAppInitData.auth_date:1 of -msgid "Unix time when the form was opened." -msgstr "" - -#: ../../docstring aiogram.utils.web_app.WebAppInitData.hash:1 of -msgid "" -"A hash of all passed parameters, which the bot server can use to check " -"their validity." -msgstr "" - -#: aiogram.utils.web_app.WebAppUser:1 of -msgid "This object contains the data of the Web App user." -msgstr "" - -#: aiogram.utils.web_app.WebAppUser:3 of -msgid "Source: https://core.telegram.org/bots/webapps#webappuser" -msgstr "" - -#: ../../docstring aiogram.utils.web_app.WebAppUser.id:1 of -msgid "" -"A unique identifier for the user or bot. This number may have more than " -"32 significant bits and some programming languages may have " -"difficulty/silent defects in interpreting it. It has at most 52 " -"significant bits, so a 64-bit integer or a double-precision float type is" -" safe for storing this identifier." -msgstr "" - -#: ../../docstring aiogram.utils.web_app.WebAppUser.is_bot:1 of -msgid "True, if this user is a bot. Returns in the receiver field only." -msgstr "" - -#: ../../docstring aiogram.utils.web_app.WebAppUser.first_name:1 of -msgid "First name of the user or bot." -msgstr "" - -#: ../../docstring aiogram.utils.web_app.WebAppUser.last_name:1 of -msgid "Last name of the user or bot." -msgstr "" - -#: ../../docstring aiogram.utils.web_app.WebAppUser.username:1 of -msgid "Username of the user or bot." -msgstr "" - -#: ../../docstring aiogram.utils.web_app.WebAppUser.language_code:1 of -msgid "IETF language tag of the user's language. Returns in user field only." -msgstr "" - -#: ../../docstring aiogram.utils.web_app.WebAppUser.photo_url:1 of -msgid "" -"URL of the user’s profile photo. The photo can be in .jpeg or .svg " -"formats. Only returned for Web Apps launched from the attachment menu." -msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/api/methods/ban_chat_member.po b/docs/locale/uk_UA/LC_MESSAGES/api/methods/ban_chat_member.po index 487b0d38..ed3552d1 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/api/methods/ban_chat_member.po +++ b/docs/locale/uk_UA/LC_MESSAGES/api/methods/ban_chat_member.po @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: aiogram \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-23 00:47+0200\n" +"POT-Creation-Date: 2023-10-08 19:04+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \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" +"Generated-By: Babel 2.12.1\n" #: ../../api/methods/ban_chat_member.rst:3 msgid "banChatMember" @@ -52,7 +52,7 @@ 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 " +"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." @@ -67,42 +67,42 @@ msgid "" ":code:`True` for supergroups and channels." msgstr "" -#: ../../api/methods/ban_chat_member.rst:14 +#: ../../api/methods/ban_chat_member.rst:15 msgid "Usage" msgstr "" -#: ../../api/methods/ban_chat_member.rst:17 +#: ../../api/methods/ban_chat_member.rst:18 msgid "As bot method" msgstr "" -#: ../../api/methods/ban_chat_member.rst:25 +#: ../../api/methods/ban_chat_member.rst:26 msgid "Method as object" msgstr "" -#: ../../api/methods/ban_chat_member.rst:27 +#: ../../api/methods/ban_chat_member.rst:28 msgid "Imports:" msgstr "" -#: ../../api/methods/ban_chat_member.rst:29 +#: ../../api/methods/ban_chat_member.rst:30 msgid ":code:`from aiogram.methods.ban_chat_member import BanChatMember`" msgstr "" -#: ../../api/methods/ban_chat_member.rst:30 +#: ../../api/methods/ban_chat_member.rst:31 msgid "alias: :code:`from aiogram.methods import BanChatMember`" msgstr "" -#: ../../api/methods/ban_chat_member.rst:33 +#: ../../api/methods/ban_chat_member.rst:34 msgid "With specific bot" msgstr "" -#: ../../api/methods/ban_chat_member.rst:40 +#: ../../api/methods/ban_chat_member.rst:41 msgid "As reply into Webhook in handler" msgstr "" -#: ../../api/methods/ban_chat_member.rst:48 +#: ../../api/methods/ban_chat_member.rst:49 msgid "As shortcut from received object" msgstr "" -#: ../../api/methods/ban_chat_member.rst:50 +#: ../../api/methods/ban_chat_member.rst:51 msgid ":meth:`aiogram.types.chat.Chat.ban`" msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/api/methods/restrict_chat_member.po b/docs/locale/uk_UA/LC_MESSAGES/api/methods/restrict_chat_member.po index 6ab0dc68..beed5bec 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/api/methods/restrict_chat_member.po +++ b/docs/locale/uk_UA/LC_MESSAGES/api/methods/restrict_chat_member.po @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: aiogram \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-12 00:22+0200\n" +"POT-Creation-Date: 2023-10-08 19:04+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" +"Generated-By: Babel 2.12.1\n" #: ../../api/methods/restrict_chat_member.rst:3 msgid "restrictChatMember" @@ -70,50 +70,58 @@ 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" +"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 +#: ../../api/methods/restrict_chat_member.rst:15 msgid "Usage" msgstr "" -#: ../../api/methods/restrict_chat_member.rst:17 +#: ../../api/methods/restrict_chat_member.rst:18 msgid "As bot method" msgstr "" -#: ../../api/methods/restrict_chat_member.rst:25 +#: ../../api/methods/restrict_chat_member.rst:26 msgid "Method as object" msgstr "" -#: ../../api/methods/restrict_chat_member.rst:27 +#: ../../api/methods/restrict_chat_member.rst:28 msgid "Imports:" msgstr "" -#: ../../api/methods/restrict_chat_member.rst:29 +#: ../../api/methods/restrict_chat_member.rst:30 msgid "" ":code:`from aiogram.methods.restrict_chat_member import " "RestrictChatMember`" msgstr "" -#: ../../api/methods/restrict_chat_member.rst:30 +#: ../../api/methods/restrict_chat_member.rst:31 msgid "alias: :code:`from aiogram.methods import RestrictChatMember`" msgstr "" -#: ../../api/methods/restrict_chat_member.rst:33 +#: ../../api/methods/restrict_chat_member.rst:34 msgid "With specific bot" msgstr "" -#: ../../api/methods/restrict_chat_member.rst:40 +#: ../../api/methods/restrict_chat_member.rst:41 msgid "As reply into Webhook in handler" msgstr "" -#: ../../api/methods/restrict_chat_member.rst:48 +#: ../../api/methods/restrict_chat_member.rst:49 msgid "As shortcut from received object" msgstr "" -#: ../../api/methods/restrict_chat_member.rst:50 +#: ../../api/methods/restrict_chat_member.rst:51 msgid ":meth:`aiogram.types.chat.Chat.restrict`" msgstr "" +#~ 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 "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/api/types/chat.po b/docs/locale/uk_UA/LC_MESSAGES/api/types/chat.po index 9628f5ea..c44c2853 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/api/types/chat.po +++ b/docs/locale/uk_UA/LC_MESSAGES/api/types/chat.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: aiogram \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-26 23:17+0300\n" +"POT-Creation-Date: 2023-10-08 19:04+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -91,7 +91,7 @@ msgstr "" #: ../../docstring aiogram.types.chat.Chat.emoji_status_expiration_date:1 of msgid "" "*Optional*. Expiration date of the emoji status of the other party in a " -"private chat, if any. Returned only in " +"private chat in Unix time, if any. Returned only in " ":class:`aiogram.methods.get_chat.GetChat`." msgstr "" @@ -1087,7 +1087,7 @@ msgstr "" #: aiogram.types.chat.Chat.restrict:13 of msgid "" -"Date when restrictions will be lifted for the user, unix time. If user is" +"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 "" @@ -1154,7 +1154,7 @@ msgstr "" #: aiogram.types.chat.Chat.ban:11 of msgid "" -"Date when the user will be unbanned, unix time. If user is banned for " +"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." @@ -1324,3 +1324,29 @@ msgstr "" #~ "by administrators that were appointed by" #~ " him)" #~ msgstr "" + +#~ msgid "" +#~ "*Optional*. Expiration date of the emoji" +#~ " status of the other party in a" +#~ " private chat, if any. Returned only" +#~ " in :class:`aiogram.methods.get_chat.GetChat`." +#~ msgstr "" + +#~ 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 "" + +#~ 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 "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/api/types/chat_administrator_rights.po b/docs/locale/uk_UA/LC_MESSAGES/api/types/chat_administrator_rights.po index 519189b1..9a336d08 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/api/types/chat_administrator_rights.po +++ b/docs/locale/uk_UA/LC_MESSAGES/api/types/chat_administrator_rights.po @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: aiogram \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-12 00:22+0200\n" +"POT-Creation-Date: 2023-10-08 19:04+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" +"Generated-By: Babel 2.12.1\n" #: ../../api/types/chat_administrator_rights.rst:3 msgid "ChatAdministratorRights" @@ -40,9 +40,9 @@ msgstr "" #: of msgid "" ":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" +"statistics, boost list in channels, message statistics in channels, see " +"channel members, see anonymous administrators in supergroups and ignore " +"slow mode. Implied by any other administrator privilege" msgstr "" #: ../../docstring @@ -91,8 +91,8 @@ msgstr "" #: aiogram.types.chat_administrator_rights.ChatAdministratorRights.can_post_messages:1 #: of msgid "" -"*Optional*. :code:`True`, if the administrator can post in the channel; " -"channels only" +"*Optional*. :code:`True`, if the administrator can post messages in the " +"channel; channels only" msgstr "" #: ../../docstring @@ -111,6 +111,30 @@ msgid "" "and supergroups only" msgstr "" +#: ../../docstring +#: aiogram.types.chat_administrator_rights.ChatAdministratorRights.can_post_stories:1 +#: of +msgid "" +"*Optional*. :code:`True`, if the administrator can post stories in the " +"channel; channels only" +msgstr "" + +#: ../../docstring +#: aiogram.types.chat_administrator_rights.ChatAdministratorRights.can_edit_stories:1 +#: of +msgid "" +"*Optional*. :code:`True`, if the administrator can edit stories posted by" +" other users; channels only" +msgstr "" + +#: ../../docstring +#: aiogram.types.chat_administrator_rights.ChatAdministratorRights.can_delete_stories:1 +#: of +msgid "" +"*Optional*. :code:`True`, if the administrator can delete stories posted " +"by other users" +msgstr "" + #: ../../docstring #: aiogram.types.chat_administrator_rights.ChatAdministratorRights.can_manage_topics:1 #: of @@ -129,3 +153,18 @@ msgstr "" #~ "the user)" #~ msgstr "" +#~ msgid "" +#~ ":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 "" + +#~ msgid "" +#~ "*Optional*. :code:`True`, if the administrator" +#~ " can post in the channel; channels" +#~ " only" +#~ msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/api/types/chat_member_administrator.po b/docs/locale/uk_UA/LC_MESSAGES/api/types/chat_member_administrator.po index 8d56701a..ccd470cf 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/api/types/chat_member_administrator.po +++ b/docs/locale/uk_UA/LC_MESSAGES/api/types/chat_member_administrator.po @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: aiogram \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-12 00:22+0200\n" +"POT-Creation-Date: 2023-10-08 19:04+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" +"Generated-By: Babel 2.12.1\n" #: ../../api/types/chat_member_administrator.rst:3 msgid "ChatMemberAdministrator" @@ -61,9 +61,9 @@ msgstr "" #: of msgid "" ":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" +"statistics, boost list in channels, message statistics in channels, see " +"channel members, see anonymous administrators in supergroups and ignore " +"slow mode. Implied by any other administrator privilege" msgstr "" #: ../../docstring @@ -112,8 +112,8 @@ msgstr "" #: aiogram.types.chat_member_administrator.ChatMemberAdministrator.can_post_messages:1 #: of msgid "" -"*Optional*. :code:`True`, if the administrator can post in the channel; " -"channels only" +"*Optional*. :code:`True`, if the administrator can post messages in the " +"channel; channels only" msgstr "" #: ../../docstring @@ -132,6 +132,30 @@ msgid "" "and supergroups only" msgstr "" +#: ../../docstring +#: aiogram.types.chat_member_administrator.ChatMemberAdministrator.can_post_stories:1 +#: of +msgid "" +"*Optional*. :code:`True`, if the administrator can post stories in the " +"channel; channels only" +msgstr "" + +#: ../../docstring +#: aiogram.types.chat_member_administrator.ChatMemberAdministrator.can_edit_stories:1 +#: of +msgid "" +"*Optional*. :code:`True`, if the administrator can edit stories posted by" +" other users; channels only" +msgstr "" + +#: ../../docstring +#: aiogram.types.chat_member_administrator.ChatMemberAdministrator.can_delete_stories:1 +#: of +msgid "" +"*Optional*. :code:`True`, if the administrator can delete stories posted " +"by other users" +msgstr "" + #: ../../docstring #: aiogram.types.chat_member_administrator.ChatMemberAdministrator.can_manage_topics:1 #: of @@ -156,3 +180,18 @@ msgstr "" #~ "the user)" #~ msgstr "" +#~ msgid "" +#~ ":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 "" + +#~ msgid "" +#~ "*Optional*. :code:`True`, if the administrator" +#~ " can post in the channel; channels" +#~ " only" +#~ msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/api/types/chat_member_banned.po b/docs/locale/uk_UA/LC_MESSAGES/api/types/chat_member_banned.po index 5b7267fb..4f3224f7 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/api/types/chat_member_banned.po +++ b/docs/locale/uk_UA/LC_MESSAGES/api/types/chat_member_banned.po @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: aiogram \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-01 22:51+0300\n" +"POT-Creation-Date: 2023-10-08 19:04+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \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" +"Generated-By: Babel 2.12.1\n" #: ../../api/types/chat_member_banned.rst:3 msgid "ChatMemberBanned" @@ -44,6 +44,12 @@ msgstr "" #: ../../docstring #: aiogram.types.chat_member_banned.ChatMemberBanned.until_date:1 of msgid "" -"Date when restrictions will be lifted for this user; unix time. If 0, " +"Date when restrictions will be lifted for this user; Unix time. If 0, " "then the user is banned forever" msgstr "" + +#~ msgid "" +#~ "Date when restrictions will be lifted" +#~ " for this user; unix time. If " +#~ "0, then the user is banned forever" +#~ msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/api/types/chat_member_restricted.po b/docs/locale/uk_UA/LC_MESSAGES/api/types/chat_member_restricted.po index 052a4b20..cdfa2d34 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/api/types/chat_member_restricted.po +++ b/docs/locale/uk_UA/LC_MESSAGES/api/types/chat_member_restricted.po @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: aiogram \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-12 00:22+0200\n" +"POT-Creation-Date: 2023-10-08 19:04+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" +"Generated-By: Babel 2.12.1\n" #: ../../api/types/chat_member_restricted.rst:3 msgid "ChatMemberRestricted" @@ -144,7 +144,7 @@ msgstr "" #: ../../docstring #: aiogram.types.chat_member_restricted.ChatMemberRestricted.until_date:1 of msgid "" -"Date when restrictions will be lifted for this user; unix time. If 0, " +"Date when restrictions will be lifted for this user; Unix time. If 0, " "then the user is restricted forever" msgstr "" @@ -160,3 +160,9 @@ msgstr "" #~ "videos, video notes and voice notes" #~ msgstr "" +#~ msgid "" +#~ "Date when restrictions will be lifted" +#~ " for this user; unix time. If " +#~ "0, then the user is restricted " +#~ "forever" +#~ msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/api/types/inline_query_results_button.po b/docs/locale/uk_UA/LC_MESSAGES/api/types/inline_query_results_button.po index 3dcf4f0f..5a323f31 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/api/types/inline_query_results_button.po +++ b/docs/locale/uk_UA/LC_MESSAGES/api/types/inline_query_results_button.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: aiogram \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-02 15:10+0300\n" +"POT-Creation-Date: 2023-10-08 19:04+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -44,7 +44,7 @@ msgid "" "`_ that will be launched when the" " user presses the button. The Web App will be able to switch back to the " "inline mode using the method `switchInlineQuery " -"`_ inside " +"`_ inside " "the Web App." msgstr "" @@ -57,3 +57,15 @@ msgid "" "presses the button. 1-64 characters, only :code:`A-Z`, :code:`a-z`, " ":code:`0-9`, :code:`_` and :code:`-` are allowed." msgstr "" + +#~ msgid "" +#~ "*Optional*. Description of the `Web App" +#~ " `_ that will" +#~ " be launched when the user presses" +#~ " the button. The Web App will " +#~ "be able to switch back to the " +#~ "inline mode using the method " +#~ "`switchInlineQuery `_ inside the Web" +#~ " App." +#~ msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/api/types/message.po b/docs/locale/uk_UA/LC_MESSAGES/api/types/message.po index 8c20ee62..a16856de 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/api/types/message.po +++ b/docs/locale/uk_UA/LC_MESSAGES/api/types/message.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: aiogram \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-26 23:17+0300\n" +"POT-Creation-Date: 2023-10-08 19:04+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -349,8 +349,11 @@ msgstr "" #: ../../docstring aiogram.types.message.Message.write_access_allowed:1 of msgid "" -"*Optional*. Service message: the user allowed the bot added to the " -"attachment menu to write messages" +"*Optional*. Service message: the user allowed the bot to write messages " +"after adding it to the attachment or side menu, launching a Web App from " +"a link, or accepting an explicit request from a Web App sent by the " +"method `requestWriteAccess `_" msgstr "" #: ../../docstring aiogram.types.message.Message.passport_data:1 of @@ -2589,3 +2592,9 @@ msgstr "" #~ " implemented before the similar method " #~ "is added to API" #~ msgstr "" + +#~ msgid "" +#~ "*Optional*. Service message: the user " +#~ "allowed the bot added to the " +#~ "attachment menu to write messages" +#~ msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/api/types/web_app_info.po b/docs/locale/uk_UA/LC_MESSAGES/api/types/web_app_info.po index 4a2e122f..912f766a 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/api/types/web_app_info.po +++ b/docs/locale/uk_UA/LC_MESSAGES/api/types/web_app_info.po @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: aiogram \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-01 22:51+0300\n" +"POT-Creation-Date: 2023-10-08 19:04+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \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" +"Generated-By: Babel 2.12.1\n" #: ../../api/types/web_app_info.rst:3 msgid "WebAppInfo" @@ -33,5 +33,13 @@ msgstr "" msgid "" "An HTTPS URL of a Web App to be opened with additional data as specified " "in `Initializing Web Apps `_" +"#initializing-mini-apps>`_" msgstr "" + +#~ msgid "" +#~ "An HTTPS URL of a Web App to" +#~ " be opened with additional data as" +#~ " specified in `Initializing Web Apps " +#~ "`_" +#~ msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/api/types/write_access_allowed.po b/docs/locale/uk_UA/LC_MESSAGES/api/types/write_access_allowed.po index 4fee2157..1378b6ea 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/api/types/write_access_allowed.po +++ b/docs/locale/uk_UA/LC_MESSAGES/api/types/write_access_allowed.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: aiogram \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-07-02 15:10+0300\n" +"POT-Creation-Date: 2023-10-08 19:04+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -24,17 +24,37 @@ msgstr "" #: aiogram.types.write_access_allowed.WriteAccessAllowed:1 of msgid "" "This object represents a service message about a user allowing a bot to " -"write messages after adding the bot to the attachment menu or launching a" -" Web App from a link." +"write messages after adding it to the attachment menu, launching a Web " +"App from a link, or accepting an explicit request from a Web App sent by " +"the method `requestWriteAccess `_." msgstr "" #: aiogram.types.write_access_allowed.WriteAccessAllowed:3 of msgid "Source: https://core.telegram.org/bots/api#writeaccessallowed" msgstr "" +#: ../../docstring +#: aiogram.types.write_access_allowed.WriteAccessAllowed.from_request:1 of +msgid "" +"*Optional*. True, if the access was granted after the user accepted an " +"explicit request from a Web App sent by the method `requestWriteAccess " +"`_" +msgstr "" + #: ../../docstring #: aiogram.types.write_access_allowed.WriteAccessAllowed.web_app_name:1 of -msgid "*Optional*. Name of the Web App which was launched from a link" +msgid "" +"*Optional*. Name of the Web App, if the access was granted when the Web " +"App was launched from a link" +msgstr "" + +#: ../../docstring +#: aiogram.types.write_access_allowed.WriteAccessAllowed.from_attachment_menu:1 +#: of +msgid "" +"*Optional*. True, if the access was granted when the bot was added to the" +" attachment or side menu" msgstr "" #~ msgid "" @@ -44,3 +64,14 @@ msgstr "" #~ "write messages. Currently holds no " #~ "information." #~ msgstr "" + +#~ msgid "" +#~ "This object represents a service message" +#~ " about a user allowing a bot to" +#~ " write messages after adding the bot" +#~ " to the attachment menu or launching" +#~ " a Web App from a link." +#~ msgstr "" + +#~ msgid "*Optional*. Name of the Web App which was launched from a link" +#~ msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/changelog.po b/docs/locale/uk_UA/LC_MESSAGES/changelog.po index e22fe009..0d08487c 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/changelog.po +++ b/docs/locale/uk_UA/LC_MESSAGES/changelog.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: aiogram \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-26 23:17+0300\n" +"POT-Creation-Date: 2023-10-08 19:04+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,149 +22,276 @@ msgid "Changelog" msgstr "" #: ../../[towncrier-fragments]:2 -msgid "\\ |release| [UNRELEASED DRAFT] (2023-08-26)" +msgid "\\ |release| [UNRELEASED DRAFT] (2023-10-08)" msgstr "" -#: ../../../CHANGES.rst:23 ../../../CHANGES.rst:92 ../../../CHANGES.rst:137 -#: ../../../CHANGES.rst:207 ../../../CHANGES.rst:393 ../../../CHANGES.rst:456 -#: ../../../CHANGES.rst:505 ../../../CHANGES.rst:566 ../../../CHANGES.rst:624 -#: ../../../CHANGES.rst:670 ../../../CHANGES.rst:718 ../../../CHANGES.rst:774 -#: ../../../CHANGES.rst:859 ../../../CHANGES.rst:891 +#: ../../../CHANGES.rst:23 ../../../CHANGES.rst:44 ../../../CHANGES.rst:56 +#: ../../../CHANGES.rst:77 ../../../CHANGES.rst:146 ../../../CHANGES.rst:191 +#: ../../../CHANGES.rst:261 ../../../CHANGES.rst:447 ../../../CHANGES.rst:510 +#: ../../../CHANGES.rst:559 ../../../CHANGES.rst:620 ../../../CHANGES.rst:678 +#: ../../../CHANGES.rst:724 ../../../CHANGES.rst:772 ../../../CHANGES.rst:828 +#: ../../../CHANGES.rst:913 ../../../CHANGES.rst:945 #: ../../[towncrier-fragments]:5 msgid "Bugfixes" msgstr "" #: ../../[towncrier-fragments]:7 msgid "" +"Fixed ``parse_mode`` in ``send_copy`` helper. Disable by default. `#1332 " +"`_" +msgstr "" + +#: ../../../CHANGES.rst:89 ../../../CHANGES.rst:159 ../../../CHANGES.rst:204 +#: ../../../CHANGES.rst:289 ../../../CHANGES.rst:522 ../../../CHANGES.rst:572 +#: ../../../CHANGES.rst:952 ../../[towncrier-fragments]:12 +msgid "Improved Documentation" +msgstr "" + +#: ../../[towncrier-fragments]:14 +msgid "" +"Corrected grammatical errors, improved sentence structures, translation " +"for migration 2.x-3.x `#1302 " +"`_" +msgstr "" + +#: ../../../CHANGES.rst:110 ../../../CHANGES.rst:166 ../../../CHANGES.rst:305 +#: ../../../CHANGES.rst:456 ../../../CHANGES.rst:533 ../../../CHANGES.rst:586 +#: ../../../CHANGES.rst:637 ../../../CHANGES.rst:691 ../../../CHANGES.rst:733 +#: ../../../CHANGES.rst:779 ../../../CHANGES.rst:839 ../../../CHANGES.rst:860 +#: ../../../CHANGES.rst:883 ../../../CHANGES.rst:920 ../../../CHANGES.rst:959 +#: ../../[towncrier-fragments]:19 +msgid "Misc" +msgstr "" + +#: ../../[towncrier-fragments]:21 +msgid "Updated dependencies, bumped minimum required version:" +msgstr "" + +#: ../../[towncrier-fragments]:23 +msgid ":code:`magic-filter` - fixed `.resolve` operation" +msgstr "" + +#: ../../[towncrier-fragments]:24 +msgid ":code:`pydantic` - fixed compatibility (broken in 2.4)" +msgstr "" + +#: ../../[towncrier-fragments]:25 +msgid "" +":code:`aiodns` - added new dependency to the :code:`fast` extras " +"(:code:`pip install aiogram[fast]`)" +msgstr "" + +#: ../../[towncrier-fragments]:26 +msgid "*others...*" +msgstr "" + +#: ../../[towncrier-fragments]:27 +msgid "`#1327 `_" +msgstr "" + +#: ../../[towncrier-fragments]:28 +msgid "" +"Prevent update handling task pointers from being garbage collected, " +"backport from 2.x `#1331 " +"`_" +msgstr "" + +#: ../../../CHANGES.rst:20 +msgid "3.1.1 (2023-09-25)" +msgstr "" + +#: ../../../CHANGES.rst:25 +msgid "" +"Fixed `pydantic` version <2.4, since 2.4 has breaking changes. `#1322 " +"`_" +msgstr "" + +#: ../../../CHANGES.rst:30 +msgid "3.1.0 (2023-09-22)" +msgstr "" + +#: ../../../CHANGES.rst:33 ../../../CHANGES.rst:122 ../../../CHANGES.rst:180 +#: ../../../CHANGES.rst:222 ../../../CHANGES.rst:385 ../../../CHANGES.rst:485 +#: ../../../CHANGES.rst:545 ../../../CHANGES.rst:596 ../../../CHANGES.rst:669 +#: ../../../CHANGES.rst:710 ../../../CHANGES.rst:748 ../../../CHANGES.rst:796 +#: ../../../CHANGES.rst:872 ../../../CHANGES.rst:905 ../../../CHANGES.rst:936 +msgid "Features" +msgstr "" + +#: ../../../CHANGES.rst:35 +msgid "" +"Added support for custom encoders/decoders for payload (and also for " +"deep-linking). `#1262 `_" +msgstr "" + +#: ../../../CHANGES.rst:37 +msgid "" +"Added :class:`aiogram.utils.input_media.MediaGroupBuilder` for media " +"group construction. `#1293 " +"`_" +msgstr "" + +#: ../../../CHANGES.rst:39 +msgid "" +"Added full support of `Bot API 6.9 `_ `#1319 " +"`_" +msgstr "" + +#: ../../../CHANGES.rst:46 +msgid "" +"Added actual param hints for `InlineKeyboardBuilder` and " +"`ReplyKeyboardBuilder`. `#1303 " +"`_" +msgstr "" + +#: ../../../CHANGES.rst:48 +msgid "" +"Fixed priority of events isolation, now user state will be loaded only " +"after lock is acquired `#1317 " +"`_" +msgstr "" + +#: ../../../CHANGES.rst:53 +msgid "3.0.0 (2023-09-01)" +msgstr "" + +#: ../../../CHANGES.rst:58 +msgid "" +"Replaced :code:`datetime.datetime` with `DateTime` type wrapper across " +"types to make dumped JSONs object more compatible with data that is sent " +"by Telegram. `#1277 `_" +msgstr "" + +#: ../../../CHANGES.rst:61 +msgid "" "Fixed magic :code:`.as_(...)` operation for values that can be " "interpreted as `False` (e.g. `0`). `#1281 " "`_" msgstr "" -#: ../../[towncrier-fragments]:9 +#: ../../../CHANGES.rst:63 msgid "" "Italic markdown from utils now uses correct decorators `#1282 " "`_" msgstr "" -#: ../../../CHANGES.rst:20 +#: ../../../CHANGES.rst:65 +msgid "" +"Fixed method :code:`Message.send_copy` for stickers. `#1284 " +"`_" +msgstr "" + +#: ../../../CHANGES.rst:67 +msgid "" +"Fixed :code:`Message.send_copy` method, which was not working properly " +"with stories, so not you can copy stories too (forwards messages). `#1286" +" `_" +msgstr "" + +#: ../../../CHANGES.rst:69 +msgid "" +"Fixed error overlapping when validation error is caused by remove_unset " +"root validator in base types and methods. `#1290 " +"`_" +msgstr "" + +#: ../../../CHANGES.rst:74 msgid "3.0.0rc2 (2023-08-18)" msgstr "" -#: ../../../CHANGES.rst:25 +#: ../../../CHANGES.rst:79 msgid "" "Fixed missing message content types (:code:`ContentType.USER_SHARED`, " ":code:`ContentType.CHAT_SHARED`) `#1252 " "`_" msgstr "" -#: ../../../CHANGES.rst:27 +#: ../../../CHANGES.rst:81 msgid "" "Fixed nested hashtag, cashtag and email message entities not being parsed" " correctly when these entities are inside another entity. `#1259 " "`_" msgstr "" -#: ../../../CHANGES.rst:29 +#: ../../../CHANGES.rst:83 msgid "" "Moved global filters check placement into router to add chance to pass " "context from global filters into handlers in the same way as it possible " "in other places `#1266 `_" msgstr "" -#: ../../../CHANGES.rst:35 ../../../CHANGES.rst:105 ../../../CHANGES.rst:150 -#: ../../../CHANGES.rst:235 ../../../CHANGES.rst:468 ../../../CHANGES.rst:518 -#: ../../../CHANGES.rst:898 -msgid "Improved Documentation" -msgstr "" - -#: ../../../CHANGES.rst:37 +#: ../../../CHANGES.rst:91 msgid "" "Added error handling example `examples/error_handling.py` `#1099 " "`_" msgstr "" -#: ../../../CHANGES.rst:39 +#: ../../../CHANGES.rst:93 msgid "" "Added a few words about skipping pending updates `#1251 " "`_" msgstr "" -#: ../../../CHANGES.rst:41 +#: ../../../CHANGES.rst:95 msgid "" "Added a section on Dependency Injection technology `#1253 " "`_" msgstr "" -#: ../../../CHANGES.rst:43 +#: ../../../CHANGES.rst:97 msgid "" "This update includes the addition of a multi-file bot example to the " "repository. `#1254 `_" msgstr "" -#: ../../../CHANGES.rst:45 +#: ../../../CHANGES.rst:99 msgid "" "Refactored examples code to use aiogram enumerations and enhanced chat " "messages with markdown beautification's for a more user-friendly display." " `#1256 `_" msgstr "" -#: ../../../CHANGES.rst:48 +#: ../../../CHANGES.rst:102 msgid "" "Supplemented \"Finite State Machine\" section in Migration FAQ `#1264 " "`_" msgstr "" -#: ../../../CHANGES.rst:50 +#: ../../../CHANGES.rst:104 msgid "" "Removed extra param in docstring of TelegramEventObserver's filter method" " and fixed typo in I18n documentation. `#1268 " "`_" msgstr "" -#: ../../../CHANGES.rst:56 ../../../CHANGES.rst:112 ../../../CHANGES.rst:251 -#: ../../../CHANGES.rst:402 ../../../CHANGES.rst:479 ../../../CHANGES.rst:532 -#: ../../../CHANGES.rst:583 ../../../CHANGES.rst:637 ../../../CHANGES.rst:679 -#: ../../../CHANGES.rst:725 ../../../CHANGES.rst:785 ../../../CHANGES.rst:806 -#: ../../../CHANGES.rst:829 ../../../CHANGES.rst:866 ../../../CHANGES.rst:905 -msgid "Misc" -msgstr "" - -#: ../../../CHANGES.rst:58 +#: ../../../CHANGES.rst:112 msgid "" "Enhanced the warning message in dispatcher to include a JSON dump of the " "update when update type is not known. `#1269 " "`_" msgstr "" -#: ../../../CHANGES.rst:60 +#: ../../../CHANGES.rst:114 msgid "" "Added support for `Bot API 6.8 `_ `#1275 " "`_" msgstr "" -#: ../../../CHANGES.rst:65 +#: ../../../CHANGES.rst:119 msgid "3.0.0rc1 (2023-08-06)" msgstr "" -#: ../../../CHANGES.rst:68 ../../../CHANGES.rst:126 ../../../CHANGES.rst:168 -#: ../../../CHANGES.rst:331 ../../../CHANGES.rst:431 ../../../CHANGES.rst:491 -#: ../../../CHANGES.rst:542 ../../../CHANGES.rst:615 ../../../CHANGES.rst:656 -#: ../../../CHANGES.rst:694 ../../../CHANGES.rst:742 ../../../CHANGES.rst:818 -#: ../../../CHANGES.rst:851 ../../../CHANGES.rst:882 -msgid "Features" -msgstr "" - -#: ../../../CHANGES.rst:70 +#: ../../../CHANGES.rst:124 msgid "Added Currency enum. You can use it like this:" msgstr "" -#: ../../../CHANGES.rst:82 +#: ../../../CHANGES.rst:136 msgid "`#1194 `_" msgstr "" -#: ../../../CHANGES.rst:83 +#: ../../../CHANGES.rst:137 msgid "" "Updated keyboard builders with new methods for integrating buttons and " "keyboard creation more seamlessly. Added functionality to create buttons " @@ -173,45 +300,45 @@ msgid "" "`#1236 `_" msgstr "" -#: ../../../CHANGES.rst:87 +#: ../../../CHANGES.rst:141 msgid "" "Added support for message_thread_id in ChatActionSender `#1249 " "`_" msgstr "" -#: ../../../CHANGES.rst:94 +#: ../../../CHANGES.rst:148 msgid "" "Fixed polling startup when \"bot\" key is passed manually into dispatcher" " workflow data `#1242 `_" msgstr "" -#: ../../../CHANGES.rst:96 +#: ../../../CHANGES.rst:150 msgid "Added codegen configuration for lost shortcuts:" msgstr "" -#: ../../../CHANGES.rst:98 +#: ../../../CHANGES.rst:152 msgid "ShippingQuery.answer" msgstr "" -#: ../../../CHANGES.rst:99 +#: ../../../CHANGES.rst:153 msgid "PreCheckoutQuery.answer" msgstr "" -#: ../../../CHANGES.rst:100 +#: ../../../CHANGES.rst:154 msgid "Message.delete_reply_markup" msgstr "" -#: ../../../CHANGES.rst:101 +#: ../../../CHANGES.rst:155 msgid "`#1244 `_" msgstr "" -#: ../../../CHANGES.rst:107 +#: ../../../CHANGES.rst:161 msgid "" "Added documentation for webhook and polling modes. `#1241 " "`_" msgstr "" -#: ../../../CHANGES.rst:114 +#: ../../../CHANGES.rst:168 msgid "" "Reworked InputFile reading, removed :code:`__aiter__` method, added `bot:" " Bot` argument to the :code:`.read(...)` method, so, from now " @@ -219,18 +346,18 @@ msgid "" "`_" msgstr "" -#: ../../../CHANGES.rst:118 +#: ../../../CHANGES.rst:172 msgid "" "Code-generated :code:`__init__` typehints in types and methods to make " "IDE happy without additional pydantic plugin `#1245 " "`_" msgstr "" -#: ../../../CHANGES.rst:123 +#: ../../../CHANGES.rst:177 msgid "3.0.0b9 (2023-07-30)" msgstr "" -#: ../../../CHANGES.rst:128 +#: ../../../CHANGES.rst:182 msgid "" "Added new shortcuts for " ":class:`aiogram.types.chat_member_updated.ChatMemberUpdated` to send " @@ -238,7 +365,7 @@ msgid "" "`_" msgstr "" -#: ../../../CHANGES.rst:131 +#: ../../../CHANGES.rst:185 msgid "" "Added new shortcuts for " ":class:`aiogram.types.chat_join_request.ChatJoinRequest` to make easier " @@ -246,13 +373,13 @@ msgid "" "`_" msgstr "" -#: ../../../CHANGES.rst:139 +#: ../../../CHANGES.rst:193 msgid "" "Fixed bot assignment in the :code:`Message.send_copy` shortcut `#1232 " "`_" msgstr "" -#: ../../../CHANGES.rst:141 +#: ../../../CHANGES.rst:195 msgid "" "Added model validation to remove UNSET before field validation. This " "change was necessary to correctly handle parse_mode where 'UNSET' is used" @@ -262,21 +389,21 @@ msgid "" "`_" msgstr "" -#: ../../../CHANGES.rst:146 +#: ../../../CHANGES.rst:200 msgid "Updated pydantic to 2.1 with few bugfixes" msgstr "" -#: ../../../CHANGES.rst:152 +#: ../../../CHANGES.rst:206 msgid "" "Improved docs, added basic migration guide (will be expanded later) " "`#1143 `_" msgstr "" -#: ../../../CHANGES.rst:157 ../../../CHANGES.rst:242 ../../../CHANGES.rst:525 +#: ../../../CHANGES.rst:211 ../../../CHANGES.rst:296 ../../../CHANGES.rst:579 msgid "Deprecations and Removals" msgstr "" -#: ../../../CHANGES.rst:159 +#: ../../../CHANGES.rst:213 msgid "" "Removed the use of the context instance (Bot.get_current) from all " "placements that were used previously. This is to avoid the use of the " @@ -284,78 +411,78 @@ msgid "" "`_" msgstr "" -#: ../../../CHANGES.rst:165 +#: ../../../CHANGES.rst:219 msgid "3.0.0b8 (2023-07-17)" msgstr "" -#: ../../../CHANGES.rst:170 +#: ../../../CHANGES.rst:224 msgid "" "Added possibility to use custom events in routers (If router does not " "support custom event it does not break and passes it to included " "routers). `#1147 `_" msgstr "" -#: ../../../CHANGES.rst:172 +#: ../../../CHANGES.rst:226 msgid "Added support for FSM in Forum topics." msgstr "" -#: ../../../CHANGES.rst:174 +#: ../../../CHANGES.rst:228 msgid "The strategy can be changed in dispatcher:" msgstr "" -#: ../../../CHANGES.rst:187 +#: ../../../CHANGES.rst:241 msgid "" "If you have implemented you own storages you should extend record key " "generation with new one attribute - :code:`thread_id`" msgstr "" -#: ../../../CHANGES.rst:189 +#: ../../../CHANGES.rst:243 msgid "`#1161 `_" msgstr "" -#: ../../../CHANGES.rst:190 +#: ../../../CHANGES.rst:244 msgid "Improved CallbackData serialization." msgstr "" -#: ../../../CHANGES.rst:192 +#: ../../../CHANGES.rst:246 msgid "Minimized UUID (hex without dashes)" msgstr "" -#: ../../../CHANGES.rst:193 +#: ../../../CHANGES.rst:247 msgid "Replaced bool values with int (true=1, false=0)" msgstr "" -#: ../../../CHANGES.rst:194 +#: ../../../CHANGES.rst:248 msgid "`#1163 `_" msgstr "" -#: ../../../CHANGES.rst:195 +#: ../../../CHANGES.rst:249 msgid "" "Added a tool to make text formatting flexible and easy. More details on " "the :ref:`corresponding documentation page ` `#1172 " "`_" msgstr "" -#: ../../../CHANGES.rst:198 +#: ../../../CHANGES.rst:252 msgid "" "Added :code:`X-Telegram-Bot-Api-Secret-Token` header check `#1173 " "`_" msgstr "" -#: ../../../CHANGES.rst:200 +#: ../../../CHANGES.rst:254 msgid "" "Made :code:`allowed_updates` list to revolve automatically in " "start_polling method if not set explicitly. `#1178 " "`_" msgstr "" -#: ../../../CHANGES.rst:202 +#: ../../../CHANGES.rst:256 msgid "" "Added possibility to pass custom headers to :class:`URLInputFile` object " "`#1191 `_" msgstr "" -#: ../../../CHANGES.rst:209 +#: ../../../CHANGES.rst:263 msgid "" "Change type of result in InlineQueryResult enum for " ":code:`InlineQueryResultCachedMpeg4Gif` and " @@ -363,51 +490,51 @@ msgid "" "documentation." msgstr "" -#: ../../../CHANGES.rst:212 +#: ../../../CHANGES.rst:266 msgid "" "Change regexp for entities parsing to more correct " "(:code:`InlineQueryResultType.yml`). `#1146 " "`_" msgstr "" -#: ../../../CHANGES.rst:214 +#: ../../../CHANGES.rst:268 msgid "" "Fixed signature of startup/shutdown events to include the " ":code:`**dispatcher.workflow_data` as the handler arguments. `#1155 " "`_" msgstr "" -#: ../../../CHANGES.rst:216 +#: ../../../CHANGES.rst:270 msgid "" "Added missing :code:`FORUM_TOPIC_EDITED` value to content_type property " "`#1160 `_" msgstr "" -#: ../../../CHANGES.rst:218 +#: ../../../CHANGES.rst:272 msgid "" "Fixed compatibility with Python 3.8-3.9 (from previous release) `#1162 " "`_" msgstr "" -#: ../../../CHANGES.rst:220 +#: ../../../CHANGES.rst:274 msgid "" "Fixed the markdown spoiler parser. `#1176 " "`_" msgstr "" -#: ../../../CHANGES.rst:222 +#: ../../../CHANGES.rst:276 msgid "" "Fixed workflow data propagation `#1196 " "`_" msgstr "" -#: ../../../CHANGES.rst:224 +#: ../../../CHANGES.rst:278 msgid "" "Fixed the serialization error associated with nested subtypes like " "InputMedia, ChatMember, etc." msgstr "" -#: ../../../CHANGES.rst:227 +#: ../../../CHANGES.rst:281 msgid "" "The previously generated code resulted in an invalid schema under " "pydantic v2, which has stricter type parsing. Hence, subtypes without the" @@ -416,71 +543,71 @@ msgid "" "`_" msgstr "" -#: ../../../CHANGES.rst:237 +#: ../../../CHANGES.rst:291 msgid "" "Changed small grammar typos for :code:`upload_file` `#1133 " "`_" msgstr "" -#: ../../../CHANGES.rst:244 +#: ../../../CHANGES.rst:298 msgid "" "Removed text filter in due to is planned to remove this filter few " "versions ago." msgstr "" -#: ../../../CHANGES.rst:246 +#: ../../../CHANGES.rst:300 msgid "" "Use :code:`F.text` instead `#1170 " "`_" msgstr "" -#: ../../../CHANGES.rst:253 +#: ../../../CHANGES.rst:307 msgid "" "Added full support of `Bot API 6.6 `_" msgstr "" -#: ../../../CHANGES.rst:257 +#: ../../../CHANGES.rst:311 msgid "" "Note that this issue has breaking changes described in in the Bot API " "changelog, this changes is not breaking in the API but breaking inside " "aiogram because Beta stage is not finished." msgstr "" -#: ../../../CHANGES.rst:260 +#: ../../../CHANGES.rst:314 msgid "`#1139 `_" msgstr "" -#: ../../../CHANGES.rst:261 +#: ../../../CHANGES.rst:315 msgid "" "Added full support of `Bot API 6.7 `_" msgstr "" -#: ../../../CHANGES.rst:265 +#: ../../../CHANGES.rst:319 msgid "" "Note that arguments *switch_pm_parameter* and *switch_pm_text* was " "deprecated and should be changed to *button* argument as described in API" " docs." msgstr "" -#: ../../../CHANGES.rst:267 +#: ../../../CHANGES.rst:321 msgid "`#1168 `_" msgstr "" -#: ../../../CHANGES.rst:268 +#: ../../../CHANGES.rst:322 msgid "Updated `Pydantic to V2 `_" msgstr "" -#: ../../../CHANGES.rst:272 +#: ../../../CHANGES.rst:326 msgid "Be careful, not all libraries is already updated to using V2" msgstr "" -#: ../../../CHANGES.rst:273 +#: ../../../CHANGES.rst:327 msgid "`#1202 `_" msgstr "" -#: ../../../CHANGES.rst:274 +#: ../../../CHANGES.rst:328 msgid "" "Added global defaults :code:`disable_web_page_preview` and " ":code:`protect_content` in addition to :code:`parse_mode` to the Bot " @@ -488,13 +615,13 @@ msgid "" "`_" msgstr "" -#: ../../../CHANGES.rst:277 +#: ../../../CHANGES.rst:331 msgid "" "Removed bot parameters from storages `#1144 " "`_" msgstr "" -#: ../../../CHANGES.rst:280 +#: ../../../CHANGES.rst:334 msgid "" "Replaced ContextVar's with a new feature called `Validation Context " "`_" @@ -502,69 +629,69 @@ msgid "" "handling the Bot instance within method shortcuts." msgstr "" -#: ../../../CHANGES.rst:285 +#: ../../../CHANGES.rst:339 msgid "**Breaking**: The 'bot' argument now is required in `URLInputFile`" msgstr "" -#: ../../../CHANGES.rst:286 +#: ../../../CHANGES.rst:340 msgid "`#1210 `_" msgstr "" -#: ../../../CHANGES.rst:287 +#: ../../../CHANGES.rst:341 msgid "Updated magic-filter with new features" msgstr "" -#: ../../../CHANGES.rst:289 +#: ../../../CHANGES.rst:343 msgid "Added hint for :code:`len(F)` error" msgstr "" -#: ../../../CHANGES.rst:290 +#: ../../../CHANGES.rst:344 msgid "Added not in operation" msgstr "" -#: ../../../CHANGES.rst:291 +#: ../../../CHANGES.rst:345 msgid "`#1221 `_" msgstr "" -#: ../../../CHANGES.rst:295 +#: ../../../CHANGES.rst:349 msgid "3.0.0b7 (2023-02-18)" msgstr "" -#: ../../../CHANGES.rst:299 +#: ../../../CHANGES.rst:353 msgid "" "Note that this version has incompatibility with Python 3.8-3.9 in case " "when you create an instance of Dispatcher outside of the any coroutine." msgstr "" -#: ../../../CHANGES.rst:301 +#: ../../../CHANGES.rst:355 msgid "Sorry for the inconvenience, it will be fixed in the next version." msgstr "" -#: ../../../CHANGES.rst:303 +#: ../../../CHANGES.rst:357 msgid "This code will not work:" msgstr "" -#: ../../../CHANGES.rst:315 +#: ../../../CHANGES.rst:369 msgid "But if you change it like this it should works as well:" msgstr "" -#: ../../../CHANGES.rst:333 +#: ../../../CHANGES.rst:387 msgid "Added missing shortcuts, new enums, reworked old stuff" msgstr "" -#: ../../../CHANGES.rst:335 +#: ../../../CHANGES.rst:389 msgid "" "**Breaking** All previously added enums is re-generated in new place - " "`aiogram.enums` instead of `aiogram.types`" msgstr "" -#: ../../../CHANGES.rst:353 +#: ../../../CHANGES.rst:407 msgid "" "**Added enums:** " ":class:`aiogram.enums.bot_command_scope_type.BotCommandScopeType`," msgstr "" -#: ../../../CHANGES.rst:339 +#: ../../../CHANGES.rst:393 msgid "" ":class:`aiogram.enums.chat_action.ChatAction`, " ":class:`aiogram.enums.chat_member_status.ChatMemberStatus`, " @@ -583,15 +710,15 @@ msgid "" ":class:`aiogram.enums.update_type.UpdateType`," msgstr "" -#: ../../../CHANGES.rst:355 +#: ../../../CHANGES.rst:409 msgid "**Added shortcuts**:" msgstr "" -#: ../../../CHANGES.rst:380 +#: ../../../CHANGES.rst:434 msgid "*Chat* :meth:`aiogram.types.chat.Chat.get_administrators`," msgstr "" -#: ../../../CHANGES.rst:358 +#: ../../../CHANGES.rst:412 msgid "" ":meth:`aiogram.types.chat.Chat.delete_message`, " ":meth:`aiogram.types.chat.Chat.revoke_invite_link`, " @@ -619,85 +746,85 @@ msgid "" ":meth:`aiogram.types.chat.Chat.set_photo`," msgstr "" -#: ../../../CHANGES.rst:382 +#: ../../../CHANGES.rst:436 msgid "*Sticker*: :meth:`aiogram.types.sticker.Sticker.set_position_in_set`," msgstr "" -#: ../../../CHANGES.rst:383 +#: ../../../CHANGES.rst:437 msgid ":meth:`aiogram.types.sticker.Sticker.delete_from_set`," msgstr "" -#: ../../../CHANGES.rst:384 +#: ../../../CHANGES.rst:438 msgid "*User*: :meth:`aiogram.types.user.User.get_profile_photos`" msgstr "" -#: ../../../CHANGES.rst:385 +#: ../../../CHANGES.rst:439 msgid "`#952 `_" msgstr "" -#: ../../../CHANGES.rst:386 +#: ../../../CHANGES.rst:440 msgid "" "Added :ref:`callback answer ` feature `#1091 " "`_" msgstr "" -#: ../../../CHANGES.rst:388 +#: ../../../CHANGES.rst:442 msgid "" "Added a method that allows you to compactly register routers `#1117 " "`_" msgstr "" -#: ../../../CHANGES.rst:395 +#: ../../../CHANGES.rst:449 msgid "" "Check status code when downloading file `#816 " "`_" msgstr "" -#: ../../../CHANGES.rst:397 +#: ../../../CHANGES.rst:451 msgid "" "Fixed `ignore_case` parameter in :obj:`aiogram.filters.command.Command` " "filter `#1106 `_" msgstr "" -#: ../../../CHANGES.rst:404 +#: ../../../CHANGES.rst:458 msgid "" "Added integration with new code-generator named `Butcher " "`_ `#1069 " "`_" msgstr "" -#: ../../../CHANGES.rst:406 +#: ../../../CHANGES.rst:460 msgid "" "Added full support of `Bot API 6.4 `_ `#1088 " "`_" msgstr "" -#: ../../../CHANGES.rst:408 +#: ../../../CHANGES.rst:462 msgid "" "Updated package metadata, moved build internals from Poetry to Hatch, " "added contributing guides. `#1095 " "`_" msgstr "" -#: ../../../CHANGES.rst:410 +#: ../../../CHANGES.rst:464 msgid "" "Added full support of `Bot API 6.5 `_" msgstr "" -#: ../../../CHANGES.rst:414 +#: ../../../CHANGES.rst:468 msgid "" "Note that :obj:`aiogram.types.chat_permissions.ChatPermissions` is " "updated without backward compatibility, so now this object has no " ":code:`can_send_media_messages` attribute" msgstr "" -#: ../../../CHANGES.rst:416 +#: ../../../CHANGES.rst:470 msgid "`#1112 `_" msgstr "" -#: ../../../CHANGES.rst:417 +#: ../../../CHANGES.rst:471 msgid "" "Replaced error :code:`TypeError: TelegramEventObserver.__call__() got an " "unexpected keyword argument ''` with a more understandable one for " @@ -705,13 +832,13 @@ msgid "" "`_" msgstr "" -#: ../../../CHANGES.rst:420 +#: ../../../CHANGES.rst:474 msgid "" "Added possibility to reply into webhook with files `#1120 " "`_" msgstr "" -#: ../../../CHANGES.rst:422 +#: ../../../CHANGES.rst:476 msgid "" "Reworked graceful shutdown. Added method to stop polling. Now polling " "started from dispatcher can be stopped by signals gracefully without " @@ -719,127 +846,127 @@ msgid "" "`_" msgstr "" -#: ../../../CHANGES.rst:428 +#: ../../../CHANGES.rst:482 msgid "3.0.0b6 (2022-11-18)" msgstr "" -#: ../../../CHANGES.rst:433 +#: ../../../CHANGES.rst:487 msgid "" "(again) Added possibility to combine filters with an *and*/*or* " "operations." msgstr "" -#: ../../../CHANGES.rst:435 +#: ../../../CHANGES.rst:489 msgid "" "Read more in \":ref:`Combining filters `\" " "documentation section `#1018 " "`_" msgstr "" -#: ../../../CHANGES.rst:437 +#: ../../../CHANGES.rst:491 msgid "Added following methods to ``Message`` class:" msgstr "" -#: ../../../CHANGES.rst:439 +#: ../../../CHANGES.rst:493 msgid ":code:`Message.forward(...)`" msgstr "" -#: ../../../CHANGES.rst:440 +#: ../../../CHANGES.rst:494 msgid ":code:`Message.edit_media(...)`" msgstr "" -#: ../../../CHANGES.rst:441 +#: ../../../CHANGES.rst:495 msgid ":code:`Message.edit_live_location(...)`" msgstr "" -#: ../../../CHANGES.rst:442 +#: ../../../CHANGES.rst:496 msgid ":code:`Message.stop_live_location(...)`" msgstr "" -#: ../../../CHANGES.rst:443 +#: ../../../CHANGES.rst:497 msgid ":code:`Message.pin(...)`" msgstr "" -#: ../../../CHANGES.rst:444 +#: ../../../CHANGES.rst:498 msgid ":code:`Message.unpin()`" msgstr "" -#: ../../../CHANGES.rst:445 +#: ../../../CHANGES.rst:499 msgid "`#1030 `_" msgstr "" -#: ../../../CHANGES.rst:446 +#: ../../../CHANGES.rst:500 msgid "Added following methods to :code:`User` class:" msgstr "" -#: ../../../CHANGES.rst:448 +#: ../../../CHANGES.rst:502 msgid ":code:`User.mention_markdown(...)`" msgstr "" -#: ../../../CHANGES.rst:449 +#: ../../../CHANGES.rst:503 msgid ":code:`User.mention_html(...)`" msgstr "" -#: ../../../CHANGES.rst:450 +#: ../../../CHANGES.rst:504 msgid "`#1049 `_" msgstr "" -#: ../../../CHANGES.rst:451 +#: ../../../CHANGES.rst:505 msgid "" "Added full support of `Bot API 6.3 `_ `#1057 " "`_" msgstr "" -#: ../../../CHANGES.rst:458 +#: ../../../CHANGES.rst:512 msgid "" "Fixed :code:`Message.send_invoice` and :code:`Message.reply_invoice`, " "added missing arguments `#1047 " "`_" msgstr "" -#: ../../../CHANGES.rst:460 +#: ../../../CHANGES.rst:514 msgid "Fixed copy and forward in:" msgstr "" -#: ../../../CHANGES.rst:462 +#: ../../../CHANGES.rst:516 msgid ":code:`Message.answer(...)`" msgstr "" -#: ../../../CHANGES.rst:463 +#: ../../../CHANGES.rst:517 msgid ":code:`Message.copy_to(...)`" msgstr "" -#: ../../../CHANGES.rst:464 +#: ../../../CHANGES.rst:518 msgid "`#1064 `_" msgstr "" -#: ../../../CHANGES.rst:470 +#: ../../../CHANGES.rst:524 msgid "" "Fixed UA translations in index.po `#1017 " "`_" msgstr "" -#: ../../../CHANGES.rst:472 +#: ../../../CHANGES.rst:526 msgid "" "Fix typehints for :code:`Message`, :code:`reply_media_group` and " ":code:`answer_media_group` methods `#1029 " "`_" msgstr "" -#: ../../../CHANGES.rst:474 +#: ../../../CHANGES.rst:528 msgid "" "Removed an old now non-working feature `#1060 " "`_" msgstr "" -#: ../../../CHANGES.rst:481 +#: ../../../CHANGES.rst:535 msgid "" "Enabled testing on Python 3.11 `#1044 " "`_" msgstr "" -#: ../../../CHANGES.rst:483 +#: ../../../CHANGES.rst:537 msgid "" "Added a mandatory dependency :code:`certifi` in due to in some cases on " "systems that doesn't have updated ca-certificates the requests to Bot API" @@ -848,23 +975,23 @@ msgid "" "`_" msgstr "" -#: ../../../CHANGES.rst:488 +#: ../../../CHANGES.rst:542 msgid "3.0.0b5 (2022-10-02)" msgstr "" -#: ../../../CHANGES.rst:493 +#: ../../../CHANGES.rst:547 msgid "" "Add PyPy support and run tests under PyPy `#985 " "`_" msgstr "" -#: ../../../CHANGES.rst:495 +#: ../../../CHANGES.rst:549 msgid "" "Added message text to aiogram exceptions representation `#988 " "`_" msgstr "" -#: ../../../CHANGES.rst:497 +#: ../../../CHANGES.rst:551 msgid "" "Added warning about using magic filter from `magic_filter` instead of " "`aiogram`'s ones. Is recommended to use `from aiogram import F` instead " @@ -872,61 +999,61 @@ msgid "" "`_" msgstr "" -#: ../../../CHANGES.rst:500 +#: ../../../CHANGES.rst:554 msgid "" "Added more detailed error when server response can't be deserialized. " "This feature will help to debug unexpected responses from the Server " "`#1014 `_" msgstr "" -#: ../../../CHANGES.rst:507 +#: ../../../CHANGES.rst:561 msgid "" "Reworked error event, introduced " ":class:`aiogram.types.error_event.ErrorEvent` object. `#898 " "`_" msgstr "" -#: ../../../CHANGES.rst:509 +#: ../../../CHANGES.rst:563 msgid "" "Fixed escaping markdown in `aiogram.utils.markdown` module `#903 " "`_" msgstr "" -#: ../../../CHANGES.rst:511 +#: ../../../CHANGES.rst:565 msgid "" "Fixed polling crash when Telegram Bot API raises HTTP 429 status-code. " "`#995 `_" msgstr "" -#: ../../../CHANGES.rst:513 +#: ../../../CHANGES.rst:567 msgid "" "Fixed empty mention in command parsing, now it will be None instead of an" " empty string `#1013 `_" msgstr "" -#: ../../../CHANGES.rst:520 +#: ../../../CHANGES.rst:574 msgid "" "Initialized Docs translation (added Ukrainian language) `#925 " "`_" msgstr "" -#: ../../../CHANGES.rst:527 +#: ../../../CHANGES.rst:581 msgid "" "Removed filters factory as described in corresponding issue. `#942 " "`_" msgstr "" -#: ../../../CHANGES.rst:534 +#: ../../../CHANGES.rst:588 msgid "" "Now Router/Dispatcher accepts only keyword arguments. `#982 " "`_" msgstr "" -#: ../../../CHANGES.rst:539 +#: ../../../CHANGES.rst:593 msgid "3.0.0b4 (2022-08-14)" msgstr "" -#: ../../../CHANGES.rst:544 +#: ../../../CHANGES.rst:598 msgid "" "Add class helper ChatAction for constants that Telegram BotAPI uses in " "sendChatAction request. In my opinion, this will help users and will also" @@ -934,198 +1061,198 @@ msgid "" "\"ChatActions\". `#803 `_" msgstr "" -#: ../../../CHANGES.rst:548 +#: ../../../CHANGES.rst:602 msgid "Added possibility to combine filters or invert result" msgstr "" -#: ../../../CHANGES.rst:550 +#: ../../../CHANGES.rst:604 msgid "Example:" msgstr "" -#: ../../../CHANGES.rst:558 +#: ../../../CHANGES.rst:612 msgid "`#894 `_" msgstr "" -#: ../../../CHANGES.rst:559 +#: ../../../CHANGES.rst:613 msgid "" "Fixed type hints for redis TTL params. `#922 " "`_" msgstr "" -#: ../../../CHANGES.rst:561 +#: ../../../CHANGES.rst:615 msgid "" "Added `full_name` shortcut for `Chat` object `#929 " "`_" msgstr "" -#: ../../../CHANGES.rst:568 +#: ../../../CHANGES.rst:622 msgid "" "Fixed false-positive coercing of Union types in API methods `#901 " "`_" msgstr "" -#: ../../../CHANGES.rst:570 +#: ../../../CHANGES.rst:624 msgid "Added 3 missing content types:" msgstr "" -#: ../../../CHANGES.rst:572 +#: ../../../CHANGES.rst:626 msgid "proximity_alert_triggered" msgstr "" -#: ../../../CHANGES.rst:573 +#: ../../../CHANGES.rst:627 msgid "supergroup_chat_created" msgstr "" -#: ../../../CHANGES.rst:574 +#: ../../../CHANGES.rst:628 msgid "channel_chat_created" msgstr "" -#: ../../../CHANGES.rst:575 +#: ../../../CHANGES.rst:629 msgid "`#906 `_" msgstr "" -#: ../../../CHANGES.rst:576 +#: ../../../CHANGES.rst:630 msgid "" "Fixed the ability to compare the state, now comparison to copy of the " "state will return `True`. `#927 " "`_" msgstr "" -#: ../../../CHANGES.rst:578 +#: ../../../CHANGES.rst:632 msgid "" "Fixed default lock kwargs in RedisEventIsolation. `#972 " "`_" msgstr "" -#: ../../../CHANGES.rst:585 +#: ../../../CHANGES.rst:639 msgid "" "Restrict including routers with strings `#896 " "`_" msgstr "" -#: ../../../CHANGES.rst:587 +#: ../../../CHANGES.rst:641 msgid "" "Changed CommandPatterType to CommandPatternType in " "`aiogram/dispatcher/filters/command.py` `#907 " "`_" msgstr "" -#: ../../../CHANGES.rst:589 +#: ../../../CHANGES.rst:643 msgid "" "Added full support of `Bot API 6.1 `_ `#936 " "`_" msgstr "" -#: ../../../CHANGES.rst:591 +#: ../../../CHANGES.rst:645 msgid "**Breaking!** More flat project structure" msgstr "" -#: ../../../CHANGES.rst:593 +#: ../../../CHANGES.rst:647 msgid "These packages was moved, imports in your code should be fixed:" msgstr "" -#: ../../../CHANGES.rst:595 +#: ../../../CHANGES.rst:649 msgid ":code:`aiogram.dispatcher.filters` -> :code:`aiogram.filters`" msgstr "" -#: ../../../CHANGES.rst:596 +#: ../../../CHANGES.rst:650 msgid ":code:`aiogram.dispatcher.fsm` -> :code:`aiogram.fsm`" msgstr "" -#: ../../../CHANGES.rst:597 +#: ../../../CHANGES.rst:651 msgid ":code:`aiogram.dispatcher.handler` -> :code:`aiogram.handler`" msgstr "" -#: ../../../CHANGES.rst:598 +#: ../../../CHANGES.rst:652 msgid ":code:`aiogram.dispatcher.webhook` -> :code:`aiogram.webhook`" msgstr "" -#: ../../../CHANGES.rst:599 +#: ../../../CHANGES.rst:653 msgid "" ":code:`aiogram.dispatcher.flags/*` -> :code:`aiogram.dispatcher.flags` " "(single module instead of package)" msgstr "" -#: ../../../CHANGES.rst:600 +#: ../../../CHANGES.rst:654 msgid "`#938 `_" msgstr "" -#: ../../../CHANGES.rst:601 +#: ../../../CHANGES.rst:655 msgid "" "Removed deprecated :code:`router._handler` and " ":code:`router.register__handler` methods. `#941 " "`_" msgstr "" -#: ../../../CHANGES.rst:603 +#: ../../../CHANGES.rst:657 msgid "" "Deprecated filters factory. It will be removed in next Beta (3.0b5) `#942" " `_" msgstr "" -#: ../../../CHANGES.rst:605 +#: ../../../CHANGES.rst:659 msgid "" "`MessageEntity` method `get_text` was removed and `extract` was renamed " "to `extract_from` `#944 `_" msgstr "" -#: ../../../CHANGES.rst:607 +#: ../../../CHANGES.rst:661 msgid "" "Added full support of `Bot API 6.2 `_ `#975 " "`_" msgstr "" -#: ../../../CHANGES.rst:612 +#: ../../../CHANGES.rst:666 msgid "3.0.0b3 (2022-04-19)" msgstr "" -#: ../../../CHANGES.rst:617 +#: ../../../CHANGES.rst:671 msgid "" "Added possibility to get command magic result as handler argument `#889 " "`_" msgstr "" -#: ../../../CHANGES.rst:619 +#: ../../../CHANGES.rst:673 msgid "" "Added full support of `Telegram Bot API 6.0 " "`_ `#890 " "`_" msgstr "" -#: ../../../CHANGES.rst:626 +#: ../../../CHANGES.rst:680 msgid "" "Fixed I18n lazy-proxy. Disabled caching. `#839 " "`_" msgstr "" -#: ../../../CHANGES.rst:628 +#: ../../../CHANGES.rst:682 msgid "" "Added parsing of spoiler message entity `#865 " "`_" msgstr "" -#: ../../../CHANGES.rst:630 +#: ../../../CHANGES.rst:684 msgid "" "Fixed default `parse_mode` for `Message.copy_to()` method. `#876 " "`_" msgstr "" -#: ../../../CHANGES.rst:632 +#: ../../../CHANGES.rst:686 msgid "" "Fixed CallbackData factory parsing IntEnum's `#885 " "`_" msgstr "" -#: ../../../CHANGES.rst:639 +#: ../../../CHANGES.rst:693 msgid "" "Added automated check that pull-request adds a changes description to " "**CHANGES** directory `#873 " "`_" msgstr "" -#: ../../../CHANGES.rst:641 +#: ../../../CHANGES.rst:695 msgid "" "Changed :code:`Message.html_text` and :code:`Message.md_text` attributes " "behaviour when message has no text. The empty string will be used instead" @@ -1133,14 +1260,14 @@ msgid "" "`_" msgstr "" -#: ../../../CHANGES.rst:644 +#: ../../../CHANGES.rst:698 msgid "" "Used `redis-py` instead of `aioredis` package in due to this packages was" " merged into single one `#882 " "`_" msgstr "" -#: ../../../CHANGES.rst:646 +#: ../../../CHANGES.rst:700 msgid "" "Solved common naming problem with middlewares that confusing too much " "developers - now you can't see the `middleware` and `middlewares` " @@ -1149,113 +1276,113 @@ msgid "" "`_" msgstr "" -#: ../../../CHANGES.rst:653 +#: ../../../CHANGES.rst:707 msgid "3.0.0b2 (2022-02-19)" msgstr "" -#: ../../../CHANGES.rst:658 +#: ../../../CHANGES.rst:712 msgid "" "Added possibility to pass additional arguments into the aiohttp webhook " "handler to use this arguments inside handlers as the same as it possible " "in polling mode. `#785 `_" msgstr "" -#: ../../../CHANGES.rst:661 +#: ../../../CHANGES.rst:715 msgid "" "Added possibility to add handler flags via decorator (like `pytest.mark` " "decorator but `aiogram.flags`) `#836 " "`_" msgstr "" -#: ../../../CHANGES.rst:663 +#: ../../../CHANGES.rst:717 msgid "" "Added :code:`ChatActionSender` utility to automatically sends chat action" " while long process is running." msgstr "" -#: ../../../CHANGES.rst:665 +#: ../../../CHANGES.rst:719 msgid "" "It also can be used as message middleware and can be customized via " ":code:`chat_action` flag. `#837 " "`_" msgstr "" -#: ../../../CHANGES.rst:672 +#: ../../../CHANGES.rst:726 msgid "" "Fixed unexpected behavior of sequences in the StateFilter. `#791 " "`_" msgstr "" -#: ../../../CHANGES.rst:674 +#: ../../../CHANGES.rst:728 msgid "" "Fixed exceptions filters `#827 " "`_" msgstr "" -#: ../../../CHANGES.rst:681 +#: ../../../CHANGES.rst:735 msgid "" "Logger name for processing events is changed to :code:`aiogram.events`. " "`#830 `_" msgstr "" -#: ../../../CHANGES.rst:683 +#: ../../../CHANGES.rst:737 msgid "" "Added full support of Telegram Bot API 5.6 and 5.7 `#835 " "`_" msgstr "" -#: ../../../CHANGES.rst:685 +#: ../../../CHANGES.rst:739 msgid "" "**BREAKING** Events isolation mechanism is moved from FSM storages to " "standalone managers `#838 " "`_" msgstr "" -#: ../../../CHANGES.rst:691 +#: ../../../CHANGES.rst:745 msgid "3.0.0b1 (2021-12-12)" msgstr "" -#: ../../../CHANGES.rst:696 +#: ../../../CHANGES.rst:750 msgid "Added new custom operation for MagicFilter named :code:`as_`" msgstr "" -#: ../../../CHANGES.rst:698 +#: ../../../CHANGES.rst:752 msgid "Now you can use it to get magic filter result as handler argument" msgstr "" -#: ../../../CHANGES.rst:714 +#: ../../../CHANGES.rst:768 msgid "`#759 `_" msgstr "" -#: ../../../CHANGES.rst:720 +#: ../../../CHANGES.rst:774 msgid "" "Fixed: Missing :code:`ChatMemberHandler` import in " ":code:`aiogram/dispatcher/handler` `#751 " "`_" msgstr "" -#: ../../../CHANGES.rst:727 +#: ../../../CHANGES.rst:781 msgid "" "Check :code:`destiny` in case of no :code:`with_destiny` enabled in " "RedisStorage key builder `#776 " "`_" msgstr "" -#: ../../../CHANGES.rst:729 +#: ../../../CHANGES.rst:783 msgid "" "Added full support of `Bot API 5.5 `_ `#777 " "`_" msgstr "" -#: ../../../CHANGES.rst:731 +#: ../../../CHANGES.rst:785 msgid "" "Stop using feature from #336. From now settings of client-session should " "be placed as initializer arguments instead of changing instance " "attributes. `#778 `_" msgstr "" -#: ../../../CHANGES.rst:733 +#: ../../../CHANGES.rst:787 msgid "" "Make TelegramAPIServer files wrapper in local mode bi-directional " "(server-client, client-server) Now you can convert local path to server " @@ -1263,11 +1390,11 @@ msgid "" "`_" msgstr "" -#: ../../../CHANGES.rst:739 +#: ../../../CHANGES.rst:793 msgid "3.0.0a18 (2021-11-10)" msgstr "" -#: ../../../CHANGES.rst:744 +#: ../../../CHANGES.rst:798 msgid "" "Breaking: Changed the signature of the session middlewares Breaking: " "Renamed AiohttpSession.make_request method parameter from call to method " @@ -1275,258 +1402,258 @@ msgid "" "outgoing requests `#716 `_" msgstr "" -#: ../../../CHANGES.rst:748 +#: ../../../CHANGES.rst:802 msgid "" "Improved description of filters resolving error. For example when you try" " to pass wrong type of argument to the filter but don't know why filter " "is not resolved now you can get error like this:" msgstr "" -#: ../../../CHANGES.rst:758 +#: ../../../CHANGES.rst:812 msgid "`#717 `_" msgstr "" -#: ../../../CHANGES.rst:759 +#: ../../../CHANGES.rst:813 msgid "" "**Breaking internal API change** Reworked FSM Storage record keys " "propagation `#723 `_" msgstr "" -#: ../../../CHANGES.rst:762 +#: ../../../CHANGES.rst:816 msgid "" "Implemented new filter named :code:`MagicData(magic_data)` that helps to " "filter event by data from middlewares or other filters" msgstr "" -#: ../../../CHANGES.rst:764 +#: ../../../CHANGES.rst:818 msgid "" "For example your bot is running with argument named :code:`config` that " "contains the application config then you can filter event by value from " "this config:" msgstr "" -#: ../../../CHANGES.rst:770 +#: ../../../CHANGES.rst:824 msgid "`#724 `_" msgstr "" -#: ../../../CHANGES.rst:776 +#: ../../../CHANGES.rst:830 msgid "" "Fixed I18n context inside error handlers `#726 " "`_" msgstr "" -#: ../../../CHANGES.rst:778 +#: ../../../CHANGES.rst:832 msgid "" "Fixed bot session closing before emit shutdown `#734 " "`_" msgstr "" -#: ../../../CHANGES.rst:780 +#: ../../../CHANGES.rst:834 msgid "" "Fixed: bound filter resolving does not require children routers `#736 " "`_" msgstr "" -#: ../../../CHANGES.rst:787 +#: ../../../CHANGES.rst:841 msgid "" "Enabled testing on Python 3.10 Removed `async_lru` dependency (is " "incompatible with Python 3.10) and replaced usage with protected property" " `#719 `_" msgstr "" -#: ../../../CHANGES.rst:790 +#: ../../../CHANGES.rst:844 msgid "" "Converted README.md to README.rst and use it as base file for docs `#725 " "`_" msgstr "" -#: ../../../CHANGES.rst:792 +#: ../../../CHANGES.rst:846 msgid "Rework filters resolving:" msgstr "" -#: ../../../CHANGES.rst:794 +#: ../../../CHANGES.rst:848 msgid "Automatically apply Bound Filters with default values to handlers" msgstr "" -#: ../../../CHANGES.rst:795 +#: ../../../CHANGES.rst:849 msgid "Fix data transfer from parent to included routers filters" msgstr "" -#: ../../../CHANGES.rst:796 +#: ../../../CHANGES.rst:850 msgid "`#727 `_" msgstr "" -#: ../../../CHANGES.rst:797 +#: ../../../CHANGES.rst:851 msgid "" "Added full support of Bot API 5.4 https://core.telegram.org/bots/api-" "changelog#november-5-2021 `#744 " "`_" msgstr "" -#: ../../../CHANGES.rst:803 +#: ../../../CHANGES.rst:857 msgid "3.0.0a17 (2021-09-24)" msgstr "" -#: ../../../CHANGES.rst:808 +#: ../../../CHANGES.rst:862 msgid "" "Added :code:`html_text` and :code:`md_text` to Message object `#708 " "`_" msgstr "" -#: ../../../CHANGES.rst:810 +#: ../../../CHANGES.rst:864 msgid "" "Refactored I18n, added context managers for I18n engine and current " "locale `#709 `_" msgstr "" -#: ../../../CHANGES.rst:815 +#: ../../../CHANGES.rst:869 msgid "3.0.0a16 (2021-09-22)" msgstr "" -#: ../../../CHANGES.rst:820 +#: ../../../CHANGES.rst:874 msgid "Added support of local Bot API server files downloading" msgstr "" -#: ../../../CHANGES.rst:822 +#: ../../../CHANGES.rst:876 msgid "" "When Local API is enabled files can be downloaded via " "`bot.download`/`bot.download_file` methods. `#698 " "`_" msgstr "" -#: ../../../CHANGES.rst:824 +#: ../../../CHANGES.rst:878 msgid "" "Implemented I18n & L10n support `#701 " "`_" msgstr "" -#: ../../../CHANGES.rst:831 +#: ../../../CHANGES.rst:885 msgid "" "Covered by tests and docs KeyboardBuilder util `#699 " "`_" msgstr "" -#: ../../../CHANGES.rst:833 +#: ../../../CHANGES.rst:887 msgid "**Breaking!!!**. Refactored and renamed exceptions." msgstr "" -#: ../../../CHANGES.rst:835 +#: ../../../CHANGES.rst:889 msgid "" "Exceptions module was moved from :code:`aiogram.utils.exceptions` to " ":code:`aiogram.exceptions`" msgstr "" -#: ../../../CHANGES.rst:836 +#: ../../../CHANGES.rst:890 msgid "Added prefix `Telegram` for all error classes" msgstr "" -#: ../../../CHANGES.rst:837 +#: ../../../CHANGES.rst:891 msgid "`#700 `_" msgstr "" -#: ../../../CHANGES.rst:838 +#: ../../../CHANGES.rst:892 msgid "" "Replaced all :code:`pragma: no cover` marks via global " ":code:`.coveragerc` config `#702 " "`_" msgstr "" -#: ../../../CHANGES.rst:840 +#: ../../../CHANGES.rst:894 msgid "Updated dependencies." msgstr "" -#: ../../../CHANGES.rst:842 +#: ../../../CHANGES.rst:896 msgid "" "**Breaking for framework developers** Now all optional dependencies " "should be installed as extra: `poetry install -E fast -E redis -E proxy " "-E i18n -E docs` `#703 `_" msgstr "" -#: ../../../CHANGES.rst:848 +#: ../../../CHANGES.rst:902 msgid "3.0.0a15 (2021-09-10)" msgstr "" -#: ../../../CHANGES.rst:853 +#: ../../../CHANGES.rst:907 msgid "" "Ability to iterate over all states in StatesGroup. Aiogram already had in" " check for states group so this is relative feature. `#666 " "`_" msgstr "" -#: ../../../CHANGES.rst:861 +#: ../../../CHANGES.rst:915 msgid "" "Fixed incorrect type checking in the " ":class:`aiogram.utils.keyboard.KeyboardBuilder` `#674 " "`_" msgstr "" -#: ../../../CHANGES.rst:868 +#: ../../../CHANGES.rst:922 msgid "" "Disable ContentType filter by default `#668 " "`_" msgstr "" -#: ../../../CHANGES.rst:870 +#: ../../../CHANGES.rst:924 msgid "" "Moved update type detection from Dispatcher to Update object `#669 " "`_" msgstr "" -#: ../../../CHANGES.rst:872 +#: ../../../CHANGES.rst:926 msgid "" "Updated **pre-commit** config `#681 " "`_" msgstr "" -#: ../../../CHANGES.rst:874 +#: ../../../CHANGES.rst:928 msgid "" "Reworked **handlers_in_use** util. Function moved to Router as method " "**.resolve_used_update_types()** `#682 " "`_" msgstr "" -#: ../../../CHANGES.rst:879 +#: ../../../CHANGES.rst:933 msgid "3.0.0a14 (2021-08-17)" msgstr "" -#: ../../../CHANGES.rst:884 +#: ../../../CHANGES.rst:938 msgid "" "add aliases for edit/delete reply markup to Message `#662 " "`_" msgstr "" -#: ../../../CHANGES.rst:886 +#: ../../../CHANGES.rst:940 msgid "" "Reworked outer middleware chain. Prevent to call many times the outer " "middleware for each nested router `#664 " "`_" msgstr "" -#: ../../../CHANGES.rst:893 +#: ../../../CHANGES.rst:947 msgid "" "Prepare parse mode for InputMessageContent in AnswerInlineQuery method " "`#660 `_" msgstr "" -#: ../../../CHANGES.rst:900 +#: ../../../CHANGES.rst:954 msgid "" "Added integration with :code:`towncrier` `#602 " "`_" msgstr "" -#: ../../../CHANGES.rst:907 +#: ../../../CHANGES.rst:961 msgid "" "Added `.editorconfig` `#650 " "`_" msgstr "" -#: ../../../CHANGES.rst:909 +#: ../../../CHANGES.rst:963 msgid "" "Redis storage speedup globals `#651 " "`_" msgstr "" -#: ../../../CHANGES.rst:911 +#: ../../../CHANGES.rst:965 msgid "" "add allow_sending_without_reply param to Message reply aliases `#663 " "`_" @@ -3044,119 +3171,3 @@ msgstr "" #: ../../../HISTORY.rst:497 msgid "0.1 (2017-06-03)" msgstr "" - -#~ msgid "\\ |release| [UNRELEASED DRAFT] (2023-01-07)" -#~ msgstr "" - -#~ msgid "\\ |release| [UNRELEASED DRAFT] (2023-02-12)" -#~ msgstr "" - -#~ msgid "" -#~ ":class:`aiogram.enums.chat_action.ChatActions`, " -#~ ":class:`aiogram.enums.chat_member_status.ChatMemberStatus`, " -#~ ":class:`aiogram.enums.chat_type.ChatType`, " -#~ ":class:`aiogram.enums.content_type.ContentType`, " -#~ ":class:`aiogram.enums.dice_emoji.DiceEmoji`, " -#~ ":class:`aiogram.enums.inline_query_result_type.InlineQueryResultType`," -#~ " :class:`aiogram.enums.input_media_type.InputMediaType`, " -#~ ":class:`aiogram.enums.mask_position_point.MaskPositionPoint`, " -#~ ":class:`aiogram.enums.menu_button_type.MenuButtonType`, " -#~ ":class:`aiogram.enums.message_entity_type.MessageEntityType`, " -#~ ":class:`aiogram.enums.parse_mode.ParseMode`, " -#~ ":class:`aiogram.enums.poll_type.PollType`, " -#~ ":class:`aiogram.enums.sticker_type.StickerType`, " -#~ ":class:`aiogram.enums.topic_icon_color.TopicIconColor`, " -#~ ":class:`aiogram.enums.update_type.UpdateType`," -#~ msgstr "" - -#~ msgid "\\ |release| [UNRELEASED DRAFT] (2023-03-11)" -#~ msgstr "" - -#~ msgid "\\ |release| [UNRELEASED DRAFT] (2023-07-02)" -#~ msgstr "" - -#~ msgid "" -#~ "If router does not support custom " -#~ "event it does not break and passes" -#~ " it to included routers `#1147 " -#~ "`_" -#~ msgstr "" - -#~ msgid "" -#~ "If you have implemented you own " -#~ "storages you should extend record key" -#~ " generation with new one attribute -" -#~ " `thread_id`" -#~ msgstr "" - -#~ msgid "" -#~ "Added X-Telegram-Bot-Api-Secret-Token" -#~ " header check `#1173 " -#~ "`_" -#~ msgstr "" - -#~ msgid "" -#~ "Added possibility to pass custom headers" -#~ " to URLInputFile object `#1191 " -#~ "`_" -#~ msgstr "" - -#~ msgid "" -#~ "Change type of result in " -#~ "InlineQueryResult enum for " -#~ "`InlineQueryResultCachedMpeg4Gif` and " -#~ "`InlineQueryResultMpeg4Gif` to more correct " -#~ "according to documentation." -#~ msgstr "" - -#~ msgid "" -#~ "Change regexp for entities parsing to" -#~ " more correct (`InlineQueryResultType.yml`). " -#~ "`#1146 `_" -#~ msgstr "" - -#~ msgid "" -#~ "Fixed signature of startup/shutdown events " -#~ "to include the **dispatcher.workflow_data as" -#~ " the handler arguments. `#1155 " -#~ "`_" -#~ msgstr "" - -#~ msgid "" -#~ "Added missing FORUM_TOPIC_EDITED value to " -#~ "content_type property `#1160 " -#~ "`_" -#~ msgstr "" - -#~ msgid "" -#~ "Fixed compatibility with Python 3.8-3.9 " -#~ "`#1162 `_" -#~ msgstr "" - -#~ msgid "" -#~ "Changed small grammar typos for " -#~ "`upload_file` `#1133 " -#~ "`_" -#~ msgstr "" - -#~ msgid "" -#~ "Added global defaults `disable_web_page_preview` " -#~ "and `protect_content` in addition to " -#~ "`parse_mode` to the Bot instance, " -#~ "reworked internal request builder mechanism." -#~ " `#1142 `_" -#~ msgstr "" - -#~ msgid "" -#~ "Be careful, not all libraries is " -#~ "already updated to using V2 (for " -#~ "example at the time, when this " -#~ "warning was added FastAPI still not " -#~ "support V2)" -#~ msgstr "" - -#~ msgid "\\ |release| [UNRELEASED DRAFT] (2023-07-30)" -#~ msgstr "" - -#~ msgid "\\ |release| [UNRELEASED DRAFT] (2023-08-06)" -#~ msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/dispatcher/class_based_handlers/message.po b/docs/locale/uk_UA/LC_MESSAGES/dispatcher/class_based_handlers/message.po index 0b0feb84..bae24729 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/dispatcher/class_based_handlers/message.po +++ b/docs/locale/uk_UA/LC_MESSAGES/dispatcher/class_based_handlers/message.po @@ -5,17 +5,16 @@ # msgid "" msgstr "" -"Project-Id-Version: aiogram\n" +"Project-Id-Version: aiogram\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-10-01 22:51+0300\n" +"POT-Creation-Date: 2023-10-08 19:04+0300\n" "PO-Revision-Date: 2022-12-11 22:52+0200\n" "Last-Translator: \n" "Language-Team: \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" -"X-Generator: Poedit 3.2.2\n" +"Generated-By: Babel 2.12.1\n" #: ../../dispatcher/class_based_handlers/message.rst:3 msgid "MessageHandler" @@ -34,12 +33,13 @@ msgid "Extension" msgstr "Розширення" #: ../../dispatcher/class_based_handlers/message.rst:24 +#, fuzzy msgid "" -"This base handler is subclass of [BaseHandler](basics.md#basehandler) " +"This base handler is subclass of :ref:`BaseHandler ` " "with some extensions:" msgstr "" -"Цей базовий обробник є підкласом [BaseHandler](basics.md#basehandler) " -"з деякими розширеннями:" +"Цей базовий обробник є підкласом [BaseHandler](basics.md#basehandler) з " +"деякими розширеннями:" #: ../../dispatcher/class_based_handlers/message.rst:26 msgid ":code:`self.chat` is alias for :code:`self.event.chat`" @@ -47,5 +47,4 @@ msgstr ":code:`self.chat` це псевдонім для :code:`self.event.chat` #: ../../dispatcher/class_based_handlers/message.rst:27 msgid ":code:`self.from_user` is alias for :code:`self.event.from_user`" -msgstr "" -":code:`self.from_user` це псевдонім для :code:`self.event.from_user`" +msgstr ":code:`self.from_user` це псевдонім для :code:`self.event.from_user`" diff --git a/docs/locale/uk_UA/LC_MESSAGES/index.po b/docs/locale/uk_UA/LC_MESSAGES/index.po index d6003bba..638e457c 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/index.po +++ b/docs/locale/uk_UA/LC_MESSAGES/index.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: aiogram \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-26 23:17+0300\n" +"POT-Creation-Date: 2023-10-08 19:04+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -109,7 +109,7 @@ msgstr "Працює з `PyPy `_" #: ../../../README.rst:55 #, fuzzy msgid "" -"Supports `Telegram Bot API 6.8 `_ and" +"Supports `Telegram Bot API 6.9 `_ and" " gets fast updates to the latest versions of the Bot API" msgstr "" "Підтримує `Telegram Bot API 6.3 `_ та" diff --git a/docs/locale/uk_UA/LC_MESSAGES/migration_2_to_3.po b/docs/locale/uk_UA/LC_MESSAGES/migration_2_to_3.po index 6a8ef6be..66a4e4b9 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/migration_2_to_3.po +++ b/docs/locale/uk_UA/LC_MESSAGES/migration_2_to_3.po @@ -5,20 +5,19 @@ # msgid "" msgstr "" -"Project-Id-Version: aiogram\n" +"Project-Id-Version: aiogram\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-14 18:12+0300\n" +"POT-Creation-Date: 2023-10-08 19:04+0300\n" "PO-Revision-Date: 2023-09-14 18:34+0300\n" "Last-Translator: \n" -"Language-Team: \n" "Language: uk_UA\n" +"Language-Team: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 " -"&& (n%100<10 || n%100>=20) ? 1 : 2);\n" "Generated-By: Babel 2.12.1\n" -"X-Generator: Poedit 3.3.2\n" #: ../../migration_2_to_3.rst:3 msgid "Migration FAQ (2.x -> 3.0)" @@ -31,40 +30,41 @@ msgstr "Цей посібник все ще в розробці." #: ../../migration_2_to_3.rst:9 msgid "" "This version introduces numerous breaking changes and architectural " -"improvements. It helps reduce the count of global variables in your code, " -"provides useful mechanisms to modularize your code, and enables the creation of " -"shareable modules via packages on PyPI. It also makes middlewares and filters " -"more controllable, among other improvements." +"improvements. It helps reduce the count of global variables in your code," +" provides useful mechanisms to modularize your code, and enables the " +"creation of shareable modules via packages on PyPI. It also makes " +"middlewares and filters more controllable, among other improvements." msgstr "" -"Ця версія містить численні суттєві зміни та архітектурні покращення. Вона " -"допомагає зменшити кількість глобальних змінних у вашому коді, надає корисні " -"механізми для модуляризації вашого коду та дозволяє створювати спільні модулі " -"за допомогою пакетів на PyPI. Крім того, серед інших покращень, він робить " -"проміжне програмне забезпечення (мідлварі) та фільтри більш контрольованими." +"Ця версія містить численні суттєві зміни та архітектурні покращення. Вона" +" допомагає зменшити кількість глобальних змінних у вашому коді, надає " +"корисні механізми для модуляризації вашого коду та дозволяє створювати " +"спільні модулі за допомогою пакетів на PyPI. Крім того, серед інших " +"покращень, він робить проміжне програмне забезпечення (мідлварі) та " +"фільтри більш контрольованими." #: ../../migration_2_to_3.rst:15 msgid "" -"On this page, you can read about the changes made in relation to the last " -"stable 2.x version." +"On this page, you can read about the changes made in relation to the last" +" stable 2.x version." msgstr "" -"На цій сторінці ви можете прочитати про зміни, внесені в останню стабільну " -"версію 2.x." +"На цій сторінці ви можете прочитати про зміни, внесені в останню " +"стабільну версію 2.x." #: ../../migration_2_to_3.rst:19 msgid "" -"This page more closely resembles a detailed changelog than a migration guide, " -"but it will be updated in the future." +"This page more closely resembles a detailed changelog than a migration " +"guide, but it will be updated in the future." msgstr "" -"Ця сторінка більше нагадує детальний список змін, ніж посібник з міграції, але " -"вона буде оновлюватися в майбутньому." +"Ця сторінка більше нагадує детальний список змін, ніж посібник з " +"міграції, але вона буде оновлюватися в майбутньому." #: ../../migration_2_to_3.rst:22 msgid "" "Feel free to contribute to this page, if you find something that is not " "mentioned here." msgstr "" -"Не соромтеся зробити свій внесок у цю сторінку, якщо ви знайшли щось, про що " -"тут не згадано." +"Не соромтеся зробити свій внесок у цю сторінку, якщо ви знайшли щось, про" +" що тут не згадано." #: ../../migration_2_to_3.rst:26 msgid "Dispatcher" @@ -73,27 +73,30 @@ msgstr "" #: ../../migration_2_to_3.rst:28 msgid "" "The :class:`Dispatcher` class no longer accepts a `Bot` instance in its " -"initializer. Instead, the `Bot` instance should be passed to the dispatcher " -"only for starting polling or handling events from webhooks. This approach also " -"allows for the use of multiple bot instances simultaneously (\"multibot\")." +"initializer. Instead, the `Bot` instance should be passed to the " +"dispatcher only for starting polling or handling events from webhooks. " +"This approach also allows for the use of multiple bot instances " +"simultaneously (\"multibot\")." msgstr "" "Клас :class:`Dispatcher` більше не приймає екземпляр `Bot` у своєму " -"ініціалізаторі. Замість цього екземпляр `Bot` слід передавати диспетчеру тільки " -"для запуску полінгу або обробки подій з вебхуків. Такий підхід також дозволяє " -"використовувати декілька екземплярів бота одночасно (\"мультибот\")." +"ініціалізаторі. Замість цього екземпляр `Bot` слід передавати диспетчеру " +"тільки для запуску полінгу або обробки подій з вебхуків. Такий підхід " +"також дозволяє використовувати декілька екземплярів бота одночасно " +"(\"мультибот\")." #: ../../migration_2_to_3.rst:32 msgid "" -":class:`Dispatcher` now can be extended with another Dispatcher-like thing " -"named :class:`Router` (:ref:`Read more » `)." +":class:`Dispatcher` now can be extended with another Dispatcher-like " +"thing named :class:`Router` (:ref:`Read more » `)." msgstr "" -"Клас :class:`Dispatcher` тепер можна розширити ще одним об'єктом на кшталт " -"диспетчера з назвою :class:`Router` (:ref:`Детальніше » `)." +"Клас :class:`Dispatcher` тепер можна розширити ще одним об'єктом на " +"кшталт диспетчера з назвою :class:`Router` (:ref:`Детальніше » `)." #: ../../migration_2_to_3.rst:34 msgid "" -"With routes, you can easily modularize your code and potentially share these " -"modules between projects." +"With routes, you can easily modularize your code and potentially share " +"these modules between projects." msgstr "" "За допомогою роутерів ви можете легко модулювати свій код і потенційно " "перевикористовувати ці модулі між проектами." @@ -103,52 +106,54 @@ msgid "" "Removed the **_handler** suffix from all event handler decorators and " "registering methods. (:ref:`Read more » `)" msgstr "" -"Видалено суфікс **_handler** з усіх декораторів обробників подій та методів " -"реєстрації. (:ref:`Детальніше » `)" +"Видалено суфікс **_handler** з усіх декораторів обробників подій та " +"методів реєстрації. (:ref:`Детальніше » `)" #: ../../migration_2_to_3.rst:37 +#, fuzzy msgid "" -"The Executor has been entirely removed; you can now use the Dispatcher directly " -"to start polling or handle webhooks." +"The Executor has been entirely removed; you can now use the Dispatcher " +"directly to start poll the API or handle webhooks from it." msgstr "" -"Executor було повністю вилучено; тепер ви можете використовувати Dispatcher " -"безпосередньо для запуску полінгу або обробки вебхуків." +"Executor було повністю вилучено; тепер ви можете використовувати " +"Dispatcher безпосередньо для запуску полінгу або обробки вебхуків." #: ../../migration_2_to_3.rst:38 msgid "" -"The throttling method has been completely removed; you can now use middlewares " -"to control the execution context and implement any throttling mechanism you " -"desire." +"The throttling method has been completely removed; you can now use " +"middlewares to control the execution context and implement any throttling" +" mechanism you desire." msgstr "" "Метод дроселювання (Throttling) повністю вилучено; тепер ви можете " -"використовувати проміжне програмне забезпечення (middleware) для керування " -"контекстом виконання та реалізовувати будь-який механізм дроселювання за вашим " -"бажанням." +"використовувати проміжне програмне забезпечення (middleware) для " +"керування контекстом виконання та реалізовувати будь-який механізм " +"дроселювання за вашим бажанням." #: ../../migration_2_to_3.rst:40 msgid "" -"Removed global context variables from the API types, Bot and Dispatcher object, " -"From now on, if you want to access the current bot instance within handlers or " -"filters, you should accept the argument :code:`bot: Bot` and use it instead of :" -"code:`Bot.get_current()`. In middlewares, it can be accessed via :code:" -"`data[\"bot\"]`." +"Removed global context variables from the API types, Bot and Dispatcher " +"object, From now on, if you want to access the current bot instance " +"within handlers or filters, you should accept the argument :code:`bot: " +"Bot` and use it instead of :code:`Bot.get_current()`. In middlewares, it " +"can be accessed via :code:`data[\"bot\"]`." msgstr "" -"Вилучено глобальні контекстні змінні з типів API, об'єктів Bot та Dispatcher, " -"Відтепер, якщо ви хочете отримати доступ до поточного екземпляру бота в " -"обробниках або фільтрах, ви повинні приймати аргумент :code:`bot: Bot` і " -"використовувати його замість :code:`Bot.get_current()`. У проміжному " -"програмному забезпеченні (middleware) доступ до нього можна отримати через :" -"code:`data[\"bot\"]`." +"Вилучено глобальні контекстні змінні з типів API, об'єктів Bot та " +"Dispatcher, Відтепер, якщо ви хочете отримати доступ до поточного " +"екземпляру бота в обробниках або фільтрах, ви повинні приймати аргумент " +":code:`bot: Bot` і використовувати його замість " +":code:`Bot.get_current()`. У проміжному програмному забезпеченні " +"(middleware) доступ до нього можна отримати через :code:`data[\"bot\"]`." #: ../../migration_2_to_3.rst:44 msgid "" -"To skip pending updates, you should now call the :class:`aiogram.methods." -"delete_webhook.DeleteWebhook` method directly, rather than passing :code:" -"`skip_updates=True` to the start polling method." +"To skip pending updates, you should now call the " +":class:`aiogram.methods.delete_webhook.DeleteWebhook` method directly, " +"rather than passing :code:`skip_updates=True` to the start polling " +"method." msgstr "" -"Щоб пропустити очікувані оновлення, тепер вам слід викликати метод :class:" -"`aiogram.methods.delete_webhook.DeleteWebhook` безпосередньо, а не передавати :" -"code:`skip_updates=True` до методу запуску полінгу." +"Щоб пропустити очікувані оновлення, тепер вам слід викликати метод " +":class:`aiogram.methods.delete_webhook.DeleteWebhook` безпосередньо, а не" +" передавати :code:`skip_updates=True` до методу запуску полінгу." #: ../../migration_2_to_3.rst:49 msgid "Filtering events" @@ -156,64 +161,67 @@ msgstr "Фільтрація подій" #: ../../migration_2_to_3.rst:51 msgid "" -"Keyword filters can no longer be used; use filters explicitly. (`Read more » " -"`_)" +"Keyword filters can no longer be used; use filters explicitly. (`Read " +"more » `_)" msgstr "" -"Фільтри за ключовими словами більше не можна використовувати; використовуйте " -"фільтри явно. (`Детальніше » `_)" +"Фільтри за ключовими словами більше не можна використовувати; " +"використовуйте фільтри явно. (`Детальніше » " +"`_)" #: ../../migration_2_to_3.rst:52 msgid "" "Due to the removal of keyword filters, all previously enabled-by-default " -"filters (such as state and content_type) are now disabled. You must specify " -"them explicitly if you wish to use them. For example instead of using :code:" -"`@dp.message_handler(content_types=ContentType.PHOTO)` you should use :code:" -"`@router.message(F.photo)`" +"filters (such as state and content_type) are now disabled. You must " +"specify them explicitly if you wish to use them. For example instead of " +"using :code:`@dp.message_handler(content_types=ContentType.PHOTO)` you " +"should use :code:`@router.message(F.photo)`" msgstr "" -"У зв'язку з вилученням keyword фільтрів, всі раніше ввімкнені за замовчуванням " -"фільтри (такі як state і content_type) тепер вимкнено. Якщо ви бажаєте їх " -"використовувати, ви повинні вказати їх явно. Наприклад, замість :code:`@dp." -"message_handler(content_types=ContentType.PHOTO)` слід використовувати :code:" -"`@router.message(F.photo)`." +"У зв'язку з вилученням keyword фільтрів, всі раніше ввімкнені за " +"замовчуванням фільтри (такі як state і content_type) тепер вимкнено. Якщо" +" ви бажаєте їх використовувати, ви повинні вказати їх явно. Наприклад, " +"замість :code:`@dp.message_handler(content_types=ContentType.PHOTO)` слід" +" використовувати :code:`@router.message(F.photo)`." #: ../../migration_2_to_3.rst:57 +#, fuzzy msgid "" -"Most common filters have been replaced by the \"magic filter.\" (:ref:`Read " -"more » `)" +"Most common filters have been replaced with the \"magic filter.\" " +"(:ref:`Read more » `)" msgstr "" -"Більшість звичайних фільтрів було замінено на \"магічний фільтр\". (:ref:`Детальніше " -"далі » `)" +"Більшість звичайних фільтрів було замінено на \"магічний фільтр\". " +"(:ref:`Детальніше далі » `)" #: ../../migration_2_to_3.rst:58 msgid "" -"By default, the message handler now receives any content type. If you want a " -"specific one, simply add the appropriate filters (Magic or any other)." +"By default, the message handler now receives any content type. If you " +"want a specific one, simply add the appropriate filters (Magic or any " +"other)." msgstr "" -"За замовчуванням обробник повідомлень тепер отримує будь-який тип вмісту. Якщо " -"вам потрібен певний тип, просто додайте відповідні фільтри (Magic або будь-який " -"інший)." +"За замовчуванням обробник повідомлень тепер отримує будь-який тип вмісту." +" Якщо вам потрібен певний тип, просто додайте відповідні фільтри (Magic " +"або будь-який інший)." #: ../../migration_2_to_3.rst:60 msgid "" -"The state filter is no longer enabled by default. This means that if you used :" -"code:`state=\"*\"` in v2, you should not pass any state filter in v3. " -"Conversely, if the state was not specified in v2, you will now need to specify " -"it in v3." +"The state filter is no longer enabled by default. This means that if you " +"used :code:`state=\"*\"` in v2, you should not pass any state filter in " +"v3. Conversely, if the state was not specified in v2, you will now need " +"to specify it in v3." msgstr "" -"Фільтр стану більше не вмикається за замовчуванням. Це означає, що якщо ви " -"використовували :code:`state=\"*\"` у v2, вам не слід передавати фільтр стану у " -"v3. І навпаки, якщо стан не було вказано у v2, вам потрібно буде вказати його у " -"v3." +"Фільтр стану більше не вмикається за замовчуванням. Це означає, що якщо " +"ви використовували :code:`state=\"*\"` у v2, вам не слід передавати " +"фільтр стану у v3. І навпаки, якщо стан не було вказано у v2, вам " +"потрібно буде вказати його у v3." #: ../../migration_2_to_3.rst:63 msgid "" -"Added the possibility to register global filters for each router, which helps " -"to reduce code repetition and provides an easier way to control the purpose of " -"each router." +"Added the possibility to register global filters for each router, which " +"helps to reduce code repetition and provides an easier way to control the" +" purpose of each router." msgstr "" "Додано можливість реєстрації глобальних фільтрів для кожного роутера, що " -"допомагає зменшити повторення коду і полегшує контроль призначення кожного " -"роутера." +"допомагає зменшити повторення коду і полегшує контроль призначення " +"кожного роутера." #: ../../migration_2_to_3.rst:69 msgid "Bot API" @@ -221,46 +229,49 @@ msgstr "" #: ../../migration_2_to_3.rst:71 msgid "" -"All API methods are now classes with validation, implemented via `pydantic " -"`. These API calls are also available as methods in " -"the Bot class." +"All API methods are now classes with validation, implemented via " +"`pydantic `. These API calls are also " +"available as methods in the Bot class." msgstr "" -"Всі методи API тепер є класами з валідацією, реалізованими через `pydantic " -"`. Ці виклики API також доступні як методи в класі " -"Bot." +"Всі методи API тепер є класами з валідацією, реалізованими через " +"`pydantic `. Ці виклики API також доступні як" +" методи в класі Bot." #: ../../migration_2_to_3.rst:74 msgid "" -"More pre-defined Enums have been added and moved to the `aiogram.enums` sub-" -"package. For example, the chat type enum is now :class:`aiogram.enums.ChatType` " -"instead of :class:`aiogram.types.chat.ChatType`." +"More pre-defined Enums have been added and moved to the `aiogram.enums` " +"sub-package. For example, the chat type enum is now " +":class:`aiogram.enums.ChatType` instead of " +":class:`aiogram.types.chat.ChatType`." msgstr "" "Додано більше попередньо визначених enums та переміщено їх до підпакету " -"`aiogram.enums`. Наприклад, enum типу чату тепер має вигляд :class:`aiogram." -"enums.ChatType` замість :class:`aiogram.types.chat.ChatType`." +"`aiogram.enums`. Наприклад, enum типу чату тепер має вигляд " +":class:`aiogram.enums.ChatType` замість " +":class:`aiogram.types.chat.ChatType`." #: ../../migration_2_to_3.rst:76 msgid "" -"The HTTP client session has been separated into a container that can be reused " -"across different Bot instances within the application." +"The HTTP client session has been separated into a container that can be " +"reused across different Bot instances within the application." msgstr "" "Клієнтська сесія HTTP була відокремлена в контейнер, який можна повторно " "використовувати для різних екземплярів бота в додатку." #: ../../migration_2_to_3.rst:78 msgid "" -"API Exceptions are no longer classified by specific messages, as Telegram has " -"no documented error codes. However, all errors are classified by HTTP status " -"codes, and for each method, only one type of error can be associated with a " -"given code. Therefore, in most cases, you should check only the error type (by " -"status code) without inspecting the error message." +"API Exceptions are no longer classified by specific messages, as Telegram" +" has no documented error codes. However, all errors are classified by " +"HTTP status codes, and for each method, only one type of error can be " +"associated with a given code. Therefore, in most cases, you should check " +"only the error type (by status code) without inspecting the error " +"message." msgstr "" -"Виключення API більше не класифікуються за конкретними повідомленнями, оскільки " -"Telegram не має задокументованих кодів помилок. Проте всі помилки " -"класифікуються за кодами статусу HTTP, і для кожного методу з певним кодом може " -"бути пов'язаний лише один тип помилки. Тому в більшості випадків слід " -"перевіряти лише тип помилки (за кодом статусу), не перевіряючи повідомлення про " -"помилку." +"Виключення API більше не класифікуються за конкретними повідомленнями, " +"оскільки Telegram не має задокументованих кодів помилок. Проте всі " +"помилки класифікуються за кодами статусу HTTP, і для кожного методу з " +"певним кодом може бути пов'язаний лише один тип помилки. Тому в більшості" +" випадків слід перевіряти лише тип помилки (за кодом статусу), не " +"перевіряючи повідомлення про помилку." #: ../../migration_2_to_3.rst:88 msgid "Middlewares" @@ -268,33 +279,34 @@ msgstr "Проміжне ПО (Middlewares)" #: ../../migration_2_to_3.rst:90 msgid "" -"Middlewares can now control an execution context, e.g., using context managers. " -"(:ref:`Read more » `)" +"Middlewares can now control an execution context, e.g., using context " +"managers. (:ref:`Read more » `)" msgstr "" -"Проміжне програмне забезпечення тепер може керувати контекстом виконання, " -"наприклад, за допомогою менеджерів контексту. (:ref:`Детальніше » " +"Проміжне програмне забезпечення тепер може керувати контекстом виконання," +" наприклад, за допомогою менеджерів контексту. (:ref:`Детальніше » " "`)" #: ../../migration_2_to_3.rst:92 msgid "" -"All contextual data is now shared end-to-end between middlewares, filters, and " -"handlers. For example now you can easily pass some data into context inside " -"middleware and get it in the filters layer as the same way as in the handlers " -"via keyword arguments." +"All contextual data is now shared end-to-end between middlewares, " +"filters, and handlers. For example now you can easily pass some data into" +" context inside middleware and get it in the filters layer as the same " +"way as in the handlers via keyword arguments." msgstr "" -"Всі контекстні дані тепер наскрізно використовуються між проміжним програмним " -"забезпеченням, фільтрами та обробниками. Наприклад, тепер ви можете легко " -"передати деякі дані в контекст у проміжному програмному забезпеченні і отримати " -"їх у шарі фільтрів так само, як і в обробниках через аргументи ключових слів." +"Всі контекстні дані тепер наскрізно використовуються між проміжним " +"програмним забезпеченням, фільтрами та обробниками. Наприклад, тепер ви " +"можете легко передати деякі дані в контекст у проміжному програмному " +"забезпеченні і отримати їх у шарі фільтрів так само, як і в обробниках " +"через аргументи ключових слів." #: ../../migration_2_to_3.rst:95 msgid "" -"Added a mechanism named **flags** that helps customize handler behavior in " -"conjunction with middlewares. (:ref:`Read more » `)" +"Added a mechanism named **flags** that helps customize handler behavior " +"in conjunction with middlewares. (:ref:`Read more » `)" msgstr "" -"Додано механізм з назвою **flags**, який допомагає налаштовувати поведінку " -"обробника у поєднанні з проміжним програмним забезпеченням. (:ref:`Детальніше " -"про » `)" +"Додано механізм з назвою **flags**, який допомагає налаштовувати " +"поведінку обробника у поєднанні з проміжним програмним забезпеченням. " +"(:ref:`Детальніше про » `)" #: ../../migration_2_to_3.rst:100 msgid "Keyboard Markup" @@ -302,17 +314,20 @@ msgstr "Розмітка клавіатури" #: ../../migration_2_to_3.rst:102 msgid "" -"Now :class:`aiogram.types.inline_keyboard_markup.InlineKeyboardMarkup` and :" -"class:`aiogram.types.reply_keyboard_markup.ReplyKeyboardMarkup` no longer have " -"methods for extension, instead you have to use markup builders :class:`aiogram." -"utils.keyboard.ReplyKeyboardBuilder` and :class:`aiogram.utils.keyboard." -"KeyboardBuilder` respectively (:ref:`Read more » `)" +"Now :class:`aiogram.types.inline_keyboard_markup.InlineKeyboardMarkup` " +"and :class:`aiogram.types.reply_keyboard_markup.ReplyKeyboardMarkup` no " +"longer have methods for extension, instead you have to use markup " +"builders :class:`aiogram.utils.keyboard.ReplyKeyboardBuilder` and " +":class:`aiogram.utils.keyboard.KeyboardBuilder` respectively (:ref:`Read " +"more » `)" msgstr "" -"Тепер :class:`aiogram.types.inline_keyboard_markup.InlineKeyboardMarkup` та :" -"class:`aiogram.types.reply_keyboard_markup.ReplyKeyboardMarkup` більше не мають " -"методів для розширення, натомість вам слід використовувати будівники розмітки :" -"class:`aiogram.utils.keyboard.ReplyKeyboardBuilder` та :class:`aiogram.utils.keyboard.InlineKeyboardBuilder` " -"відповідно (:ref:`Детальніше » `)" +"Тепер :class:`aiogram.types.inline_keyboard_markup.InlineKeyboardMarkup` " +"та :class:`aiogram.types.reply_keyboard_markup.ReplyKeyboardMarkup` " +"більше не мають методів для розширення, натомість вам слід " +"використовувати будівники розмітки " +":class:`aiogram.utils.keyboard.ReplyKeyboardBuilder` та " +":class:`aiogram.utils.keyboard.InlineKeyboardBuilder` відповідно " +"(:ref:`Детальніше » `)" #: ../../migration_2_to_3.rst:110 msgid "Callbacks data" @@ -320,12 +335,13 @@ msgstr "" #: ../../migration_2_to_3.rst:112 msgid "" -"The callback data factory is now strictly typed using `pydantic `_ models. (:ref:`Read more » `)" -msgstr "" -"Фабрику даних зворотного виклику тепер строго типізовано за допомогою моделей " -"`pydantic `_. (:ref:`Детальніше » `_ models. (:ref:`Read more » `)" +msgstr "" +"Фабрику даних зворотного виклику тепер строго типізовано за допомогою " +"моделей `pydantic `_. (:ref:`Детальніше » " +"`)" #: ../../migration_2_to_3.rst:117 msgid "Finite State machine" @@ -333,17 +349,18 @@ msgstr "Скінченний автомат" #: ../../migration_2_to_3.rst:119 msgid "" -"State filters will no longer be automatically added to all handlers; you will " -"need to specify the state if you want to use it." +"State filters will no longer be automatically added to all handlers; you " +"will need to specify the state if you want to use it." msgstr "" -"Фільтри станів більше не будуть автоматично додаватися до всіх обробників; вам " -"потрібно буде вказати стан, якщо ви хочете його використати." +"Фільтри станів більше не будуть автоматично додаватися до всіх " +"обробників; вам потрібно буде вказати стан, якщо ви хочете його " +"використати." #: ../../migration_2_to_3.rst:121 msgid "" -"Added the possibility to change the FSM strategy. For example, if you want to " -"control the state for each user based on chat topics rather than the user in a " -"chat, you can specify this in the Dispatcher." +"Added the possibility to change the FSM strategy. For example, if you " +"want to control the state for each user based on chat topics rather than " +"the user in a chat, you can specify this in the Dispatcher." msgstr "" "Додано можливість змінювати стратегію FSM. Наприклад, якщо ви хочете " "контролювати стан для кожного користувача на основі топіків чату, а не " @@ -351,28 +368,32 @@ msgstr "" #: ../../migration_2_to_3.rst:124 msgid "" -"Now :class:`aiogram.fsm.state.State` and :class:`aiogram.fsm.state.StateGroup` " -"don't have helper methods like :code:`.set()`, :code:`.next()`, etc." +"Now :class:`aiogram.fsm.state.State` and " +":class:`aiogram.fsm.state.StateGroup` don't have helper methods like " +":code:`.set()`, :code:`.next()`, etc." msgstr "" -"Тепер :class:`aiogram.fsm.state.State` та :class:`aiogram.fsm.state.StateGroup` " -"не мають допоміжних методів, таких як :code:`.set()`, :code:`.next()` тощо." +"Тепер :class:`aiogram.fsm.state.State` та " +":class:`aiogram.fsm.state.StateGroup` не мають допоміжних методів, таких " +"як :code:`.set()`, :code:`.next()` тощо." #: ../../migration_2_to_3.rst:127 msgid "" -"Instead, you should set states by passing them directly to :class:`aiogram.fsm." -"context.FSMContext` (:ref:`Read more » `)" -msgstr "" -"Замість цього вам слід встановлювати стани, передаючи їх безпосередньо до :" -"class:`aiogram.fsm.context.FSMContext` (:ref:`Детальніше » `)" +msgstr "" +"Замість цього вам слід встановлювати стани, передаючи їх безпосередньо до" +" :class:`aiogram.fsm.context.FSMContext` (:ref:`Детальніше » `)" #: ../../migration_2_to_3.rst:129 msgid "" -"The state proxy is deprecated; you should update the state data by calling :" -"code:`state.set_data(...)` and :code:`state.get_data()` respectively." +"The state proxy is deprecated; you should update the state data by " +"calling :code:`state.set_data(...)` and :code:`state.get_data()` " +"respectively." msgstr "" -"Проксі стану є застарілим; вам слід оновити дані стану, викликавши :code:`state." -"set_data(...)` та :code:`state.get_data()` відповідно." +"Проксі стану є застарілим; вам слід оновити дані стану, викликавши " +":code:`state.set_data(...)` та :code:`state.get_data()` відповідно." #: ../../migration_2_to_3.rst:134 msgid "Sending Files" @@ -380,13 +401,13 @@ msgstr "Надсилання файлів" #: ../../migration_2_to_3.rst:136 msgid "" -"From now on, you should wrap files in an InputFile object before sending them, " -"instead of passing the IO object directly to the API method. (:ref:`Read more » " -"`)" +"From now on, you should wrap files in an InputFile object before sending " +"them, instead of passing the IO object directly to the API method. " +"(:ref:`Read more » `)" msgstr "" -"Відтепер перед відправкою файлів слід обертати їх в об'єкт InputFile замість " -"того, щоб передавати об'єкт вводу-виводу безпосередньо до методу API. (:ref:" -"`Детальніше » `)" +"Відтепер перед відправкою файлів слід обертати їх в об'єкт InputFile " +"замість того, щоб передавати об'єкт вводу-виводу безпосередньо до методу " +"API. (:ref:`Детальніше » `)" #: ../../migration_2_to_3.rst:141 msgid "Webhook" @@ -398,11 +419,11 @@ msgstr "Спрощено налаштування веб-застосунку ai #: ../../migration_2_to_3.rst:144 msgid "" -"By default, the ability to upload files has been added when you use the reply " -"function in a webhook." +"By default, the ability to upload files has been added when you `make " +"requests in response to updates `_ (available for webhook " +"only)." msgstr "" -"За замовчуванням додана можливість завантажувати файли, коли ви використовуєте " -"функцію відповіді у вебхук." #: ../../migration_2_to_3.rst:148 msgid "Telegram API Server" @@ -410,15 +431,25 @@ msgstr "Сервер Telegram API" #: ../../migration_2_to_3.rst:150 msgid "" -"The `server` parameter has been moved from the `Bot` instance to `api` in " -"`BaseSession`." +"The `server` parameter has been moved from the `Bot` instance to `api` in" +" `BaseSession`." msgstr "" -"Параметр `server` було перенесено з екземпляра `Bot` до `api` в `BaseSession`." +"Параметр `server` було перенесено з екземпляра `Bot` до `api` в " +"`BaseSession`." #: ../../migration_2_to_3.rst:151 msgid "" -"The constant `aiogram.bot.api.TELEGRAM_PRODUCTION` has been moved to `aiogram." -"client.telegram.PRODUCTION`." +"The constant `aiogram.bot.api.TELEGRAM_PRODUCTION` has been moved to " +"`aiogram.client.telegram.PRODUCTION`." msgstr "" -"Константа `aiogram.bot.api.TELEGRAM_PRODUCTION` була переміщена на `aiogram." -"client.telegram.PRODUCTION`." +"Константа `aiogram.bot.api.TELEGRAM_PRODUCTION` була переміщена на " +"`aiogram.client.telegram.PRODUCTION`." + +#~ msgid "" +#~ "By default, the ability to upload " +#~ "files has been added when you use" +#~ " the reply function in a webhook." +#~ msgstr "" +#~ "За замовчуванням додана можливість " +#~ "завантажувати файли, коли ви використовуєте" +#~ " функцію відповіді у вебхук." From a2ed142557785ceb7d34b1a9aa621e85dce29299 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Sun, 8 Oct 2023 19:15:53 +0300 Subject: [PATCH 5/6] Remove stale texts --- docs/locale/uk_UA/LC_MESSAGES/api/bot.po | 5 --- .../uk_UA/LC_MESSAGES/api/download_file.po | 3 -- .../uk_UA/LC_MESSAGES/api/enums/index.po | 3 -- .../api/enums/inline_query_result_type.po | 3 -- .../LC_MESSAGES/api/methods/send_dice.po | 11 ------ .../LC_MESSAGES/api/methods/send_photo.po | 11 ------ .../LC_MESSAGES/api/methods/stop_poll.po | 7 ---- .../uk_UA/LC_MESSAGES/api/session/base.po | 3 -- docs/locale/uk_UA/LC_MESSAGES/contributing.po | 37 ------------------- .../LC_MESSAGES/dispatcher/dispatcher.po | 7 ---- .../uk_UA/LC_MESSAGES/dispatcher/router.po | 9 ----- docs/locale/uk_UA/LC_MESSAGES/index.po | 27 -------------- docs/locale/uk_UA/LC_MESSAGES/install.po | 6 --- .../uk_UA/LC_MESSAGES/migration_2_to_3.po | 9 ----- .../uk_UA/LC_MESSAGES/utils/formatting.po | 6 --- .../uk_UA/LC_MESSAGES/utils/keyboard.po | 3 -- 16 files changed, 150 deletions(-) diff --git a/docs/locale/uk_UA/LC_MESSAGES/api/bot.po b/docs/locale/uk_UA/LC_MESSAGES/api/bot.po index d14cbae4..1f990065 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/api/bot.po +++ b/docs/locale/uk_UA/LC_MESSAGES/api/bot.po @@ -160,8 +160,3 @@ 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 "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/api/download_file.po b/docs/locale/uk_UA/LC_MESSAGES/api/download_file.po index 11675c94..c841be44 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/api/download_file.po +++ b/docs/locale/uk_UA/LC_MESSAGES/api/download_file.po @@ -217,6 +217,3 @@ msgstr "" #: ../../api/download_file.rst:93 msgid "Example:" msgstr "Приклад:" - -#~ msgid "Bot class" -#~ msgstr "Bot class" diff --git a/docs/locale/uk_UA/LC_MESSAGES/api/enums/index.po b/docs/locale/uk_UA/LC_MESSAGES/api/enums/index.po index 0bab4898..78c7f5b5 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/api/enums/index.po +++ b/docs/locale/uk_UA/LC_MESSAGES/api/enums/index.po @@ -24,6 +24,3 @@ msgstr "" #: ../../api/enums/index.rst:5 msgid "Here is list of all available enums:" msgstr "Ось список усіх доступних переліків:" - -#~ msgid "Types" -#~ msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/api/enums/inline_query_result_type.po b/docs/locale/uk_UA/LC_MESSAGES/api/enums/inline_query_result_type.po index 6b275e0f..0a534fc6 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/api/enums/inline_query_result_type.po +++ b/docs/locale/uk_UA/LC_MESSAGES/api/enums/inline_query_result_type.po @@ -29,6 +29,3 @@ msgstr "" #, fuzzy msgid "Source: https://core.telegram.org/bots/api#inlinequeryresult" msgstr "Джерело: https://core.telegram.org/bots/api#maskposition" - -#~ msgid "The part of the face relative to which the mask should be placed." -#~ msgstr "Частина обличчя, щодо якої слід розмістити маску." diff --git a/docs/locale/uk_UA/LC_MESSAGES/api/methods/send_dice.po b/docs/locale/uk_UA/LC_MESSAGES/api/methods/send_dice.po index 9e9cdd1f..c807f69c 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/api/methods/send_dice.po +++ b/docs/locale/uk_UA/LC_MESSAGES/api/methods/send_dice.po @@ -141,14 +141,3 @@ msgstr "" #: ../../api/methods/send_dice.rst:55 msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_dice_pm`" msgstr "" - -#~ msgid "" -#~ "Additional interface options. A JSON-" -#~ "serialized object for an `inline " -#~ "keyboard `_, " -#~ "`custom reply keyboard " -#~ "`_, instructions " -#~ "to remove reply keyboard or to " -#~ "force a reply from the user." -#~ msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/api/methods/send_photo.po b/docs/locale/uk_UA/LC_MESSAGES/api/methods/send_photo.po index f733d653..ea535aa3 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/api/methods/send_photo.po +++ b/docs/locale/uk_UA/LC_MESSAGES/api/methods/send_photo.po @@ -170,14 +170,3 @@ msgstr "" #: ../../api/methods/send_photo.rst:55 msgid ":meth:`aiogram.types.chat_join_request.ChatJoinRequest.answer_photo_pm`" msgstr "" - -#~ msgid "" -#~ "Additional interface options. A JSON-" -#~ "serialized object for an `inline " -#~ "keyboard `_, " -#~ "`custom reply keyboard " -#~ "`_, instructions " -#~ "to remove reply keyboard or to " -#~ "force a reply from the user." -#~ msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/api/methods/stop_poll.po b/docs/locale/uk_UA/LC_MESSAGES/api/methods/stop_poll.po index 269a1e06..d0315d1d 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/api/methods/stop_poll.po +++ b/docs/locale/uk_UA/LC_MESSAGES/api/methods/stop_poll.po @@ -82,10 +82,3 @@ msgstr "" #: ../../api/methods/stop_poll.rst:40 msgid "As reply into Webhook in handler" msgstr "" - -#~ msgid "" -#~ "A JSON-serialized object for a new" -#~ " message `inline keyboard " -#~ "`_." -#~ msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/api/session/base.po b/docs/locale/uk_UA/LC_MESSAGES/api/session/base.po index 6466c397..8ce40880 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/api/session/base.po +++ b/docs/locale/uk_UA/LC_MESSAGES/api/session/base.po @@ -76,6 +76,3 @@ msgstr "" #: aiogram.client.session.base.BaseSession.stream_content:1 of msgid "Stream reader" msgstr "" - -#~ msgid "Clean data before send" -#~ msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/contributing.po b/docs/locale/uk_UA/LC_MESSAGES/contributing.po index 7cf1b5d8..57c134f1 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/contributing.po +++ b/docs/locale/uk_UA/LC_MESSAGES/contributing.po @@ -319,40 +319,3 @@ msgid "" " me a pizza or a beer, you can do it on `OpenCollective " "`_." msgstr "" - -#~ msgid "" -#~ "So, if you want to financially " -#~ "support the project, or, for example," -#~ " give me a pizza or a beer, " -#~ "you can do it on `OpenCollective " -#~ "`_ or `Patreon " -#~ "`_." -#~ msgstr "" - -#~ msgid "Linux/ macOS:" -#~ msgstr "" - -#~ msgid "Windows PoweShell" -#~ msgstr "" - -#~ msgid "" -#~ "To check it worked, use described " -#~ "command, it should show the :code:`pip`" -#~ " location inside the isolated environment" -#~ msgstr "" - -#~ msgid "Linux, macOS:" -#~ msgstr "" - -#~ msgid "" -#~ "Also make you shure you have the" -#~ " latest pip version in your virtual" -#~ " environment to avoid errors on next" -#~ " steps:" -#~ msgstr "" - -#~ msgid "" -#~ "After activating the environment install " -#~ "`aiogram` from sources and their " -#~ "dependencies:" -#~ msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/dispatcher/dispatcher.po b/docs/locale/uk_UA/LC_MESSAGES/dispatcher/dispatcher.po index 6ec3c401..409a09a9 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/dispatcher/dispatcher.po +++ b/docs/locale/uk_UA/LC_MESSAGES/dispatcher/dispatcher.po @@ -190,10 +190,3 @@ msgid "" msgstr "" "Усі оновлення можна передати диспетчеру через " ":obj:`Dispatcher.feed_update(bot=..., update=...)` method:" - -#~ msgid "Poling timeout" -#~ msgstr "Час очікування на відповідь" - -#~ msgid "`Observer `__" -#~ msgstr "`Observer `__" - diff --git a/docs/locale/uk_UA/LC_MESSAGES/dispatcher/router.po b/docs/locale/uk_UA/LC_MESSAGES/dispatcher/router.po index 6342649a..ebf4317d 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/dispatcher/router.po +++ b/docs/locale/uk_UA/LC_MESSAGES/dispatcher/router.po @@ -284,12 +284,3 @@ msgstr "Приклад вкладених маршрутизаторів" #: ../../dispatcher/router.rst:214 msgid "In this case update propagation flow will have form:" msgstr "У цьому випадку потік розповсюдження оновлення матиме вигляд:" - -#~ msgid "" -#~ "By default Router already has an " -#~ "update handler which route all event " -#~ "types to another observers." -#~ msgstr "" -#~ "За замовчуванням маршрутизатор уже має " -#~ "обробник подій, який направляє всі типи" -#~ " подій іншим обсерверам." diff --git a/docs/locale/uk_UA/LC_MESSAGES/index.po b/docs/locale/uk_UA/LC_MESSAGES/index.po index 638e457c..9c7c9d02 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/index.po +++ b/docs/locale/uk_UA/LC_MESSAGES/index.po @@ -214,30 +214,3 @@ msgstr "Приклад використання" #: ../../index.rst:9 msgid "Contents" msgstr "Зміст" - -#~ msgid "[Telegram] aiogram live" -#~ msgstr "" - -#~ msgid "aiogram |beta badge|" -#~ msgstr "" - -#~ msgid "Beta badge" -#~ msgstr "" - -#~ msgid "This version is still in development!" -#~ msgstr "Ще в розробці!" - -#~ msgid "**Breaking News:**" -#~ msgstr "**Важливі новини**" - -#~ msgid "*aiogram* 3.0 has breaking changes." -#~ msgstr "*aiogram* 3.0 має зміни, що ламають зворотну сумісність." - -#~ msgid "It breaks backward compatibility by introducing new breaking changes!" -#~ msgstr "Порушує зворотну сумісність, вводячи нові критичні зміни!" - -#~ msgid "" -#~ "Uses powerful `magic filters " -#~ "`" -#~ msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/install.po b/docs/locale/uk_UA/LC_MESSAGES/install.po index 583dda9a..438b02d4 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/install.po +++ b/docs/locale/uk_UA/LC_MESSAGES/install.po @@ -38,9 +38,3 @@ msgstr "Бета-версія (3.х)" #: ../../install.rst:30 msgid "From GitHub" msgstr "З GitHub" - -#~ msgid "Stable (2.x)" -#~ msgstr "Стабільна версія (2.x)" - -#~ msgid "From AUR" -#~ msgstr "З AUR" diff --git a/docs/locale/uk_UA/LC_MESSAGES/migration_2_to_3.po b/docs/locale/uk_UA/LC_MESSAGES/migration_2_to_3.po index 66a4e4b9..2ffb754f 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/migration_2_to_3.po +++ b/docs/locale/uk_UA/LC_MESSAGES/migration_2_to_3.po @@ -444,12 +444,3 @@ msgid "" msgstr "" "Константа `aiogram.bot.api.TELEGRAM_PRODUCTION` була переміщена на " "`aiogram.client.telegram.PRODUCTION`." - -#~ msgid "" -#~ "By default, the ability to upload " -#~ "files has been added when you use" -#~ " the reply function in a webhook." -#~ msgstr "" -#~ "За замовчуванням додана можливість " -#~ "завантажувати файли, коли ви використовуєте" -#~ " функцію відповіді у вебхук." diff --git a/docs/locale/uk_UA/LC_MESSAGES/utils/formatting.po b/docs/locale/uk_UA/LC_MESSAGES/utils/formatting.po index bb92b9f9..a61c73e0 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/utils/formatting.po +++ b/docs/locale/uk_UA/LC_MESSAGES/utils/formatting.po @@ -441,9 +441,3 @@ msgid "" "with type " ":obj:`aiogram.enums.message_entity_type.MessageEntityType.CUSTOM_EMOJI`" msgstr "" - -#~ msgid "line marker, by default is :code:`- `" -#~ msgstr "" - -#~ msgid "number format, by default :code:`{}. `" -#~ msgstr "" diff --git a/docs/locale/uk_UA/LC_MESSAGES/utils/keyboard.po b/docs/locale/uk_UA/LC_MESSAGES/utils/keyboard.po index c6b0a3f2..71ae13f3 100644 --- a/docs/locale/uk_UA/LC_MESSAGES/utils/keyboard.po +++ b/docs/locale/uk_UA/LC_MESSAGES/utils/keyboard.po @@ -177,6 +177,3 @@ msgstr "Додавання нової кнопки до розмітки" #: ../../utils/keyboard.rst:90 msgid "Construct an ReplyKeyboardMarkup" msgstr "Створення ReplyKeyboardMarkup" - -#~ msgid "Base builder" -#~ msgstr "Базовий конструктор" From cf3044687aa91e7b2ef4998ca67c5cbcc85228ad Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Sun, 8 Oct 2023 19:22:58 +0300 Subject: [PATCH 6/6] Update changelog instructions in PR workflow Updated the instructions for adding changelog entries in the pull_request_changelog.yml workflow file. The changes provide more specific instructions on how to name and write the changelog entry file. This was done to provide clearer instructions to contributors updating the changelog. --- .github/workflows/pull_request_changelog.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull_request_changelog.yml b/.github/workflows/pull_request_changelog.yml index 7f9d7b86..9115e29a 100644 --- a/.github/workflows/pull_request_changelog.yml +++ b/.github/workflows/pull_request_changelog.yml @@ -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 .` to create a file in the change directory and then write a description on that file. + Changes file should be named like `..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()"