mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-20 18:06:08 -05:00
Update Translations (#2486)
Also included a Makefile recipe which makes use of the Crowdin CLI's `crowdin download` command. This requires whoever is using it to provide the project's API key in an environment variable, but we may automate this at some point. Signed-off-by: Toby Harradine <tobyharradine@gmail.com>
This commit is contained in:
@@ -411,10 +411,12 @@ class CustomCommands(commands.Cog):
|
||||
_type = _("Random") if len(responses) > 1 else _("Normal")
|
||||
|
||||
text = _(
|
||||
"Command: {}\n"
|
||||
"Author: {}\n"
|
||||
"Created: {}\n"
|
||||
"Type: {}\n".format(command_name, author, cmd["created_at"], _type)
|
||||
"Command: {command_name}\n"
|
||||
"Author: {author}\n"
|
||||
"Created: {created_at}\n"
|
||||
"Type: {type}\n"
|
||||
).format(
|
||||
command_name=command_name, author=author, created_at=cmd["created_at"], type=_type
|
||||
)
|
||||
|
||||
cooldowns = cmd["cooldowns"]
|
||||
@@ -422,7 +424,7 @@ class CustomCommands(commands.Cog):
|
||||
if cooldowns:
|
||||
cooldown_text = _("Cooldowns:\n")
|
||||
for rate, per in cooldowns.items():
|
||||
cooldown_text += _("{} seconds per {}\n".format(per, rate))
|
||||
cooldown_text += _("{num} seconds per {period}\n").format(num=per, period=rate)
|
||||
text += cooldown_text
|
||||
|
||||
text += _("Responses:\n")
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:41-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:06\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,52 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: ar_SA\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:42-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:06\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,52 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: bg_BG\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:42-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:07\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Danish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,52 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: da_DK\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:42-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:07\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: German\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,53 +16,176 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: de_DE\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
msgstr "Wilkommen zu dem interaktiven zufällig {} ersteller!\n"
|
||||
"Jede von von Ihnen gesendete nachricht, wird als zufällige nachricht zur Auswahl für den {} auslöser hinzugefügt. Um das Interaktive Menü zu verlassen, geben Sie `{}`"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr "Fügen Sie eine zufällige Antwort:"
|
||||
msgstr "Füge eine zufällige Antwort hinzu:"
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
msgstr "Möchten Sie eine \"zufällige\" cc erstellen? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr "Welche Reaktion willst du?"
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr "Benutzerdefinierten Commands erfolgreich hinzugefügt."
|
||||
msgstr "Benutzerdefinierter Befehl erfolgreich hinzugefügt."
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
msgstr "Dieser Command ist bereits vorhanden. Verwenden Sie \"{}\", um ihn zu bearbeiten."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
msgstr "Dieser Befehl ist bereits ein Standart Command."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr "Benutzerdefinierten Command erfolgreich bearbeitet."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
msgstr "Dieser Command ist nicht vorhanden. Verwenden Sie \"{}\", um ihn hinzuzufügen."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr "Benutzerdefinierten Command erfolgreich gelöscht."
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr "Dieser Command ist nicht vorhanden."
|
||||
msgstr "Dieser Befehl existiert nicht."
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
msgstr "Es gibt keine benutzerdefinierte Commands auf diesem Server. Verwenden Sie \"{}\" um welche zu erstellen."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr "Dieser Command hat keinen Cooldown."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr "{} muss einer von {} sein"
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr "Custom Command Cooldown erfolgreich bearbeitet."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr "Dieser Command existiert nicht. Nutze `{command}`, um ihn hinzuzufügen."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr "Lösche einen Custom Command.\n\n"
|
||||
" Beispiel:\n"
|
||||
" - `[p]customcom delete deinCommand`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr "Benutzerdefinierter Befehl erfolgreich gelöscht."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr "Bearbeite einen Custom Command.\n\n"
|
||||
" Beispiel:\n"
|
||||
" - `[p]customcom edit deinCommand Text`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr "Benutzerdefinierter Befehl erfolgreich bearbeitet."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr "Es existieren keine Custom Commands auf diesem Server. Nutze `{command}`, um welche hinzuzufügen."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr "Custom Command Liste"
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr "Seite {num}/{total}"
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr "Zu viele Argumente!"
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:42-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:07\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Greek\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,52 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: el_GR\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:43-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:08\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Pirate English\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,52 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: en_PT\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:41-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:06\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,53 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: es_ES\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
msgstr "Bienvenido al fabricante al azar {}!\n"
|
||||
"Todos los mensajes que tu envías serán añadidos como aleatoriamente como una respuesta a elegir de esto {} sea provocado. Para salir de este menú interactivo, escribe \" {} \""
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr "Agrega una respuesta aleatoria:"
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr "¿Qué tipo de respuesta quieres?"
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr "Comando personalizado añadido satifactoriamente."
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
msgstr "Este comando ya existe. Utilice '{}' para editarlo."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
msgstr "Este comando es ya un comando estándar."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr "Comando personalizado editado con éxito."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
msgstr "No existe este comando. Utilice '{}' para agregarlo."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr "Comando personalizado eliminado satifactoriamente."
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr "Este comando no existe."
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
msgstr "Hay no hay comandos personalizados en este Servidor. Utilice '{}' para comenzar a añadir algunos."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr "Comando personalizado eliminado satifactoriamente."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr "Comando personalizado editado con éxito."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:42-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:07\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Finnish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,52 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: fi_FI\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:41-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:06\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,52 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: fr_FR\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr "Ajouter une réponse aléatoire:"
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr "Quelle réponse voulez-vous?"
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr "Commande personnalisée ajoutée avec succès."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr "Cette commande n'existe pas."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr "La commande personnalisée a été supprimée avec succès."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr "Commande personnalisée modifiée avec succès."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:42-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:07\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,52 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: hu_HU\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:43-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:08\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Indonesian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,53 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: id_ID\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
msgstr "Selamat datang di pembuat interaktif {} acak!\n"
|
||||
"Setiap pesan yang anda kirim akan ditambahkan sebagai salah satu respon acak untuk dipilih setelah ini {} dipicu. Untuk keluar dari menu interaktif ini, ketik `{}`"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr "Tambahkan tanggapan acak:"
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
msgstr "Apakah Anda ingin membuat cc 'acak'? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr "Tanggapan apa yang anda inginkan?"
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr "Perintah kustom berhasil ditambahkan."
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
msgstr "Perintah ini sudah ada. Gunakan '{}' untuk mengeditnya."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
msgstr "Perintah ini sudah perintah standar."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr "Perintah kustom berhasil diubah."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
msgstr "Perintah ini tidak tersedia. Gunakan '{}' untuk menambahkannya."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr "Perintah kustom berhasil dihapus."
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr "Perintah tersebut tidak ada."
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
msgstr "Tidak ada perintah kustom dalam server ini. Gunakan '{}' untuk mulai menambahkannya."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr "Perintah kustom berhasil dihapus."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr "Perintah kustom berhasil diubah."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:42-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:07\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Italian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,52 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: it_IT\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
msgstr "Benvenuto al creatore di {} casuale interattiva! Ogni messaggio inviato verrà aggiunto come uno della risposta casuale da scegliere una volta questo {} viene attivato. Per uscire da questo menu interattivo, digitare '{}'"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr "Aggiungere una risposta casuale:"
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
msgstr "Vuoi creare un 'randomizzato' cc? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr "Quale risposta vuoi?"
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr "Comando personalizzato aggiunto con successo."
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
msgstr "Questo comando esiste già. Utilizzare '{}' per modificarlo."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
msgstr "Che è già un comando standard."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr "Comando personalizzato modificato con successo."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
msgstr "Tale comando non esiste. Utilizzare '{}' per aggiungerlo."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr "Comando personalizzato eliminato correttamente."
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr "Tale comando non esiste."
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
msgstr "Non sono presenti comandi personalizzati in questa gilda. Utilizzare '{}' per iniziare ad aggiungere alcuni."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr "Comando personalizzato eliminato correttamente."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr "Comando personalizzato modificato con successo."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:42-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:07\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Japanese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,52 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: ja_JP\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:42-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:07\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Korean\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,53 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: ko_KR\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
msgstr "대화형 랜덤 {} 메이커에 오신 것을 환영해요!\n"
|
||||
"사용자님이 보내는 모든 메시지에 {} 이(가) 트리거 되면 선택할 임의의 대답 중 하나로 추가됍니다. 이 대화형 메뉴를 종료하려면 `{}` 을 입력해야 해요."
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr "등록된 랜덤 대답 리스트 :"
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
msgstr "'임의' CC를 생성할까요?"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr "어떤 대답을 원해요?"
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr "커스텀 커맨드가 성공적으로 추가됐어요."
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
msgstr "이 커맨드는 이미 추가되어 있어요. 편집하려면 `{}` 을(를) 사용해보세요."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
msgstr "해당 커맨드는 봇의 커맨드예요."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr "커스텀 커맨드가 성공적으로 수정됐어요."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
msgstr "해당 커맨드는 추가되어 있지 않아요. 추가하려면 `{}` 을(를) 사용해보세요."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr "커스텀 커맨드가 성공적으로 삭제됐어요."
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr "해당 커맨드는 추가되어 있지 않아요."
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
msgstr "이 길드에 등록된 커스텀 커맨드가 없어요. 추가하려면 `{}` 을(를) 사용해보세요."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr "커스텀 커맨드가 성공적으로 삭제됐어요."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr "커스텀 커맨드가 성공적으로 수정됐어요."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:43-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:08\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: LOLCAT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,52 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: lol_US\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:42-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:07\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Dutch\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,52 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: nl_NL\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr "Voer een willekeurig antwoord in:"
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:42-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:07\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Norwegian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,52 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: no_NO\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,67 +1,185 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:43-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:07\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Polish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Plural-Forms: nplurals=4; plural=((n == 1) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || n%10 == 1 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 12 && n%100 <= 14)) ? 2 : 3));\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Language: pl\n"
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: pl_PL\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:43-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:08\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,52 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: pt_BR\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:43-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:07\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,52 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: pt_PT\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:43-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 05:52\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Russian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\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-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,52 +16,197 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: ru_RU\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
msgstr ""
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr "Добро пожаловать в интерактивную программу случайных {cc}!\n"
|
||||
"Каждое отправленное вами сообщение будет добавлено в качестве одного из случайных ответов на выбор после запуска {cc}. Чтобы выйти из этого интерактивного меню, введите `{quit}`"
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr ""
|
||||
msgstr "Добавить случайный ответ:"
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
msgstr ""
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr "Случайные ответы должны принимать те же аргументы!"
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr "Вы хотите создать 'произвольную' пользовательскую команду? (y/n)"
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr "Время ответа истекло, повторите попытку позже."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr ""
|
||||
msgstr "Какой ответ вы хотите?"
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr "Создает команды, используемые для отображения текста."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr "Управление пользовательскими командами."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr "Создать пользовательские команды.\n\n"
|
||||
" ПК могут быть дополнены аргументами, см. руководство\n"
|
||||
" [здесь](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr "Создать пользовательскую команду, в которой она будет случайным образом выбирать ответ!\n\n"
|
||||
" Примечание: Эта команда является интерактивной.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr ""
|
||||
msgstr "Пользовательская команда успешно добавлена."
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
msgstr ""
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr "Эта команда уже существует. Используйте `{command}` для редактирования."
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
msgstr ""
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr "Добавить простую пользовательскую команду.\n\n"
|
||||
" Пример:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr ""
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr "Уже существует команда бота с таким же именем."
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
msgstr ""
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr "Установить, отредактировать или просмотреть время восстановления для пользовательской команды.\n\n"
|
||||
" Вы можете установить время восстановления для каждого\n"
|
||||
" участника, канала или гильдии. Можно установить несколько\n"
|
||||
" перезарядок. Все перезарядки должны быть сброшены,\n"
|
||||
" чтобы вызвать пользовательскую команду.\n\n"
|
||||
" Пример:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr ""
|
||||
msgstr "Такой команды не существует."
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
msgstr ""
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr "{} может вызывать эту команду каждые {} секунд"
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr "Эта команда не имеет времени восстановления."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr "{} должен быть одним из {}"
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr "Время восстановления пользовательской команды успешно отредактировано."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr "Эта команда не существует. Используйте `{command}`, чтобы добавить ее."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr "Удалить пользовательскую команду\n"
|
||||
".\n"
|
||||
" Пример:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr "Пользовательская команда успешно удалена."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr "Редактировать пользовательскую команду.\n\n"
|
||||
" Пример:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr "Пользовательская команда успешно отредактирована."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr "Список всех доступных пользовательских команд.\n\n"
|
||||
" В списке отображается предварительный просмотр ответа\n"
|
||||
" каждой команды, с экранированной уценкой и символами\n"
|
||||
" новой строки, замененными пробелами.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr "На этом сервере нет пользовательских команд. Используйте `{command}`, чтобы начать добавлять некоторые."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr "Список пользовательских команд"
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr "Страница {num}/{total}"
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr "Слишком много аргументов!"
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr "Аргументы должны быть последовательными. Отсутствующие аргументы: "
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr "Противоречивая запись двоеточия для аргумента {index}: \"{name1}\" и \"{name2}\"."
|
||||
|
||||
|
||||
185
redbot/cogs/customcom/locales/sk-SK.po
Normal file
185
redbot/cogs/customcom/locales/sk-SK.po
Normal file
@@ -0,0 +1,185 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:07\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Slovak\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Language: sk\n"
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: sk_SK\n"
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:43-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:08\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Swedish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,54 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: sv_SE\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
msgstr "Välkommen till den interaktiva slump {} makaren!\n"
|
||||
"Varje meddelande du skickar, kommer att läggas till som ett slumpmässigt svar i listan, för när {} utlöses.\n"
|
||||
"För att avsluta denna interaktiva meny, skriv `{}`"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr "Lägg till ett slumpmässigt svar:"
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
msgstr "Vill du skapa ett 'slumpat' cc? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr "Vilket svar vill du ha?"
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr "Det anpassade kommandot har lagts till."
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
msgstr "Detta kommando finns redan. Använd `{}` för att ändra det."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
msgstr "Detta kommando är redan ett standard kommando."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr "Det anpassade kommandot har nu ändrats."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
msgstr "Det kommandot finns inte. Använd `{}`för att lägga till det."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr "Det anpassade kommandot är nu borttaget."
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr "Det kommandot finns inte."
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
msgstr "Det finns inga anpassade kommandon i denna guild. Använd `{}`för att börja lägga till några."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr "Det anpassade kommandot är nu borttaget."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr "Det anpassade kommandot har nu ändrats."
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
185
redbot/cogs/customcom/locales/tr-TR.po
Normal file
185
redbot/cogs/customcom/locales/tr-TR.po
Normal file
@@ -0,0 +1,185 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:08\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Turkish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Language: tr\n"
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: tr_TR\n"
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2018-02-18 14:42+AKST\n"
|
||||
"PO-Revision-Date: 2018-04-15 16:43-0400\n"
|
||||
"POT-Creation-Date: 2019-01-11 02:18+0000\n"
|
||||
"PO-Revision-Date: 2019-02-25 03:08\n"
|
||||
"Last-Translator: Kowlin <boxedpp@gmail.com>\n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: ENCODING\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 2.2\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: crowdin.com\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
@@ -16,52 +16,170 @@ msgstr ""
|
||||
"X-Crowdin-File: /cogs/customcom/locales/messages.pot\n"
|
||||
"Language: zh_CN\n"
|
||||
|
||||
#: ../customcom.py:44
|
||||
msgid "Welcome to the interactive random {} maker!\n"
|
||||
"Every message you send will be added as one of the random response to choose from once this {} is triggered. To exit this interactive menu, type `{}`"
|
||||
#: redbot/cogs/customcom/customcom.py:51
|
||||
msgid "Welcome to the interactive random {cc} maker!\n"
|
||||
"Every message you send will be added as one of the random responses to choose from once this {cc} is triggered. To exit this interactive menu, type `{quit}`"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:56
|
||||
#: redbot/cogs/customcom/customcom.py:62
|
||||
msgid "Add a random response:"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:119
|
||||
msgid "Do you want to create a 'randomized' cc? {}"
|
||||
#: redbot/cogs/customcom/customcom.py:74
|
||||
msgid "Random responses must take the same arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:126
|
||||
#: redbot/cogs/customcom/customcom.py:130
|
||||
msgid "Do you want to create a 'randomized' custom command? (y/n)"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:136
|
||||
#: redbot/cogs/customcom/customcom.py:147
|
||||
msgid "Response timed out, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:141
|
||||
msgid "What response do you want?"
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:205 ../customcom.py:235
|
||||
#: redbot/cogs/customcom/customcom.py:181
|
||||
#, docstring
|
||||
msgid "Creates commands used to display text."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:195
|
||||
#, docstring
|
||||
msgid "Custom commands management."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:201
|
||||
#, docstring
|
||||
msgid "Create custom commands.\n\n"
|
||||
" CCs can be enhanced with arguments, see the guide\n"
|
||||
" [here](https://red-discordbot.readthedocs.io/en/v3-develop/cog_customcom.html).\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:211
|
||||
#, docstring
|
||||
msgid "Create a CC where it will randomly choose a response!\n\n"
|
||||
" Note: This command is interactive.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:218
|
||||
#: redbot/cogs/customcom/customcom.py:239
|
||||
msgid "Custom command successfully added."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:207 ../customcom.py:237
|
||||
msgid "This command already exists. Use `{}` to edit it."
|
||||
#: redbot/cogs/customcom/customcom.py:221
|
||||
#: redbot/cogs/customcom/customcom.py:242
|
||||
msgid "This command already exists. Use `{command}` to edit it."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:229
|
||||
msgid "That command is already a standard command."
|
||||
#: redbot/cogs/customcom/customcom.py:229
|
||||
#, docstring
|
||||
msgid "Add a simple custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom create simple yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:261
|
||||
msgid "Custom command successfully edited."
|
||||
#: redbot/cogs/customcom/customcom.py:235
|
||||
msgid "There already exists a bot command with the same name."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:263
|
||||
msgid "That command doesn't exist. Use `{}` to add it."
|
||||
#: redbot/cogs/customcom/customcom.py:254
|
||||
#, docstring
|
||||
msgid "Set, edit, or view the cooldown for a custom command.\n\n"
|
||||
" You may set cooldowns per member, channel, or guild. Multiple\n"
|
||||
" cooldowns may be set. All cooldowns must be cooled to call the\n"
|
||||
" custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom cooldown yourcommand 30`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:282
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:284
|
||||
#: redbot/cogs/customcom/customcom.py:267
|
||||
#: redbot/cogs/customcom/customcom.py:304
|
||||
msgid "That command doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: ../customcom.py:294
|
||||
msgid "There are no custom commands in this guild. Use `{}` to start adding some."
|
||||
#: redbot/cogs/customcom/customcom.py:272
|
||||
msgid "A {} may call this command every {} seconds"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:276
|
||||
msgid "This command has no cooldown."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:280
|
||||
msgid "{} must be one of {}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:284
|
||||
msgid "Custom command cooldown successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:287
|
||||
#: redbot/cogs/customcom/customcom.py:319
|
||||
msgid "That command doesn't exist. Use `{command}` to add it."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:295
|
||||
#, docstring
|
||||
msgid "Delete a custom command\n"
|
||||
".\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom delete yourcommand`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:302
|
||||
msgid "Custom command successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:309
|
||||
#, docstring
|
||||
msgid "Edit a custom command.\n\n"
|
||||
" Example:\n"
|
||||
" - `[p]customcom edit yourcommand Text you want`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:316
|
||||
msgid "Custom command successfully edited."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:329
|
||||
#, docstring
|
||||
msgid "List all available custom commands.\n\n"
|
||||
" The list displays a preview of each command's response, with\n"
|
||||
" markdown escaped and newlines replaced with spaces.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:338
|
||||
msgid "There are no custom commands in this server. Use `{command}` to start adding some."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:370
|
||||
msgid "Custom Command List"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:374
|
||||
msgid "Page {num}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:467
|
||||
msgid "Too many arguments!"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:471
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/customcom/customcom.py:497
|
||||
msgid "Conflicting colon notation for argument {index}: \"{name1}\" and \"{name2}\"."
|
||||
msgstr ""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user