mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-14 07:08:55 -05:00
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
176 lines
7.9 KiB
Plaintext
176 lines
7.9 KiB
Plaintext
msgid ""
|
||
msgstr ""
|
||
"Project-Id-Version: red-discordbot\n"
|
||
"POT-Creation-Date: 2021-05-23 14:25+0000\n"
|
||
"Last-Translator: \n"
|
||
"Language-Team: Russian\n"
|
||
"MIME-Version: 1.0\n"
|
||
"Content-Type: text/plain; charset=UTF-8\n"
|
||
"Content-Transfer-Encoding: 8bit\n"
|
||
"Generated-By: redgettext 3.3\n"
|
||
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
|
||
"X-Crowdin-Project: red-discordbot\n"
|
||
"X-Crowdin-Project-ID: 289505\n"
|
||
"X-Crowdin-Language: ru\n"
|
||
"X-Crowdin-File-ID: 31\n"
|
||
"Language: ru_RU\n"
|
||
|
||
#: redbot/cogs/cleanup/cleanup.py:23
|
||
#, docstring
|
||
msgid "This cog contains commands used for \"cleaning up\" (deleting) messages.\n\n"
|
||
" This is designed as a moderator tool and offers many convenient use cases.\n"
|
||
" All cleanup commands only apply to the channel the command is executed in.\n\n"
|
||
" Messages older than two weeks cannot be mass deleted.\n"
|
||
" This is a limitation of the API.\n"
|
||
" "
|
||
msgstr ""
|
||
|
||
#: redbot/cogs/cleanup/cleanup.py:54
|
||
msgid "Are you sure you want to delete {number} messages? (y/n)"
|
||
msgstr "Вы уверены, что хотите удалить {number} сообщений? (y/n)"
|
||
|
||
#: redbot/cogs/cleanup/cleanup.py:68
|
||
msgid "Cancelled."
|
||
msgstr "Отменено."
|
||
|
||
#: redbot/cogs/cleanup/cleanup.py:144
|
||
#, docstring
|
||
msgid "Base command for deleting messages."
|
||
msgstr "Базовая команда для удаления сообщений."
|
||
|
||
#: redbot/cogs/cleanup/cleanup.py:154
|
||
#, docstring
|
||
msgid "Delete the last X messages matching the specified text in the current channel.\n\n"
|
||
" Example:\n"
|
||
" - `[p]cleanup text \"test\" 5`\n\n"
|
||
" Remember to use double quotes.\n\n"
|
||
" **Arguments:**\n\n"
|
||
" - `<number>` The max number of messages to cleanup. Must be a positive integer.\n"
|
||
" - `<delete_pinned>` Whether to delete pinned messages or not. Defaults to False\n"
|
||
" "
|
||
msgstr ""
|
||
|
||
#: redbot/cogs/cleanup/cleanup.py:209
|
||
#, docstring
|
||
msgid "Delete the last X messages from a specified user in the current channel.\n\n"
|
||
" Examples:\n"
|
||
" - `[p]cleanup user @Twentysix 2`\n"
|
||
" - `[p]cleanup user Red 6`\n\n"
|
||
" **Arguments:**\n\n"
|
||
" - `<user>` The user whose messages are to be cleaned up.\n"
|
||
" - `<number>` The max number of messages to cleanup. Must be a positive integer.\n"
|
||
" - `<delete_pinned>` Whether to delete pinned messages or not. Defaults to False\n"
|
||
" "
|
||
msgstr ""
|
||
|
||
#: redbot/cogs/cleanup/cleanup.py:282
|
||
#, docstring
|
||
msgid "Delete all messages after a specified message.\n\n"
|
||
" To get a message id, enable developer mode in Discord's\n"
|
||
" settings, 'appearance' tab. Then right click a message\n"
|
||
" and copy its id.\n"
|
||
" Replying to a message will cleanup all messages after it.\n\n"
|
||
" **Arguments:**\n\n"
|
||
" - `<message_id>` The id of the message to cleanup after. This message won't be deleted.\n"
|
||
" - `<delete_pinned>` Whether to delete pinned messages or not. Defaults to False\n"
|
||
" "
|
||
msgstr ""
|
||
|
||
#: redbot/cogs/cleanup/cleanup.py:303 redbot/cogs/cleanup/cleanup.py:357
|
||
msgid "Message not found."
|
||
msgstr "Сообщение не найдено."
|
||
|
||
#: redbot/cogs/cleanup/cleanup.py:335
|
||
#, docstring
|
||
msgid "Deletes X messages before the specified message.\n\n"
|
||
" To get a message id, enable developer mode in Discord's\n"
|
||
" settings, 'appearance' tab. Then right click a message\n"
|
||
" and copy its id.\n"
|
||
" Replying to a message will cleanup all messages before it.\n\n"
|
||
" **Arguments:**\n\n"
|
||
" - `<message_id>` The id of the message to cleanup before. This message won't be deleted.\n"
|
||
" - `<number>` The max number of messages to cleanup. Must be a positive integer.\n"
|
||
" - `<delete_pinned>` Whether to delete pinned messages or not. Defaults to False\n"
|
||
" "
|
||
msgstr ""
|
||
|
||
#: redbot/cogs/cleanup/cleanup.py:390
|
||
#, docstring
|
||
msgid "Delete the messages between Message One and Message Two, providing the messages IDs.\n\n"
|
||
" The first message ID should be the older message and the second one the newer.\n\n"
|
||
" Example:\n"
|
||
" - `[p]cleanup between 123456789123456789 987654321987654321`\n\n"
|
||
" **Arguments:**\n\n"
|
||
" - `<one>` The id of the message to cleanup after. This message won't be deleted.\n"
|
||
" - `<two>` The id of the message to cleanup before. This message won't be deleted.\n"
|
||
" - `<delete_pinned>` Whether to delete pinned messages or not. Defaults to False\n"
|
||
" "
|
||
msgstr "Удалите сообщения между сообщением 1 и сообщением 2, указав идентификаторы сообщений.\n\n"
|
||
" Первый идентификатор сообщения должен быть старым сообщением, а второй— новым.\n\n"
|
||
" Пример:\n"
|
||
" - `[p]очистка между 123456789123456789 987654321987654321`\n\n"
|
||
" **Аргументы:**\n\n"
|
||
" - `<one>` Идентификатор сообщения для очистки. Это сообщение не будет удалено.\n"
|
||
" - `<two>` Идентификатор сообщения, который нужно очистить раньше. Это сообщение не будет удалено.\n"
|
||
" - `<delete_pinned>` Удалять или нет. По умолчанию Ложь\n"
|
||
" "
|
||
|
||
#: redbot/cogs/cleanup/cleanup.py:438
|
||
#, docstring
|
||
msgid "Delete the last X messages in the current channel.\n\n"
|
||
" Example:\n"
|
||
" - `[p]cleanup messages 26`\n\n"
|
||
" **Arguments:**\n\n"
|
||
" - `<number>` The max number of messages to cleanup. Must be a positive integer.\n"
|
||
" - `<delete_pinned>` Whether to delete pinned messages or not. Defaults to False\n"
|
||
" "
|
||
msgstr ""
|
||
|
||
#: redbot/cogs/cleanup/cleanup.py:476
|
||
#, docstring
|
||
msgid "Clean up command messages and messages from the bot in the current channel.\n\n"
|
||
" Can only cleanup custom commands and alias commands if those cogs are loaded.\n\n"
|
||
" **Arguments:**\n\n"
|
||
" - `<number>` The max number of messages to cleanup. Must be a positive integer.\n"
|
||
" - `<delete_pinned>` Whether to delete pinned messages or not. Defaults to False\n"
|
||
" "
|
||
msgstr ""
|
||
|
||
#: redbot/cogs/cleanup/cleanup.py:564
|
||
#, docstring
|
||
msgid "Clean up messages owned by the bot in the current channel.\n\n"
|
||
" By default, all messages are cleaned. If a second argument is specified,\n"
|
||
" it is used for pattern matching - only messages containing the given text will be deleted.\n\n"
|
||
" Examples:\n"
|
||
" - `[p]cleanup self 6`\n"
|
||
" - `[p]cleanup self 10 Pong`\n"
|
||
" - `[p]cleanup self 7 \"\" True`\n\n"
|
||
" **Arguments:**\n\n"
|
||
" - `<number>` The max number of messages to cleanup. Must be a positive integer.\n"
|
||
" - `<match_pattern>` The text that messages must contain to be deleted. Use \"\" to skip this.\n"
|
||
" - `<delete_pinned>` Whether to delete pinned messages or not. Defaults to False\n"
|
||
" "
|
||
msgstr ""
|
||
|
||
#: redbot/cogs/cleanup/cleanup.py:650
|
||
#, docstring
|
||
msgid "Deletes duplicate messages in the channel from the last X messages and keeps only one copy.\n\n"
|
||
" Defaults to 50.\n\n"
|
||
" **Arguments:**\n\n"
|
||
" - `<number>` The number of messages to check for duplicates. Must be a positive integer.\n"
|
||
" "
|
||
msgstr ""
|
||
|
||
#: redbot/cogs/cleanup/converters.py:17
|
||
msgid "{} doesn't look like a valid message ID."
|
||
msgstr "{} не похож на действительный ID сообщения."
|
||
|
||
#: redbot/cogs/cleanup/converters.py:29
|
||
msgid "{arg} is not an integer."
|
||
msgstr "{arg} не является целым числом."
|
||
|
||
#: redbot/cogs/cleanup/converters.py:31
|
||
msgid "{arg} is not a positive integer."
|
||
msgstr "{arg} не является положительным целым числом."
|
||
|