aiogram/docs/locale/en/LC_MESSAGES/api/methods/copy_message.po
Alex Root Junior f4251382e8
Remove filters factory, introduce docs translation (#978)
* Rewrite filters

* Update README.rst

* Fixed tests

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

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

* Fixed mypy

* Update tests

* Disable Python 3.11

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

* Added #990 to the changelog

* Added #942 to the changelog

* Fixed coverage

* Update poetry and dependencies

* Fixed mypy

* Remove deprecated code

* Added more tests, update pyproject.toml

* Partial update docs

* Added initial Docs translation files

* Added more changes

* Added log message when connection is established in polling process

* Fixed action

* Disable lint for PyPy

* Added changelog for docs translation
2022-10-02 00:04:31 +03:00

143 lines
4.5 KiB
Text

# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022, aiogram Team
# This file is distributed under the same license as the aiogram package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: aiogram \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-10-01 22:51+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.10.3\n"
#: ../../api/methods/copy_message.rst:3
msgid "copyMessage"
msgstr ""
#: ../../api/methods/copy_message.rst:5
msgid "Returns: :obj:`MessageId`"
msgstr ""
#: aiogram.methods.copy_message.CopyMessage:1 of
msgid ""
"Use this method to copy messages of any kind. Service messages and "
"invoice messages can't be copied. A quiz "
":class:`aiogram.methods.poll.Poll` can be copied only if the value of the"
" field *correct_option_id* is known to the bot. The method is analogous "
"to the method :class:`aiogram.methods.forward_message.ForwardMessage`, "
"but the copied message doesn't have a link to the original message. "
"Returns the :class:`aiogram.types.message_id.MessageId` of the sent "
"message on success."
msgstr ""
#: aiogram.methods.copy_message.CopyMessage:3 of
msgid "Source: https://core.telegram.org/bots/api#copymessage"
msgstr ""
#: ../../docstring aiogram.methods.copy_message.CopyMessage.chat_id:1 of
msgid ""
"Unique identifier for the target chat or username of the target channel "
"(in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.copy_message.CopyMessage.from_chat_id:1 of
msgid ""
"Unique identifier for the chat where the original message was sent (or "
"channel username in the format :code:`@channelusername`)"
msgstr ""
#: ../../docstring aiogram.methods.copy_message.CopyMessage.message_id:1 of
msgid "Message identifier in the chat specified in *from_chat_id*"
msgstr ""
#: ../../docstring aiogram.methods.copy_message.CopyMessage.caption:1 of
msgid ""
"New caption for media, 0-1024 characters after entities parsing. If not "
"specified, the original caption is kept"
msgstr ""
#: ../../docstring aiogram.methods.copy_message.CopyMessage.parse_mode:1 of
msgid ""
"Mode for parsing entities in the new caption. See `formatting options "
"<https://core.telegram.org/bots/api#formatting-options>`_ for more "
"details."
msgstr ""
#: ../../docstring aiogram.methods.copy_message.CopyMessage.caption_entities:1
#: of
msgid ""
"A JSON-serialized list of special entities that appear in the new "
"caption, which can be specified instead of *parse_mode*"
msgstr ""
#: ../../docstring
#: aiogram.methods.copy_message.CopyMessage.disable_notification:1 of
msgid ""
"Sends the message `silently <https://telegram.org/blog/channels-2-0"
"#silent-messages>`_. Users will receive a notification with no sound."
msgstr ""
#: ../../docstring aiogram.methods.copy_message.CopyMessage.protect_content:1
#: of
msgid "Protects the contents of the sent message from forwarding and saving"
msgstr ""
#: ../../docstring
#: aiogram.methods.copy_message.CopyMessage.reply_to_message_id:1 of
msgid "If the message is a reply, ID of the original message"
msgstr ""
#: ../../docstring
#: aiogram.methods.copy_message.CopyMessage.allow_sending_without_reply:1 of
msgid ""
"Pass :code:`True` if the message should be sent even if the specified "
"replied-to message is not found"
msgstr ""
#: ../../docstring aiogram.methods.copy_message.CopyMessage.reply_markup:1 of
msgid ""
"Additional interface options. A JSON-serialized object for an `inline "
"keyboard <https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-"
"updating>`_, `custom reply keyboard "
"<https://core.telegram.org/bots#keyboards>`_, instructions to remove "
"reply keyboard or to force a reply from the user."
msgstr ""
#: ../../api/methods/copy_message.rst:14
msgid "Usage"
msgstr ""
#: ../../api/methods/copy_message.rst:17
msgid "As bot method"
msgstr ""
#: ../../api/methods/copy_message.rst:25
msgid "Method as object"
msgstr ""
#: ../../api/methods/copy_message.rst:27
msgid "Imports:"
msgstr ""
#: ../../api/methods/copy_message.rst:29
msgid ":code:`from aiogram.methods.copy_message import CopyMessage`"
msgstr ""
#: ../../api/methods/copy_message.rst:30
msgid "alias: :code:`from aiogram.methods import CopyMessage`"
msgstr ""
#: ../../api/methods/copy_message.rst:33
msgid "With specific bot"
msgstr ""
#: ../../api/methods/copy_message.rst:40
msgid "As reply into Webhook in handler"
msgstr ""