Compare commits

..

5 Commits

Author SHA1 Message Date
github-actions[bot]
910572bf43 Version bump to 3.4.11 (#5131)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2021-06-12 18:54:26 +02:00
github-actions[bot]
48fad6c002 [i18n] Automated Crowdin downstream (#5132)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2021-06-12 18:54:22 +02:00
jack1142
f4b65c8c7a Red 3.4.11 - Changelog (#5130) 2021-06-12 18:54:16 +02:00
jack1142
43c30569a7 Bump discord.py to 1.7.3 (#5129) 2021-06-12 18:35:21 +02:00
Onii-chan
125fd6dde6 Update cogboard links (#5124)
* Update README.md

* Update guide_cog_creators.rst

* Update cog_manager_ui.rst

* Update README.md
2021-06-12 18:34:25 +02:00
829 changed files with 56057 additions and 84314 deletions

View File

@@ -1,5 +0,0 @@
team = "Cog-Creators"
repo = "Red-DiscordBot"
check_sha = "6251c585e4ec0a53813a9993ede3ab5309024579"
fix_commit_msg = false
default_branch = "V3/develop"

2
.github/CODEOWNERS vendored
View File

@@ -1,5 +1,5 @@
# Cogs
/redbot/cogs/audio/** @aikaterna @PredaaA
/redbot/cogs/audio/** @aikaterna @Drapersniper
/redbot/cogs/downloader/* @jack1142
/redbot/cogs/streams/* @palmtree5
/redbot/cogs/mutes/* @TrustyJAID

View File

@@ -1 +0,0 @@
### Description of the changes

7
.github/labeler.yml vendored
View File

@@ -27,7 +27,6 @@
# Source
- redbot/*
- redbot/core/__init__.py
- redbot/core/_diagnoser.py
- redbot/core/_sharedlibdeprecation.py
- redbot/core/bot.py
- redbot/core/checks.py
@@ -132,11 +131,9 @@
- redbot/core/modlog.py
# Docs
- docs/framework_modlog.rst
"Category: Modlog Cog":
# Source
- redbot/cogs/modlog/*
# Docs
- docs/cog_guides/modlog.rst
"Category: Modlog Cog":
- redbot/cogs/modlog/*
"Category: Mutes Cog":
# Source
- redbot/cogs/mutes/*

View File

@@ -27,7 +27,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install -U pip setuptools wheel
python -m pip install .[all]
python -m pip install -r ./tools/dev-requirements.txt
# Set the `CODEQL-PYTHON` environment variable to the Python executable
# that includes the dependencies
echo "CODEQL_PYTHON=$(which python)" >> $GITHUB_ENV

View File

@@ -5,61 +5,13 @@ on:
- "*"
jobs:
release_information:
if: github.repository == 'Cog-Creators/Red-DiscordBot'
name: GO HERE BEFORE APPROVING
runs-on: ubuntu-latest
steps:
# Checkout repository and install Python
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
# Get version to release
- name: Get version to release
id: version_to_release
run: |
python .github/workflows/scripts/bump_version.py
env:
PYTHONPATH: ${{ github.workspace }}:${{ env.PYTHONPATH }}
JUST_RETURN_VERSION: '1'
# Print release information
- name: REVIEW OUTPUT OF THIS STEP BEFORE APPROVING
env:
TAG_BASE_BRANCH: ${{ github.event.base_ref }}
TAG_REF_NAME: ${{ github.ref }}
RELEASE_VERSION: ${{ steps.version_to_release.outputs.version }}
run: |
echo 'Release information:'
echo "- Branch the tag was based off: ${TAG_BASE_BRANCH#'refs/heads/'}"
echo "- Tag name: ${TAG_REF_NAME#'refs/tags/'}"
echo "- Release version: $RELEASE_VERSION"
echo "TAG_NAME=${TAG_REF_NAME#'refs/tags/'}" >> $GITHUB_ENV
- name: Ensure the tag name corresponds to the released version
env:
RELEASE_VERSION: ${{ steps.version_to_release.outputs.version }}
run: |
if [[ "$TAG_NAME" != "$RELEASE_VERSION" ]]; then
echo -n "The tag name ($TAG_NAME) is not the same as"
echo " the release version ($RELEASE_VERSION)!"
exit 1
else
echo "The tag name and the release version are the same ($TAG_NAME)."
echo 'Continuing...'
fi
release_to_pypi:
needs: release_information
environment: Release
name: Release to PyPI
if: github.repository == 'Cog-Creators/Red-DiscordBot'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: V3/develop
- name: Set up Python
uses: actions/setup-python@v2
with:
@@ -81,12 +33,9 @@ jobs:
contents: write
pull-requests: write
needs: release_to_pypi
name: Update Red version number to dev
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.base_ref }}
- name: Set up Python
uses: actions/setup-python@v2
with:
@@ -128,7 +77,7 @@ jobs:
branch: "automated/pr_bumps/${{ steps.bump_version_dev.outputs.new_version }}"
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
milestone: ${{ steps.get_milestone_number.outputs.result }}
base: ${{ github.event.base_ref }}
base: V3/develop
- name: Close and reopen the PR with different token to trigger CI
uses: actions/github-script@v3

View File

@@ -6,11 +6,6 @@ from typing import Match
import redbot
if int(os.environ.get("JUST_RETURN_VERSION", 0)):
print(f"::set-output name=version::{redbot.__version__}")
sys.exit(0)
version_info = None

View File

@@ -17,18 +17,12 @@ jobs:
python_version:
- "3.8"
tox_env:
- py
- style
- docs
include:
- tox_env: py38
python_version: "3.8"
friendly_name: Python 3.8 - Tests
- tox_env: py39
python_version: "3.9"
friendly_name: Python 3.9 - Tests
- tox_env: py310
python_version: "3.10-dev"
friendly_name: Python 3.10-dev - Tests
- tox_env: py
friendly_name: Tests
- tox_env: style
friendly_name: Style
- tox_env: docs
@@ -58,8 +52,6 @@ jobs:
matrix:
python_version:
- "3.8"
- "3.9"
- "3.10-dev"
fail-fast: false
name: Tox - Postgres
services:

View File

@@ -56,7 +56,7 @@ Continue to the next section to enable privileged intents.
Enabling Privileged Intents
-------------------------------
.. warning::
:ref:`Red Bot requires all intents. <intents>`
Due to Discord API changes, Red Bot requires all intents.
\This section is required.
1. Make sure you're logged on to the `Discord website <https://discord.com>`_.
@@ -75,6 +75,5 @@ Enabling Privileged Intents
.. warning::
Red bots with over 100 servers require `bot verification <https://support.discord.com/hc/en-us/articles/360040720412>`_ which is not covered in this guide.
Remember that :ref:`we do not support public bots <intents>`. We encourage you to read that page before scaling up your bot.
*Parts of this guide have been adapted from* `discord.py intro <https://discordpy.readthedocs.io/en/stable/discord.html#discord-intro>`_ *and* `discord.py privileged intents <https://discordpy.readthedocs.io/en/stable/intents.html#privileged-intents>`_.

View File

@@ -650,7 +650,7 @@ Dev Cog
Documentation changes
---------------------
- Fixed install instructions for Mac (:issue:`3675`, :issue:`3436`)
- Fixed install instructions for Mac in `install_linux_mac` (:issue:`3675`, :issue:`3436`)
- Windows install instructions now use ``choco upgrade`` commands instead of ``choco install`` to ensure up-to-date packages (:issue:`3684`)

View File

@@ -1,211 +1,5 @@
.. 3.4.x Changelogs
Redbot 3.4.14 (2021-09-23)
==========================
| Thanks to all these amazing people that contributed to this release:
| :ghuser:`aikaterna`, :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`L33Tech`, :ghuser:`maxbooiii`, :ghuser:`RheingoldRiver`
Read before updating
--------------------
#. Versions of RHEL older than 8.4 (including 7) and versions of CentOS older than 8.4 (excluding 7) are no longer supported.
#. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point):
Red 3.4.14 uses a new Lavalink jar that you will need to manually update from `our GitHub <https://github.com/Cog-Creators/Lavalink-Jars/releases/tag/3.3.2.3_1239>`__.
End-user changelog
------------------
- **Core Bot** - Added the new native Discord timestamp in the ``[p]uptime`` command (:issue:`5323`)
- **Core Bot** - ``redbot-setup delete`` command no longer requires database connection if the data deletion was not requested (:issue:`5312`, :issue:`5313`)
- **Audio** - Fixed intermittent 403 Forbidden errors (:issue:`5329`)
- **Modlog** - Fixed formatting of **Last modified at** field in Modlog cases (:issue:`5317`)
Documentation changes
---------------------
- Each operating system now has a dedicated install guide (:issue:`5328`)
- Fixed Raspberry Pi OS install guide (:issue:`5314`, :issue:`5328`)
- Added install guide for CentOS Stream 8, Oracle Linux 8.4-8.x, and Rocky Linux 8 (:issue:`5328`)
- Install guides for RHEL derivatives no longer require the use of pyenv (:issue:`5328`)
Redbot 3.4.13 (2021-09-09)
==========================
| Thanks to all these amazing people that contributed to this release:
| :ghuser:`aikaterna`, :ghuser:`Arman0334`, :ghuser:`Flame442`, :ghuser:`flaree`, :ghuser:`fredster33`, :ghuser:`Injabie3`, :ghuser:`jack1142`, :ghuser:`Just-Jojo`, :ghuser:`Kowlin`, :ghuser:`Kreusada`, :ghuser:`leblancg`, :ghuser:`maxbooiii`, :ghuser:`npc203`, :ghuser:`palmtree5`, :ghuser:`phenom4n4n`, :ghuser:`PredaaA`, :ghuser:`qenu`, :ghuser:`TheDataLeek`, :ghuser:`Twentysix26`, :ghuser:`TwinDragon`, :ghuser:`Vexed01`
Read before updating
--------------------
1. If you're hosting a public/big bot (>75 servers) or strive to scale your bot at that level, you should read :doc:`our stance on (privileged) intents and public bots <intents>`.
2. Fedora 32 is no longer supported as it has already reached end of life.
3. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point):
Red 3.4.13 uses a new Lavalink jar that you will need to manually update from `our GitHub <https://github.com/Cog-Creators/Lavalink-Jars/releases/tag/3.3.2.3_1238>`__.
End-user changelog
------------------
Core Bot
********
- Added a new ``[p]diagnoseissues`` command to allow the bot owners to diagnose issues with various command checks with ease (:issue:`4717`, :issue:`5243`)
Since some of us are pretty excited about this feature, here's a very small teaser showing a part of what it can do:
.. figure:: https://user-images.githubusercontent.com/6032823/132610057-d6c65d67-c244-4f0b-9458-adfbe0c68cab.png
- Revamped the ``[p]debuginfo`` to make it more useful for... You guessed it, debugging! (:issue:`4997`, :issue:`5156`)
More specifically, added information about CPU and RAM, bot's instance name and owners
- The formatting of Red's console logs has been updated to make it more copy-paste friendly (:issue:`4868`, :issue:`5181`)
- Added the new native Discord timestamps in Modlog cases, ``[p]userinfo``, ``[p]serverinfo``, and ``[p]tempban`` (:issue:`5155`, :issue:`5241`)
- Added a setting for ``[p]help``'s reaction timeout (:issue:`5205`)
This can be changed with ``[p]helpset reacttimeout`` command
- Red 3.4.13 is the first release to (finally) support Python 3.9! (:issue:`4655`, :issue:`5121`)
- Upgraded all Red's dependencies (:issue:`5121`)
- Fedora 32 is no longer supported as it has already reached end of life (:issue:`5121`)
- Fixed a bunch of errors related to the missing permissions and channels/messages no longer existing (:issue:`5109`, :issue:`5163`, :issue:`5172`, :issue:`5191`)
Admin
*****
- The ``[p]selfroleset add`` and ``[p]selfroleset remove`` commands can now be used to add multiple selfroles at once (:issue:`5237`, :issue:`5238`)
Alias
*****
- Added commands for editing existing aliases (:issue:`5108`)
Audio
*****
- Added a per-guild max volume setting (:issue:`5165`)
This can be changed with the ``[p]audioset maxvolume`` command
- Fixed an issue with short clips being cutoff when auto-disconnect on queue end is enabled (:issue:`5158`, :issue:`5188`)
- Fixed fetching of age-restricted tracks (:issue:`5233`)
- Fixed searching of YT Music (:issue:`5233`)
- Fixed playback from SoundCloud (:issue:`5233`)
- ``[p]summon`` will now indicate that it has succeeded or failed to summon the bot (:issue:`5186`)
Cleanup
*******
- The ``[p]cleanup user`` command can now be used to clean messages of a user that is no longer in the server (:issue:`5169`)
- All ``[p]cleanup`` commands will now send a notification with the number of deleted messages. The notification is deleted automatically after 5 seconds (:issue:`5218`)
This can be disabled with the ``[p]cleanupset notify`` command
Downloader
**********
- The dot character (``.``) can now be used in repo names. No more issues with adding repositories using the commands provided by the Cog Index! (:issue:`5214`)
Filter
******
- Added ``[p]filter clear`` and ``[p]filter channel clear`` commands for clearing the server's/channel's filter list (:issue:`4841`, :issue:`4981`)
Mod
***
- Fixed an error with handling of temporary ban expirations while the guild is unavailable due to Discord outage (:issue:`5173`)
- The DM message from the ``[p]tempban`` command will now include the ban reason if ``[p]modset dm`` setting is enabled (:issue:`4836`, :issue:`4837`)
- The ``[p]rename`` command will no longer permit changing nicknames of members that are not lower in the role hierarchy than the command caller (:issue:`5187`, :issue:`5211`)
Streams
*******
- Fixed an issue with some YouTube streamers getting removed from stream alerts after a while (:issue:`5195`, :issue:`5223`)
- Made small optimizations in regards to stream alerts (:issue:`4968`)
Trivia
******
- Added schema validation of the custom trivia files (:issue:`4571`, :issue:`4659`)
Warnings
********
- 0 point warnings are, once again, allowed. (:issue:`5177`, :issue:`5178`)
Developer changelog
-------------------
- Added `RelativedeltaConverter` and `parse_relativedelta` to the ``redbot.core.commands`` package (:issue:`5000`)
This converter and function return `dateutil.relativedelta.relativedelta` object that represents a relative delta.
In addition to regular timedelta arguments, it also accepts months and years!
- Added more APIs for allowlists and blocklists (:issue:`5206`)
Here's the list of the methods that were added to the ``bot`` object:
- `Red.add_to_blacklist() <RedBase.add_to_blacklist()>`
- `Red.remove_from_blacklist() <RedBase.remove_from_blacklist()>`
- `Red.get_blacklist() <RedBase.get_blacklist()>`
- `Red.clear_blacklist() <RedBase.clear_blacklist()>`
- `Red.add_to_whitelist() <RedBase.add_to_whitelist()>`
- `Red.remove_from_whitelist() <RedBase.remove_from_whitelist()>`
- `Red.get_whitelist() <RedBase.get_whitelist()>`
- `Red.clear_whitelist() <RedBase.clear_whitelist()>`
- Added `CommandConverter` and `CogConverter` to the ``redbot.core.commands`` package (:issue:`5037`)
Documentation changes
---------------------
- Added a document about (privileged) intents and our stance regarding "public bots" (:issue:`5216`, :issue:`5221`)
- Added install instructions for Debian 11 Bullseye (:issue:`5213`, :issue:`5217`)
- Added Oracle Cloud's Always Free offering to the :ref:`host-list` (:issue:`5225`)
- Updated the commands in the install guide for Mac OS to work properly on Apple Silicon devices (:issue:`5234`)
- Fixed the examples of commands that are only available to people with the mod role (:issue:`5180`)
- Fixed few other small issues with the documentation :) (:issue:`5048`, :issue:`5092`, :issue:`5149`, :issue:`5207`, :issue:`5209`, :issue:`5215`, :issue:`5219`, :issue:`5220`)
Miscellaneous
-------------
- **Core Bot** - The console error about missing Privileged Intents stands out more now (:issue:`5184`)
- **Core Bot** - The ``[p]invite`` command will now add a tick reaction after it DMs an invite link to the user (:issue:`5184`)
- **Downloader** - Added a few missing line breaks (:issue:`5185`, :issue:`5187`)
Redbot 3.4.12 (2021-06-17)
==========================
| Thanks to all these amazing people that contributed to this release:
| :ghuser:`aikaterna`, :ghuser:`Flame442`, :ghuser:`jack1142`, :ghuser:`Just-Jojo`, :ghuser:`Kowlin`, :ghuser:`Kreusada`, :ghuser:`npc203`, :ghuser:`PredaaA`, :ghuser:`retke`, :ghuser:`Stonedestroyer`
This is a hotfix release related to Red ceasing to use the Audio Global API service.
Full changelog
--------------
- **Audio** - Updated URL of the curated playlist (:issue:`5135`)
- **Audio** - All local caches are now enabled by default (:issue:`5140`)
- **Audio** - Global API service will no longer be used in Audio and as such support for it has been removed from the cog (:issue:`5143`)
- **Core Bot** - ``[p]set serverprefix`` command will now prevent the user from setting a prefix with length greater than 20 characters (:issue:`5091`, :issue:`5117`)
- **Core Bot** - ``[p]set prefix`` command will now warn the user when trying to set a prefix with length greater than 20 characters (:issue:`5091`, :issue:`5117`)
- **Core Bot** - ``applications.commands`` scope can now be included in the invite URL returned from ``[p]invite`` by enabling it with``[p]inviteset commandscope``
- **Dev Cog** - ``[p]debug`` command will now confirm the code finished running with a tick reaction (:issue:`5107`)
- **Filter** - Fixed an edge case that caused the cog to sometimes check contents of DM messages (:issue:`5125`)
- **Warnings** - Prevented users from applying 0 or less points in custom warning reasons (:issue:`5119`, :issue:`5120`)
Redbot 3.4.11 (2021-06-12)
==========================
@@ -261,11 +55,11 @@ Admin
*****
- The cog will now log when it leaves a guild due to the serverlock (:issue:`5008`, :issue:`5073`)
- Fixed an issue that made it possible to remove Aikaterna's curated tracks playlist (:issue:`5018`)
Audio
*****
- Fixed an issue that made it possible to remove Aikaterna's curated tracks playlist (:issue:`5018`)
- Fixed auto-resume of auto play after Lavalink restart (:issue:`5051`)
- The ``[p]audiostats`` command can now only be used by bot owners (:issue:`5017`)
- Fixed an error with ``[p]audiostats`` caused by players not always having their connection time stored (:issue:`5046`)
@@ -686,7 +480,7 @@ Documentation changes
- Added information about the Red Index to `guide_publish_cogs` (:issue:`4778`)
- Restructured the host list (:issue:`4710`)
- Clarified how to use pm2 with ``pyenv virtualenv`` (:issue:`4709`)
- Updated the pip command for Red with the postgres extra in Linux/macOS install guide to work on zsh shell (:issue:`4697`)
- Updated the pip command for Red with the postgres extra in `install_linux_mac` document to work on zsh shell (:issue:`4697`)
- Updated Python version in ``pyenv`` and Windows instructions (:issue:`4770`)
@@ -906,7 +700,7 @@ Documentation changes
---------------------
- Added `cog guide for Cleanup cog <cleanup>` (:issue:`4488`)
- Removed multi-line commands from Linux install guides to avoid confusing readers (:issue:`4550`)
- Removed multi-line commands from `install_linux_mac` to avoid confusing readers (:issue:`4550`)
Redbot 3.4.1 (2020-10-27)
@@ -1237,7 +1031,7 @@ Core Bot
- Added data request API (:issue:`4045`, :issue:`4169`)
- New special methods added to `redbot.core.commands.Cog`: `red_get_data_for_user()` (documented provisionally), `red_delete_data_for_user()`
- New special methods added to `commands.Cog`: `red_get_data_for_user()` (documented provisionally), `red_delete_data_for_user()`
- New special module level variable added: ``__red_end_user_data_statement__``
- These methods and variables should be added by all cogs according to their documentation; see `recommendations-for-cog-creators` for more information
- New ``info.json`` key added: ``end_user_data_statement``; see `Info.json format documentation <info-json-format>` for more information

View File

@@ -150,7 +150,7 @@ selfroleset add
**Description**
Add a role, or a selection of roles, to the list of available selfroles.
Add a role to the list of selfroles.
.. warning:: Members will be able to assign themselves the role.
Make sure it doesn't give extra perms or anything that can break
@@ -174,7 +174,7 @@ selfroleset remove
**Description**
Remove a role, or a selection of roles, from the list of available selfroles.
Removes a role from the list of selfroles.
**Arguments**
@@ -232,7 +232,7 @@ as yourself, the command author.
* ``<role>``: The role to remove. |role-input-quotes|
* ``[user]``: The member to remove the role from. |member-input| Defaults
to the command author.
to the command author.
.. _admin-command-editrole:

View File

@@ -294,40 +294,3 @@ Examples:
- ``<user>`` The user whose messages are to be cleaned up.
- ``<number>`` The max number of messages to cleanup. Must be a positive integer.
- ``<delete_pinned>`` Whether to delete pinned messages or not. Defaults to False
.. _cleanup-command-cleanupset:
^^^^^^^^^^
cleanupset
^^^^^^^^^^
.. note:: |admin-lock|
**Syntax**
.. code-block:: none
[p]cleanupset
**Description**
Manage the settings for the cleanup command.
.. _cleanup-command-cleanupset-notify:
"""""""""""""""""
cleanupset notify
"""""""""""""""""
**Syntax**
.. code-block:: none
[p]cleanupset notify
**Description**
Toggle clean up notification settings.
When enabled, a message will be sent per cleanup, showing how many messages were deleted.
This message will be deleted after 5 seconds.

View File

@@ -383,7 +383,7 @@ command defaultdisablecog
.. code-block:: none
[p]command defaultdisablecog <cog>
[p]command defaultdisablecog <cogname>
**Description**
@@ -400,7 +400,7 @@ To override it, use ``[p]command enablecog`` on the servers you want to allow us
- ``[p]command defaultdisablecog ModLog``
**Arguments:**
- ``<cog>`` - The name of the cog to make disabled by default. Must be title-case.
- ``<cogname>`` - The name of the cog to make disabled by default. Must be title-case.
.. _core-command-command-defaultenablecog:
@@ -414,7 +414,7 @@ command defaultenablecog
.. code-block:: none
[p]command defaultenablecog <cog>
[p]command defaultenablecog <cogname>
**Description**
@@ -431,7 +431,7 @@ To override it, use ``[p]command disablecog`` on the servers you want to disallo
- ``[p]command defaultenablecog ModLog``
**Arguments:**
- ``<cog>`` - The name of the cog to make enabled by default. Must be title-case.
- ``<cogname>`` - The name of the cog to make enabled by default. Must be title-case.
.. _core-command-command-disable:
@@ -519,7 +519,7 @@ command disablecog
.. code-block:: none
[p]command disablecog <cog>
[p]command disablecog <cogname>
**Description**
@@ -533,7 +533,7 @@ Disable a cog in this server.
- ``[p]command disablecog ModLog``
**Arguments:**
- ``<cog>`` - The name of the cog to disable on this server. Must be title-case.
- ``<cogname>`` - The name of the cog to disable on this server. Must be title-case.
.. _core-command-command-disabledmsg:
@@ -651,7 +651,7 @@ command enablecog
.. code-block:: none
[p]command enablecog <cog>
[p]command enablecog <cogname>
**Description**
@@ -665,7 +665,7 @@ Enable a cog in this server.
- ``[p]command enablecog ModLog``
**Arguments:**
- ``<cog>`` - The name of the cog to enable on this server. Must be title-case.
- ``<cogname>`` - The name of the cog to enable on this server. Must be title-case.
.. _core-command-command-listdisabled:
@@ -770,33 +770,6 @@ This is limited to one message every 60 seconds per person.
**Arguments:**
- ``[message]`` - The message to send to the owner.
.. _core-command-diagnoseissues:
^^^^^^^^^^^^^^
diagnoseissues
^^^^^^^^^^^^^^
**Syntax**
.. code-block:: none
[p]diagnoseissues [channel] <member> <command_name>
**Description**
Diagnose issues with the command checks with ease!
If you want to diagnose the command from a text channel in a different server,
you can do so by using the command in DMs.
**Example:**
- ``[p]diagnoseissues #general @Slime ban`` - Diagnose why @Slime can't use ``[p]ban`` in #general channel.
**Arguments:**
- ``[channel]`` - The text channel that the command should be tested for. Defaults to the current channel.
- ``<member>`` - The member that should be considered as the command caller.
- ``<command_name>`` - The name of the command to test.
.. _core-command-dm:
^^
@@ -902,7 +875,7 @@ embedset command
.. code-block:: none
[p]embedset command <command> [enabled]
[p]embedset command <command_name> [enabled]
**Description**
@@ -935,7 +908,7 @@ embedset command global
.. code-block:: none
[p]embedset command global <command> [enabled]
[p]embedset command global <command_name> [enabled]
**Description**
@@ -965,7 +938,7 @@ embedset command server
.. code-block:: none
[p]embedset command server <command> [enabled]
[p]embedset command server <command_name> [enabled]
.. tip:: Alias: ``embedset command guild``
@@ -1057,7 +1030,7 @@ embedset showsettings
.. code-block:: none
[p]embedset showsettings [command]
[p]embedset showsettings [command_name]
**Description**
@@ -1071,7 +1044,7 @@ Provide a command name to check for command specific embed settings.
- ``[p]embedset showsettings "ignore list"`` - Checking subcommands requires quotes.
**Arguments:**
- ``[command]`` - Checks this command for command specific embed settings.
- ``[command_name]`` - Checks this command for command specific embed settings.
.. _core-command-embedset-user:
@@ -1217,34 +1190,6 @@ mean some pages will exceed this limit.
**Arguments:**
- ``<limit>`` - The max amount of characters to show per page in the help message.
.. _core-command-helpset-reacttimeout:
""""""""""""""""""""
helpset reacttimeout
""""""""""""""""""""
**Syntax**
.. code-block:: none
[p]helpset reacttimeout <seconds>
**Description**
Set the timeout for reactions, if menus are enabled.
The default is 30 seconds.
The timeout has to be between 15 and 300 seconds.
**Examples:**
- ``[p]helpset reacttimeout 30`` - The default timeout.
- ``[p]helpset reacttimeout 60`` - Timeout of 1 minute.
- ``[p]helpset reacttimeout 15`` - Minimum allowed timeout.
- ``[p]helpset reacttimeout 300`` - Max allowed timeout (5 mins).
**Arguments:**
- ``<seconds>`` - The timeout, in seconds, of the reactions.
.. _core-command-helpset-resetformatter:
""""""""""""""""""""""
@@ -3229,8 +3174,6 @@ Sets Red's server prefix(es).
This is not additive. It will replace all current server prefixes.
You cannot have a prefix with more than 20 characters.
**Examples:**
- ``[p]set serverprefix !``
- ``[p]set serverprefix "! "`` - Quotes are needed to use spaces in prefixes.

View File

@@ -291,4 +291,4 @@ Shows a custom command's responses and its settings.
**Arguments:**
- ``<command_name>`` The custom command to show.
- ``<command>`` The custom command to show.

View File

@@ -122,22 +122,6 @@ Examples:
- ``[words...]`` The words or sentences to filter.
.. _filter-command-filter-channel-clear:
""""""""""""""""""""
filter channel clear
""""""""""""""""""""
**Syntax**
.. code-block:: none
[p]filter channel clear
**Description**
Clears this channel's filter list.
.. _filter-command-filter-channel-list:
"""""""""""""""""""
@@ -180,22 +164,6 @@ Examples:
- ``[words...]`` The words or sentences to no longer filter.
.. _filter-command-filter-clear:
""""""""""""
filter clear
""""""""""""
**Syntax**
.. code-block:: none
[p]filter clear
**Description**
Clears this server's filter list.
.. _filter-command-filter-delete:
"""""""""""""

View File

@@ -282,7 +282,7 @@ modset hierarchy
Toggle role hierarchy check for mods and admins.
.. warning:: Disabling this setting will allow mods to take actions on users above them in the role hierarchy!
..warning:: Disabling this setting will allow mods to take actions on users above them in the role hierarchy!
This is enabled by default.

View File

@@ -86,13 +86,7 @@ language = None
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This patterns also effect to html_static_path and html_extra_path
exclude_patterns = [
"_build",
"Thumbs.db",
".DS_Store",
# to ensure that include files (partial pages) aren't built, exclude them
"**/_includes/**",
]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = "sphinx"
@@ -224,7 +218,6 @@ intersphinx_mapping = {
"dpy": (f"https://discordpy.readthedocs.io/en/v{dpy_version}/", None),
"motor": ("https://motor.readthedocs.io/en/stable/", None),
"babel": ("http://babel.pocoo.org/en/stable/", None),
"dateutil": ("https://dateutil.readthedocs.io/en/stable/", None),
}
# Extlinks

View File

@@ -13,7 +13,7 @@ This is a quick start guide for a general usage.
.. note::
If you haven't installed Red, please do it by following
one of the `installation guides <install_guides/index>`.
the :ref:`installation guides <main>`.
Assuming you correctly installed Red, you should have a
window like this:
@@ -26,8 +26,8 @@ window like this:
Invite Red to your server
-------------------------
When started, the console will show you the ``Invite URL``
(visible at the bottom of the screenshot above).
When started, the console will show you ``Invite URL`` (here at
the bottom of the screenshot).
Paste the link into your browser and select the server you want
to invite the bot in, like any other bot.
@@ -63,7 +63,7 @@ example, if your prefix is ``!``, you will execute your command like this:
The commands
~~~~~~~~~~~~
The command you're going to use the most is **help**. This command will
The command you're going to use the most is help. That command will
show you **all of the available commands** of the bot with a small description.
.. code-block:: none
@@ -106,8 +106,8 @@ parameters.
the syntax ``cleanup messages <number> [delete_pinned=False]``, which means
``delete_pinned`` default will be false, unless you specify it as true.
You can use help to show the **categories** too, generally called cogs,
by doing the following (notice the capitalization):
You can use help to show the **categories** too, generally called cogs.
Just do something like this (notice the capitalization):
.. code-block:: none
@@ -122,7 +122,7 @@ To get the description of a subcommand, type this:
When using subcommands, you also need to specify the command group.
As an example, ``cleanup`` has 6 subcommands. If you want
to use one of them, do: ``[p]cleanup messages 10``
to use one, do it like this: ``[p]cleanup messages 10``
.. _getting-started-cogs:
@@ -217,7 +217,7 @@ Server owner
~~~~~~~~~~~~
The server owner can access all commands on his guild, except the global
ones or those that can interact with system files (available for the
ones or those who can interact with system files (available for the
bot owner).
~~~~~~~~~~~~~
@@ -237,13 +237,12 @@ Moderator
A moderator is a step above the average users. You can set multiple moderator
roles with the ``[p]set addmodrole`` and ``[p]set removemodrole`` commands.
For example, in the filter cog, a mod will be able to use the various commands
under ``[p]filter`` (such as adding and removing filtered words), but they will
not be able to modify the cog settings with the ``[p]filterset`` command.
For example, in the mod cog (again), a mod will be able to mute, kick and ban;
but he won't be able to modify the cog settings with the ``[p]modset`` command.
.. tip::
If you don't like the default permission settings for some commands or
want to restrict a cog or a command to a channel/member, you can use
if want to restrict a cog or a command to a channel/member, you can use
the permissions cog.
.. _getting-started-hosting:
@@ -266,14 +265,14 @@ If you want to do it, follow these steps.
basics of the Unix commands, such as navigating the system files or use
a terminal text editor.
You should read `DigitalOcean's tutorial: An Introduction to Linux Basics
You should follow `this guide
<https://www.digitalocean.com/community/tutorials/an-introduction-to-linux-basics>`_
if you have not used Linux before.
from DigitalOcean which will introduce you to the Linux basics.
1. **Find a host**
You need to find a server to host Red. You can rent a VPS (it can be free)
on an online service. Please check :ref:`this list of hosts <host-list>` for
on an online service. Please check :ref:`this page <host-list>` for
more information.
You can also buy a Raspberry Pi (~$20), which is a micro-computer that will
@@ -307,8 +306,8 @@ If you want to do it, follow these steps.
3. **Install and set up Red**
Follow one of the Linux installation guides. We provide guides for the
most used distributions. Check the `list of install guides <install_guides/index>` and search for
Just follow one of the Linux installation guide. We provide guides for the
most used distributions. Check the :ref:`home page <main>` and search for
your distribution.
4. **Set up an auto-restart**
@@ -318,7 +317,7 @@ If you want to do it, follow these steps.
side task and handle fatal errors, so you can just leave your server running
and enjoy Red!
For that, follow :ref:`the systemd service guide <systemd-service-guide>`.
For that, just follow :ref:`this guide <systemd-service-guide>`.
.. _getting-started-userdocs:
@@ -344,12 +343,9 @@ The cog guides are formatted the same. They're divided into 3 sections:
A line that will show how the command must be invoked, with the arguments.
* **Aliases**
Each command may have one or more aliases, which are alternative command names
you can use to invoke the same command. For example, ``[p]set colour`` can also
be invoked with ``[p]set color``. If there are aliases for a command, they will
appear just under the syntax.
.. tip:: If the command show something like ``[lavalinkset|llset]``, that means
you can invoke the command with ``lavalinkset`` or with ``llset``, this is
called an alias.
* **Description**

View File

@@ -118,7 +118,7 @@ As you've added more questions, your file should look something like this:
- $25000
You can keep adding questions until you are satisfied, and then you can upload and
play your very own trivia! See :ref:`[p]triviaset custom <trivia-command-triviaset-custom>` for more information.
play your very own trivia! See :ref:`here <trivia-command-triviaset-custom>` for more details.
Still stuck? Take a look at
`the core trivia lists <https://github.com/Cog-Creators/Red-DiscordBot/tree/V3/develop/redbot/cogs/trivia/data/lists>`_

View File

@@ -8,7 +8,7 @@ Hosting Information
.. note::
This doc is written for the :ref:`hosting section <getting-started-hosting>`
of the :ref:`getting started guide <getting-started>`. Please take a look
of the :ref:`getting started <getting-started>` guide. Please take a look
if you don't know how to host Red.
@@ -41,9 +41,9 @@ Hosting on a VPS or Dedicated Server
.. warning::
Please be aware that a Linux server is controlled through a command line.
If you don't know Unix basics, please take a look at
`DigitalOcean's tutorial: An Introduction to Linux Basics
<https://www.digitalocean.com/community/tutorials/an-introduction-to-linux-basics>`_.
If you don't know Unix basics, please take a look at `this guide
<https://www.digitalocean.com/community/tutorials/an-introduction-to-linux-basics>`_
from DigitalOcean which will introduce you to the Linux basics.
------------
@@ -145,7 +145,6 @@ Free Hosting
Oracle Cloud and Google Cloud offer always free tiers with limited resources.
| Additionally, new Google Cloud customers get a $300 credit which is valid for 3 months.
New Oracle Cloud customers also get $300 of free credit, but only valid for 30 days.
| Excluding the above, there is no recommended free VPS host. Persuasion of
another individual for hosting Red is an option, albeit low in success rate.

View File

@@ -12,7 +12,8 @@ Welcome to Red - Discord Bot's documentation!
:maxdepth: 1
:caption: Installation Guides:
install_guides/index
install_windows
install_linux_mac
bot_application_guide
update_red
about_venv
@@ -32,7 +33,6 @@ Welcome to Red - Discord Bot's documentation!
:caption: User guides:
getting_started
intents
cog_guides/admin
cog_guides/alias
cog_guides/bank

View File

@@ -1,44 +0,0 @@
------------------------------
Creating a Virtual Environment
------------------------------
.. tip::
If you want to learn more about virtual environments, see page: `about-venvs`
We require installing Red into a virtual environment. Don't be scared, it's very
straightforward.
**************************
Using ``pyenv virtualenv``
**************************
Using ``pyenv virtualenv`` saves you the headache of remembering where you installed your virtual
environments. This option is only available if you installed Python with pyenv.
First, ensure your pyenv interpreter is set to python 3.8.1 or greater with the following command:
.. prompt:: bash
pyenv version
Now, create a virtual environment with the following command:
.. prompt:: bash
pyenv virtualenv <name>
Replace ``<name>`` with whatever you like. If you ever forget what you named it,
you can always use the command ``pyenv versions`` to list all virtual environments.
Now activate your virtualenv with the following command:
.. prompt:: bash
pyenv shell <name>
.. important::
You must activate the virtual environment with the above command every time you open a new
shell to run, install or update Red. You can check out other commands like ``pyenv local`` and
``pyenv global`` if you wish to keep the virtualenv activated all the time.

View File

@@ -1,38 +0,0 @@
------------------------------
Creating a Virtual Environment
------------------------------
.. tip::
If you want to learn more about virtual environments, see page: `about-venvs`
We require installing Red into a virtual environment. Don't be scared, it's very
straightforward.
**************
Using ``venv``
**************
This is the quickest way to get your virtual environment up and running, as `venv` is shipped with
python.
First, choose a directory where you would like to create your virtual environment. It's a good idea
to keep it in a location which is easy to type out the path to. From now, we'll call it
``redenv`` and it will be located in your home directory.
Create your virtual environment with the following command:
.. prompt:: bash
python3.9 -m venv ~/redenv
And activate it with the following command:
.. prompt:: bash
source ~/redenv/bin/activate
.. important::
You must activate the virtual environment with the above command every time you open a new
shell to run, install or update Red.

View File

@@ -1,56 +0,0 @@
--------------
Installing Red
--------------
Choose one of the following commands to install Red.
To install without additional config backend support:
.. prompt:: bash
:prompts: (redenv) $
python -m pip install -U pip setuptools wheel
python -m pip install -U Red-DiscordBot
Or, to install with PostgreSQL support:
.. prompt:: bash
:prompts: (redenv) $
python -m pip install -U pip setuptools wheel
python -m pip install -U "Red-DiscordBot[postgres]"
.. note::
These commands are also used for updating Red
--------------------------
Setting Up and Running Red
--------------------------
After installation, set up your instance with the following command:
.. prompt:: bash
:prompts: (redenv) $
redbot-setup
This will set the location where data will be stored, as well as your
storage backend and the name of the instance (which will be used for
running the bot).
Once done setting up the instance, run the following command to run Red:
.. prompt:: bash
:prompts: (redenv) $
redbot <your instance name>
It will walk through the initial setup, asking for your token and a prefix.
You can find out how to obtain a token with
`this guide <../bot_application_guide>`.
.. tip::
If it's the first time you're using Red, you should check our `getting-started` guide
that will walk you through all essential information on how to interact with Red.

View File

@@ -1,26 +0,0 @@
.. include:: _includes/linux-preamble.rst
-------------------------------
Installing the pre-requirements
-------------------------------
Red Hat Enterprise Linux (RHEL) 8.4-8.x and its derivatives have all required packages available in official repositories.
Install them with dnf:
.. prompt:: bash
sudo dnf -y update
sudo dnf -y group install development
sudo dnf -y install python39 python39-pip python39-devel java-11-openjdk-headless nano git
Set ``java`` executable to point to Java 11:
.. prompt:: bash
sudo alternatives --set java "java-11-openjdk.$(uname -i)"
.. Include common instructions:
.. include:: _includes/create-env-with-venv.rst
.. include:: _includes/install-and-setup-red-unix.rst

View File

@@ -1,34 +0,0 @@
----------------------------
Installing Python with pyenv
----------------------------
On distributions where Python 3.9 needs to be compiled from source, we recommend the use of pyenv.
This simplifies the compilation process and has the added bonus of simplifying setting up Red in a
virtual environment.
.. prompt:: bash
command -v pyenv && pyenv update || curl https://pyenv.run | bash
**After this command, you may see a warning about 'pyenv' not being in the load path. Follow the
instructions given to fix that, then close and reopen your shell.**
Then run the following command:
.. prompt:: bash
CONFIGURE_OPTS=--enable-optimizations pyenv install 3.9.7 -v
This may take a long time to complete, depending on your hardware. For some machines (such as
Raspberry Pis and micro-tier VPSes), it may take over an hour; in this case, you may wish to remove
the ``CONFIGURE_OPTS=--enable-optimizations`` part from the front of the command, which will
drastically reduce the install time. However, be aware that this will make Python run about 10%
slower.
After that is finished, run:
.. prompt:: bash
pyenv global 3.9.7
Pyenv is now installed and your system should be configured to run Python 3.9.

View File

@@ -1,34 +0,0 @@
----------------------------
Installing Python with pyenv
----------------------------
On distributions where Python 3.8 needs to be compiled from source, we recommend the use of pyenv.
This simplifies the compilation process and has the added bonus of simplifying setting up Red in a
virtual environment.
.. prompt:: bash
command -v pyenv && pyenv update || curl https://pyenv.run | bash
**After this command, you may see a warning about 'pyenv' not being in the load path. Follow the
instructions given to fix that, then close and reopen your shell.**
Then run the following command:
.. prompt:: bash
CONFIGURE_OPTS=--enable-optimizations pyenv install 3.8.12 -v
This may take a long time to complete, depending on your hardware. For some machines (such as
Raspberry Pis and micro-tier VPSes), it may take over an hour; in this case, you may wish to remove
the ``CONFIGURE_OPTS=--enable-optimizations`` part from the front of the command, which will
drastically reduce the install time. However, be aware that this will make Python run about 10%
slower.
After that is finished, run:
.. prompt:: bash
pyenv global 3.8.12
Pyenv is now installed and your system should be configured to run Python 3.8.

View File

@@ -1,5 +0,0 @@
.. warning::
For safety reasons, DO NOT install Red with a root user. If you are unsure how to create
a new user on Linux, see `DigitalOcean's tutorial: How To Create a New Sudo-enabled User
<https://www.digitalocean.com/community/tutorials/how-to-create-a-new-sudo-enabled-user-on-ubuntu-20-04-quickstart>`_.

View File

@@ -1,23 +0,0 @@
.. _install-arch:
============================
Installing Red on Arch Linux
============================
.. include:: _includes/linux-preamble.rst
-------------------------------
Installing the pre-requirements
-------------------------------
Install the pre-requirements with pacman:
.. prompt:: bash
sudo pacman -Syu python python-pip git jre11-openjdk-headless base-devel nano
.. Include common instructions:
.. include:: _includes/create-env-with-venv.rst
.. include:: _includes/install-and-setup-red-unix.rst

View File

@@ -1,42 +0,0 @@
.. _install-centos-7:
==========================
Installing Red on CentOS 7
==========================
.. include:: _includes/linux-preamble.rst
-------------------------------
Installing the pre-requirements
-------------------------------
Install the pre-requirements with yum:
.. prompt:: bash
sudo yum -y groupinstall development
sudo yum -y install gcc zlib-devel bzip2 bzip2-devel readline-devel sqlite sqlite-devel openssl-devel tk-devel libffi-devel xz-devel java-11-openjdk-headless nano git
In order to install gcc 8, we'll use SCL repository:
.. prompt:: bash
sudo yum -y install centos-release-scl
sudo yum -y install devtoolset-8-gcc devtoolset-8-gcc-c++
echo "source scl_source enable devtoolset-8" >> ~/.bashrc
source ~/.bashrc
In order to install Git 2.11 or greater, we recommend adding the IUS repository:
.. prompt:: bash
sudo yum -y install https://repo.ius.io/ius-release-el7.rpm
sudo yum -y swap git git224
.. Include common instructions:
.. include:: _includes/install-python-pyenv.rst
.. include:: _includes/create-env-with-pyenv-virtualenv.rst
.. include:: _includes/install-and-setup-red-unix.rst

View File

@@ -1,7 +0,0 @@
.. _install-centos-8:
=============================
Installing Red on CentOS 8.4+
=============================
.. include:: _includes/install-guide-rhel-derivatives.rst

View File

@@ -1,7 +0,0 @@
.. _install-centos-stream-8:
=================================
Installing Red on CentOS Stream 8
=================================
.. include:: _includes/install-guide-rhel-derivatives.rst

View File

@@ -1,28 +0,0 @@
.. _install-debian-10:
==================================
Installing Red on Debian 10 Buster
==================================
.. include:: _includes/linux-preamble.rst
-------------------------------
Installing the pre-requirements
-------------------------------
We recommend installing pyenv as a method of installing non-native versions of Python on
Debian Buster. This guide will tell you how. First, run the following commands:
.. prompt:: bash
sudo apt update
sudo apt -y install make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev libgdbm-dev uuid-dev python3-openssl git openjdk-11-jre-headless nano
CXX=/usr/bin/g++
.. Include common instructions:
.. include:: _includes/install-python-pyenv.rst
.. include:: _includes/create-env-with-pyenv-virtualenv.rst
.. include:: _includes/install-and-setup-red-unix.rst

View File

@@ -1,25 +0,0 @@
.. _install-debian-11:
====================================
Installing Red on Debian 11 Bullseye
====================================
.. include:: _includes/linux-preamble.rst
-------------------------------
Installing the pre-requirements
-------------------------------
Debian 11 "Bullseye" has all required packages available in official repositories. Install them
with apt:
.. prompt:: bash
sudo apt update
sudo apt -y install python3 python3-dev python3-venv python3-pip git openjdk-11-jre-headless build-essential nano
.. Include common instructions:
.. include:: _includes/create-env-with-venv.rst
.. include:: _includes/install-and-setup-red-unix.rst

View File

@@ -1,24 +0,0 @@
.. _install-fedora:
==============================
Installing Red on Fedora Linux
==============================
.. include:: _includes/linux-preamble.rst
-------------------------------
Installing the pre-requirements
-------------------------------
Fedora Linux 33 and above has all required packages available in official repositories. Install
them with dnf:
.. prompt:: bash
sudo dnf -y install python39 git java-11-openjdk-headless @development-tools nano
.. Include common instructions:
.. include:: _includes/create-env-with-venv.rst
.. include:: _includes/install-and-setup-red-unix.rst

View File

@@ -1,31 +0,0 @@
.. _install-guides:
Installing Red
==============
The list below shows the installation guides available based on the operating system being used.
If you want to host Red on a VPS and are unsure what operating system you should choose,
we recommend **Ubuntu 20.04 LTS**.
.. toctree::
:maxdepth: 1
windows
mac
arch
centos-7
centos-8
centos-stream-8
debian-10
debian-11
fedora
opensuse-leap-15
opensuse-tumbleweed
oracle-linux-8
raspberry-pi-os-10
rhel-8
rocky-linux-8
ubuntu-1804
ubuntu-2004
ubuntu-non-lts

View File

@@ -1,34 +0,0 @@
.. _install-mac:
=======================
Installing Red on macOS
=======================
-------------------------------
Installing the pre-requirements
-------------------------------
To install pre-requirements, we first have to install Brew.
In Finder or Spotlight, search for and open *Terminal*. In the terminal, paste the
following, then press Enter:
.. prompt:: bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
After the installation, install the required packages by pasting the commands and pressing enter,
one-by-one:
.. prompt:: bash
brew install python@3.9
echo 'export PATH="$(brew --prefix)/opt/python@3.9/bin:$PATH"' >> ~/.profile
source ~/.profile
brew install git
brew install --cask adoptopenjdk/openjdk/adoptopenjdk11
.. Include common instructions:
.. include:: _includes/create-env-with-venv.rst
.. include:: _includes/install-and-setup-red-unix.rst

View File

@@ -1,54 +0,0 @@
.. _install-opensuse-leap-15:
=====================================
Installing Red on openSUSE Leap 15.2+
=====================================
.. include:: _includes/linux-preamble.rst
-------------------------------
Installing the pre-requirements
-------------------------------
We recommend installing a community package to get Python 3.9 on openSUSE Leap 15.2+. This package will
be installed to the ``/opt`` directory.
First, add the Opt-Python community repository:
.. prompt:: bash
source /etc/os-release
sudo zypper -n ar -f https://download.opensuse.org/repositories/home:/Rotkraut:/Opt-Python/openSUSE_Leap_${VERSION_ID}/ Opt-Python
sudo zypper -n --gpg-auto-import-keys ref
Now install the pre-requirements with zypper:
.. prompt:: bash
sudo zypper -n install opt-python39 opt-python39-setuptools git-core java-11-openjdk-headless nano
sudo zypper -n install -t pattern devel_basis
Since Python is now installed to ``/opt/python``, we should add it to PATH. You can add a file in
``/etc/profile.d/`` to do this:
.. prompt:: bash
echo 'export PATH="/opt/python/bin:$PATH"' | sudo tee /etc/profile.d/opt-python.sh
source /etc/profile.d/opt-python.sh
Now, bootstrap pip with ensurepip:
.. prompt:: bash
sudo /opt/python/bin/python3.9 -m ensurepip --altinstall
.. note::
After this command, a warning about running pip as root might be printed.
For this specific command, this warning can be safely ignored.
.. Include common instructions:
.. include:: _includes/create-env-with-venv.rst
.. include:: _includes/install-and-setup-red-unix.rst

View File

@@ -1,25 +0,0 @@
.. _install-opensuse-tumbleweed:
=====================================
Installing Red on openSUSE Tumbleweed
=====================================
.. include:: _includes/linux-preamble.rst
-------------------------------
Installing the pre-requirements
-------------------------------
openSUSE Tumbleweed has all required dependencies available in official repositories. Install them
with zypper:
.. prompt:: bash
sudo zypper -n install python39-base python39-pip git-core java-11-openjdk-headless nano
sudo zypper -n install -t pattern devel_basis
.. Include common instructions:
.. include:: _includes/create-env-with-venv.rst
.. include:: _includes/install-and-setup-red-unix.rst

View File

@@ -1,7 +0,0 @@
.. _install-oracle-linux-8:
======================================
Installing Red on Oracle Linux 8.4-8.x
======================================
.. include:: _includes/install-guide-rhel-derivatives.rst

View File

@@ -1,28 +0,0 @@
.. _install-raspberry-pi-os-10:
=================================
Installing Red on Raspberry Pi OS
=================================
.. include:: _includes/linux-preamble.rst
-------------------------------
Installing the pre-requirements
-------------------------------
We recommend installing pyenv as a method of installing non-native versions of Python on
Raspberry Pi OS. This guide will tell you how. First, run the following commands:
.. prompt:: bash
sudo apt update
sudo apt -y install make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev libgdbm-dev uuid-dev python3-openssl git openjdk-11-jre-headless nano
CXX=/usr/bin/g++
.. Include common instructions:
.. include:: _includes/install-python38-pyenv.rst
.. include:: _includes/create-env-with-pyenv-virtualenv.rst
.. include:: _includes/install-and-setup-red-unix.rst

View File

@@ -1,7 +0,0 @@
.. _install-rhel-8:
=========================================================
Installing Red on Red Hat Enterprise Linux (RHEL) 8.4-8.x
=========================================================
.. include:: _includes/install-guide-rhel-derivatives.rst

View File

@@ -1,7 +0,0 @@
.. _install-rocky-linux-8:
===============================
Installing Red on Rocky Linux 8
===============================
.. include:: _includes/install-guide-rhel-derivatives.rst

View File

@@ -1,37 +0,0 @@
.. _install-ubuntu-1804:
==================================
Installing Red on Ubuntu 18.04 LTS
==================================
.. include:: _includes/linux-preamble.rst
-------------------------------
Installing the pre-requirements
-------------------------------
We recommend adding the ``git-core`` ppa to install Git 2.11 or greater:
.. prompt:: bash
sudo apt update
sudo apt -y install software-properties-common
sudo add-apt-repository -y ppa:git-core/ppa
We recommend adding the ``deadsnakes`` ppa to install Python 3.9:
.. prompt:: bash
sudo add-apt-repository -y ppa:deadsnakes/ppa
Now install the pre-requirements with apt:
.. prompt:: bash
sudo apt -y install python3.9 python3.9-dev python3.9-venv python3-pip git openjdk-11-jre-headless build-essential nano
.. Include common instructions:
.. include:: _includes/create-env-with-venv.rst
.. include:: _includes/install-and-setup-red-unix.rst

View File

@@ -1,31 +0,0 @@
.. _install-ubuntu-2004:
==================================
Installing Red on Ubuntu 20.04 LTS
==================================
.. include:: _includes/linux-preamble.rst
-------------------------------
Installing the pre-requirements
-------------------------------
We recommend adding the ``git-core`` ppa to install Git 2.11 or greater:
.. prompt:: bash
sudo apt update
sudo apt -y install software-properties-common
sudo add-apt-repository -y ppa:git-core/ppa
Now install the pre-requirements with apt:
.. prompt:: bash
sudo apt -y install python3.9 python3.9-dev python3.9-venv python3-pip git openjdk-11-jre-headless build-essential nano
.. Include common instructions:
.. include:: _includes/create-env-with-venv.rst
.. include:: _includes/install-and-setup-red-unix.rst

View File

@@ -1,35 +0,0 @@
.. _install-ubuntu-non-lts:
=========================================
Installing Red on Ubuntu non-LTS versions
=========================================
.. include:: _includes/linux-preamble.rst
-------------------------------
Installing the pre-requirements
-------------------------------
We recommend adding the ``git-core`` ppa to install Git 2.11 or greater:
.. prompt:: bash
sudo apt update
sudo apt -y install software-properties-common
sudo add-apt-repository -yu ppa:git-core/ppa
Now, to install non-native version of python on non-LTS versions of Ubuntu, we recommend
installing pyenv. To do this, first run the following commands:
.. prompt:: bash
sudo apt -y install make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev libgdbm-dev uuid-dev python3-openssl git openjdk-11-jre-headless nano
CXX=/usr/bin/g++
.. Include common instructions:
.. include:: _includes/install-python-pyenv.rst
.. include:: _includes/create-env-with-pyenv-virtualenv.rst
.. include:: _includes/install-and-setup-red-unix.rst

498
docs/install_linux_mac.rst Normal file
View File

@@ -0,0 +1,498 @@
.. _linux-mac-install-guide:
==============================
Installing Red on Linux or Mac
==============================
.. warning::
For safety reasons, DO NOT install Red with a root user. If you are unsure how to create
a new user on Linux, see `this guide by DigitalOcean
<https://www.digitalocean.com/community/tutorials/how-to-create-a-sudo-user-on-ubuntu-quickstart>`_.
-------------------------------
Installing the pre-requirements
-------------------------------
Please install the pre-requirements using the commands listed for your operating system.
The pre-requirements are:
- Python 3.8.1 or greater; **Python 3.9 is currently not supported!**
- Pip 18.1 or greater
- Git 2.11+
- Java Runtime Environment 11 (for audio support)
We recommend installing the nano text editor as our guides may instruct you to create or edit some files. We also recommend installing some basic compiler tools in case our dependencies don't provide pre-built "wheels" for your architecture.
*****************
Operating systems
*****************
.. contents::
:local:
----
.. _install-arch:
~~~~~~~~~~
Arch Linux
~~~~~~~~~~
.. warning::
Latest Python packages for Arch Linux provide Python 3.9 which Red does not currently support.
To use Red on Arch Linux, you will need to install latest version of Python 3.8 on your own.
.. prompt:: bash
sudo pacman -Syu python python-pip git jre11-openjdk-headless base-devel nano
Continue by `creating-venv-linux`.
----
.. _install-centos7:
.. _install-rhel7:
~~~~~~~~~~~~~~~~~
CentOS and RHEL 7
~~~~~~~~~~~~~~~~~
.. prompt:: bash
sudo yum -y groupinstall development
sudo yum -y install zlib-devel bzip2 bzip2-devel readline-devel sqlite sqlite-devel openssl-devel xz xz-devel tk-devel libffi-devel findutils java-11-openjdk-headless nano
sudo yum -y install centos-release-scl
sudo yum -y install devtoolset-8-gcc devtoolset-8-gcc-c++
echo "source scl_source enable devtoolset-8" >> ~/.bashrc
source ~/.bashrc
In order to install Git 2.11 or greater, we recommend adding the IUS repository:
.. prompt:: bash
sudo yum -y install https://repo.ius.io/ius-release-el7.rpm
sudo yum -y swap git git224
Complete the rest of the installation by `installing Python 3.8 with pyenv <install-python-pyenv>`.
----
.. _install-centos:
.. _install-rhel:
~~~~~~~~~~~~~~~~~
CentOS and RHEL 8
~~~~~~~~~~~~~~~~~
.. prompt:: bash
sudo yum -y install epel-release
sudo yum -y update
sudo yum -y groupinstall development
sudo yum -y install git zlib-devel bzip2 bzip2-devel readline-devel sqlite sqlite-devel openssl-devel xz xz-devel tk-devel libffi-devel findutils java-11-openjdk-headless nano
Complete the rest of the installation by `installing Python 3.8 with pyenv <install-python-pyenv>`.
----
.. _install-debian:
.. _install-raspbian:
~~~~~~~~~~~~~~~~~~~~~~~~~~
Debian and Raspbian Buster
~~~~~~~~~~~~~~~~~~~~~~~~~~
We recommend installing pyenv as a method of installing non-native versions of python on
Debian/Raspbian Buster. This guide will tell you how. First, run the following commands:
.. prompt:: bash
sudo apt update
sudo apt -y install make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev libgdbm-dev uuid-dev python3-openssl git openjdk-11-jre-headless nano
CXX=/usr/bin/g++
Complete the rest of the installation by `installing Python 3.8 with pyenv <install-python-pyenv>`.
----
.. _install-fedora:
~~~~~~~~~~~~
Fedora Linux
~~~~~~~~~~~~
Fedora Linux 32 and above has all required packages available in official repositories. Install
them with dnf:
.. prompt:: bash
sudo dnf -y install python38 git java-11-openjdk-headless @development-tools nano
Continue by `creating-venv-linux`.
----
.. _install-mac:
~~~
Mac
~~~
Install Brew: in Finder or Spotlight, search for and open *Terminal*. In the terminal, paste the
following, then press Enter:
.. prompt:: bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
After the installation, install the required packages by pasting the commands and pressing enter,
one-by-one:
.. prompt:: bash
brew install python@3.8
echo 'export PATH="/usr/local/opt/python@3.8/bin:$PATH"' >> ~/.profile
source ~/.profile
brew install git
brew install --cask adoptopenjdk/openjdk/adoptopenjdk11
Continue by `creating-venv-linux`.
----
.. _install-opensuse:
~~~~~~~~
openSUSE
~~~~~~~~
openSUSE Leap 15.2+
*******************
We recommend installing a community package to get Python 3.8 on openSUSE Leap 15.2+. This package will
be installed to the ``/opt`` directory.
First, add the Opt-Python community repository:
.. prompt:: bash
source /etc/os-release
sudo zypper -n ar -f https://download.opensuse.org/repositories/home:/Rotkraut:/Opt-Python/openSUSE_Leap_${VERSION_ID}/ Opt-Python
sudo zypper -n --gpg-auto-import-keys ref
Now install the pre-requirements with zypper:
.. prompt:: bash
sudo zypper -n install opt-python38 opt-python38-setuptools git-core java-11-openjdk-headless nano
sudo zypper -n install -t pattern devel_basis
Since Python is now installed to ``/opt/python``, we should add it to PATH. You can add a file in
``/etc/profile.d/`` to do this:
.. prompt:: bash
echo 'export PATH="/opt/python/bin:$PATH"' | sudo tee /etc/profile.d/opt-python.sh
source /etc/profile.d/opt-python.sh
Now, install pip with easy_install:
.. prompt:: bash
sudo /opt/python/bin/easy_install-3.8 pip
Continue by `creating-venv-linux`.
openSUSE Tumbleweed
*******************
openSUSE Tumbleweed has all required dependencies available in official repositories. Install them
with zypper:
.. prompt:: bash
sudo zypper -n install python38-base python38-pip git-core java-11-openjdk-headless nano
sudo zypper -n install -t pattern devel_basis
Continue by `creating-venv-linux`.
----
.. _install-ubuntu-1804:
~~~~~~~~~~~~~~~~
Ubuntu 18.04 LTS
~~~~~~~~~~~~~~~~
We recommend adding the ``git-core`` ppa to install Git 2.11 or greater:
.. prompt:: bash
sudo apt update
sudo apt -y install software-properties-common
sudo add-apt-repository -y ppa:git-core/ppa
We recommend adding the ``deadsnakes`` ppa to install Python 3.8.1 or greater:
.. prompt:: bash
sudo add-apt-repository -y ppa:deadsnakes/ppa
Now install the pre-requirements with apt:
.. prompt:: bash
sudo apt -y install python3.8 python3.8-dev python3.8-venv python3-pip git openjdk-11-jre-headless build-essential nano
Continue by `creating-venv-linux`.
----
.. _install-ubuntu:
~~~~~~~~~~~~~~~~
Ubuntu 20.04 LTS
~~~~~~~~~~~~~~~~
We recommend adding the ``git-core`` ppa to install Git 2.11 or greater:
.. prompt:: bash
sudo apt update
sudo apt -y install software-properties-common
sudo add-apt-repository -y ppa:git-core/ppa
Now install the pre-requirements with apt:
.. prompt:: bash
sudo apt -y install python3.8 python3.8-dev python3.8-venv python3-pip git openjdk-11-jre-headless build-essential nano
Continue by `creating-venv-linux`.
----
.. _install-ubuntu-non-lts:
~~~~~~~~~~~~~~~~~~~~~~~
Ubuntu non-LTS versions
~~~~~~~~~~~~~~~~~~~~~~~
We recommend adding the ``git-core`` ppa to install Git 2.11 or greater:
.. prompt:: bash
sudo apt update
sudo apt -y install software-properties-common
sudo add-apt-repository -yu ppa:git-core/ppa
Now, to install non-native version of python on non-LTS versions of Ubuntu, we recommend
installing pyenv. To do this, first run the following commands:
.. prompt:: bash
sudo apt -y install make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev libgdbm-dev uuid-dev python3-openssl git openjdk-11-jre-headless nano
CXX=/usr/bin/g++
And then complete the rest of the installation by `installing Python 3.8 with pyenv <install-python-pyenv>`.
----
.. _install-python-pyenv:
****************************
Installing Python with pyenv
****************************
.. note::
If you followed one of the sections above, and weren't linked here afterwards, you should skip
this section.
On distributions where Python 3.8 needs to be compiled from source, we recommend the use of pyenv.
This simplifies the compilation process and has the added bonus of simplifying setting up Red in a
virtual environment.
.. prompt:: bash
command -v pyenv && pyenv update || curl https://pyenv.run | bash
**After this command, you may see a warning about 'pyenv' not being in the load path. Follow the
instructions given to fix that, then close and reopen your shell.**
Then run the following command:
.. prompt:: bash
CONFIGURE_OPTS=--enable-optimizations pyenv install 3.8.10 -v
This may take a long time to complete, depending on your hardware. For some machines (such as
Raspberry Pis and micro-tier VPSes), it may take over an hour; in this case, you may wish to remove
the ``CONFIGURE_OPTS=--enable-optimizations`` part from the front of the command, which will
drastically reduce the install time. However, be aware that this will make Python run about 10%
slower.
After that is finished, run:
.. prompt:: bash
pyenv global 3.8.10
Pyenv is now installed and your system should be configured to run Python 3.8.
Continue by `creating-venv-linux`.
.. _creating-venv-linux:
------------------------------
Creating a Virtual Environment
------------------------------
.. tip::
If you want to learn more about virtual environments, see page: `about-venvs`
We require installing Red into a virtual environment. Don't be scared, it's very
straightforward.
You have 2 options:
* :ref:`using-venv` (quick and easy, involves just two commands)
* :ref:`using-pyenv-virtualenv` (only available and recommended when you installed Python with pyenv)
----
.. _using-venv:
**************
Using ``venv``
**************
This is the quickest way to get your virtual environment up and running, as `venv` is shipped with
python.
First, choose a directory where you would like to create your virtual environment. It's a good idea
to keep it in a location which is easy to type out the path to. From now, we'll call it
``redenv`` and it will be located in your home directory.
Create your virtual environment with the following command:
.. prompt:: bash
python3.8 -m venv ~/redenv
And activate it with the following command:
.. prompt:: bash
source ~/redenv/bin/activate
.. important::
You must activate the virtual environment with the above command every time you open a new
shell to run, install or update Red.
Continue by `installing-red-linux-mac`.
----
.. _using-pyenv-virtualenv:
**************************
Using ``pyenv virtualenv``
**************************
Using ``pyenv virtualenv`` saves you the headache of remembering where you installed your virtual
environments. This option is only available if you installed Python with pyenv.
First, ensure your pyenv interpreter is set to python 3.8.1 or greater with the following command:
.. prompt:: bash
pyenv version
Now, create a virtual environment with the following command:
.. prompt:: bash
pyenv virtualenv <name>
Replace ``<name>`` with whatever you like. If you ever forget what you named it,
you can always use the command ``pyenv versions`` to list all virtual environments.
Now activate your virtualenv with the following command:
.. prompt:: bash
pyenv shell <name>
.. important::
You must activate the virtual environment with the above command every time you open a new
shell to run, install or update Red. You can check out other commands like ``pyenv local`` and
``pyenv global`` if you wish to keep the virtualenv activated all the time.
Continue by `installing-red-linux-mac`.
.. _pyenv-installer: https://github.com/pyenv/pyenv-installer/blob/master/README.rst
.. _installing-red-linux-mac:
--------------
Installing Red
--------------
Choose one of the following commands to install Red.
To install without additional config backend support:
.. prompt:: bash
:prompts: (redenv) $
python -m pip install -U pip setuptools wheel
python -m pip install -U Red-DiscordBot
Or, to install with PostgreSQL support:
.. prompt:: bash
:prompts: (redenv) $
python -m pip install -U pip setuptools wheel
python -m pip install -U "Red-DiscordBot[postgres]"
.. note::
These commands are also used for updating Red
--------------------------
Setting Up and Running Red
--------------------------
After installation, set up your instance with the following command:
.. prompt:: bash
:prompts: (redenv) $
redbot-setup
This will set the location where data will be stored, as well as your
storage backend and the name of the instance (which will be used for
running the bot).
Once done setting up the instance, run the following command to run Red:
.. prompt:: bash
:prompts: (redenv) $
redbot <your instance name>
It will walk through the initial setup, asking for your token and a prefix.
You can find out how to obtain a token with
`this guide <bot_application_guide>`.
.. tip::
If it's the first time you're using Red, you should check our `getting-started` guide
that will walk you through all essential information on how to interact with Red.

View File

@@ -10,6 +10,15 @@ Installing the pre-requirements
Please install the pre-requirements by following instructions from one of the following subsections.
The pre-requirements are:
- Python 3.8.1 or greater; **Python 3.9 is currently not supported!**
- Pip 18.1 or greater
- Git 2.11+
- Java Runtime Environment 11 (for audio support)
We also recommend installing some basic compiler tools, in case our dependencies don't provide
pre-built "wheels" for your architecture.
.. contents:: Choose a method of installing pre-requirements:
:local:
@@ -31,7 +40,7 @@ Then run each of the following commands:
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
choco upgrade git --params "/GitOnlyOnPath /WindowsTerminal" -y
choco upgrade visualstudio2019-workload-vctools -y
choco upgrade python3 -y --version 3.9.7
choco upgrade python3 -y --version 3.8.10
For Audio support, you should also run the following command before exiting:
@@ -55,7 +64,7 @@ Manually installing dependencies
* `MSVC Build tools <https://www.visualstudio.com/downloads/#build-tools-for-visual-studio-2019>`_
* `Python 3.8.1 or greater <https://www.python.org/downloads/>`_
* `Python 3.8.1 or greater <https://www.python.org/downloads/>`_; **Python 3.9 is currently not supported!**
.. attention:: Please make sure that the box to add Python to PATH is CHECKED, otherwise
you may run into issues when trying to run Red.
@@ -102,7 +111,7 @@ Then create your virtual environment with the following command
.. prompt:: batch
py -3.9 -m venv "%userprofile%\redenv"
py -3.8 -m venv "%userprofile%\redenv"
And activate it with the following command
@@ -166,7 +175,8 @@ Once done setting up the instance, run the following command to run Red:
redbot <your instance name>
It will walk through the initial setup, asking for your token and a prefix.
`See how to obtain a token. <../bot_application_guide>`
You can find out how to obtain a token with
`this guide <bot_application_guide>`.
.. tip::
If it's the first time you're using Red, you should check our `getting-started` guide

View File

@@ -1,134 +0,0 @@
.. _intents:
.. |br| raw:: html
<br />
==========================================
About (privileged) intents and public bots
==========================================
This page aims to explain Red's current intents requirements,
our stance regarding "public bots" and the impact of some announced
Discord changes coming in April 2022.
To clarify:
- **Small bots** are bots under 100 servers. They currently do not need to undergo Discord's
bot verification process
- **Public bots** (or big bots) are bots that have reached 100 servers. They need to be
`verified <https://support.discord.com/hc/en-us/articles/360040720412-Bot-Verification-and-Data-Whitelisting>`_
by Discord to join more than 100 servers and gain privileged intents
.. warning::
It is **very** important that you fully read this page if you're the owner of a public bot or strive to scale your bot at that level.
.. _intents-intents:
-------
Intents
-------
Red currently requires **all intents** to be active in order to function properly.
The reason for this requirement is that there are some technical challenges that need
to be overcome before we're able to adapt Red to function with only *some* intents:
these challenges are mainly due to the modular / extensible nature of Red and the fact
that Red has a long history (dating back to 2016!), making big changes naturally slower
to happen. In comparison, intents have been introduced fairly recently. |br|
This is not a problem if you have a small bot: you can simply go to the
`Discord development portal <https://discord.com/developers/applications/me>`_
and enable them. However, if you have a public bot Discord will want you to attain
verified status: you should read :ref:`our stance regarding public bots <intents-public-bots>`
and our guidelines for the :ref:`verification process <intents-bot-verification-process>`.
.. _intents-public-bots:
-----------
Public bots
-----------
Public bots, or big bots, are not our target audience and we **do not** offer support for them.
Red was designed with one single goal in mind: a bot that you can host on your own hardware
and customize to your needs, making it really *your* bot. **The target audience of Red are server
owners with a few servers**, often with specific needs that can be covered by the vast cog ecosystem
that the community has built over the years. |br| Red was never built with big bots in mind,
bots with thousands upon thousands of servers: these bots face unique challenges.
Such Red instances *do exist*, it is not impossible to adapt Red and meet those criteria,
but it requires work and bot owners with the technical knowledge to make it happen.
It is **not** something that we support. |br|
When your bot reaches the public bot scale and it is therefore required to be verified it
is *expected* that you know what's in your bot and how it works: that doesn't just mean on the
surface level, it means coding knowledge and the ability to maintain it on your own.
.. _intents-bot-verification-process:
------------------------
Bot verification process
------------------------
When your bot ceases to be a small bot Discord will require you to verify your bot before allowing
it to join more servers and gain privileged intents. If you've read the previous section,
you will know that we do **not** support public bots. Logically, we also do not provide help for
the verification process.
Regardless of our stance, we do feel the need to give some pointers: many bot owners reach this point
and become fairly lost, as they've simply been *users* so far.
They have installed their bot, some cogs, personalized it, yadda yadda. Again, they have been users,
not developers. Unless they also have an interest in development, they will likely not have a clue about
what's going under the hood, much like you're not expected to be a mechanic to drive your car. And there's
nothing wrong with that! Red has been designed to be as user friendly as possible. |br|
The problem is this: Red is an outlier. Discord has built the bot verification process with the expectation
that the owner knows *on a technical level* what their bot does and how it works. And this is because outside
Red, the typical bot owner is also a developer who coded their own bot from scratch.
While, again, we *cannot* support you going forward we want to give you some pointers to follow when filling
out your application:
- Learn on a technical level what intents are and what's going on, under the hood, in your bot. Knowing its
features at a surface level is not enough. What features need intents to work and why?
- Forget that you're hosting Red. You're hosting *a bot* and Discord wants to know what *your bot* does and why
you're requesting privileged intents. |br| A **very bad** answer is: *"Because Red needs them"*. |br|
A **good** answer is: *"My bot has X features and it needs Y intents to work properly"*. |br| We've had a fair share
of people that in their naivety went with the bad answer and it seems that at this point merely mentioning Red
is a guaranteed way to have your application rejected.
.. _intents-slash-commands:
---------------------------------
Message intent and slash commands
---------------------------------
.. warning::
If you own a public bot it is extremely important that you read this section.
Discord has announced that **starting April 2022** the content of users' messages
`will be "locked" behind message intent <https://support-dev.discord.com/hc/en-us/articles/4404772028055>`_ |br|
If you're the owner of a small bot, fear not, this is yet another box that you have to tick from the
`Discord development portal <https://discord.com/developers/applications/me>`_. |br|
But if you're the owner of a public bot, things might be a lot less pleasant.
To recap, unless you have
message intent, you will only receive message content for:
- Messages that your bot sends
- Messages that your bot receives in DM
- Messages in which your bot is mentioned
In case it's not clear by now, your bot needs message content to parse (see) the commands it receives. And if
you don't attain message intent, your bot will not be able to... well, do anything. |br|
The *bandaid fix* is for you to change your bot's prefix to a mention and a good portion of your commands will likely
still work. You will however lose many functions, namely anything that relies on seeing message content to act. |br|
The more *proper fix* is also not easy. You will need to justify your need for the message intent to Discord and
they will only accept "compelling use cases".
`It is not known what those even entail <https://gist.github.com/spiralw/091714718718379b6efcdbcaf807a024#q-what-usecases-will-be-valid>`_ at this point, but they have already stated that "parsing commands" is not a valid justification. |br|
To make the matter worse, Discord is making `a huge push for all bot developers to implement slash commands <https://support.discord.com/hc/en-us/articles/1500000368501-Slash-Commands-FAQ>`_, which at the moment
are rather lacking in features and cannot cover all the functionalities that standard commands offer. |br|
Discord staff
`stated that they will want your bot to have slash commands when you ask for message intent <https://gist.github.com/spiralw/091714718718379b6efcdbcaf807a024#q-if-we-are-granted-this-intent-will-bots-be-sanctioned-if-they-use-it-for-their-own-use-case-but-also-to-continue-to-run-normal-non-slash-commands-or-do-we-assume-that-if-you-are-granted-the-intent-you-are-trusted-with-it-and-are-allowed-to-use-it-for-additional-uses>`_. |br|
Slash commands might very well turn out to be a big undertaking for the Red team to implement, even more now that our
underlying library, `discord.py <https://github.com/Rapptz/discord.py>`_, has been discontinued. |br|
The time window that Discord is giving us to adapt is very narrow: **Red will likely not be able to support slash
commands for April 2022** and you should plan accordingly.

View File

@@ -97,7 +97,10 @@ Red 3.1.X
If you have Red 3.1.X, you will need to follow the install instructions for your operating system. Make sure that you turn your bot off first.
Go to the `install_guides/index` guide and follow every step to ensure you have all dependencies up-to-date and only skip the ``redbot-setup`` step as you already have a bot instance.
- `Windows <install_windows>`
- `Linux & Mac <install_linux_mac>`
Follow every step to ensure you have all dependencies up-to-date and only skip ``redbot-setup`` step as you already have a bot instance.
**If you already have Red installed in a virtual environment, you will need to delete it before starting this process.**
@@ -136,6 +139,9 @@ Red 3.0.2 and older
If you have Red 3.0.2 or older, you will need to follow the install instructions for your operating system. Make sure that you turn your bot off first.
Go to the `install_guides/index` guide and follow every step to ensure you have all dependencies up-to-date and only skip the ``redbot-setup`` step as you already have a bot instance.
- `Windows <install_windows>`
- `Linux & Mac <install_linux_mac>`
Follow every step to ensure you have all dependencies up-to-date and only skip ``redbot-setup`` step as you already have a bot instance.
**If you already have Red installed in a virtual environment, you will need to delete it before starting this process.**

View File

@@ -214,7 +214,7 @@ def _early_init():
_ensure_no_colorama()
__version__ = "3.4.14"
__version__ = "3.4.11"
version_info = VersionInfo.from_str(__version__)
# Filter fuzzywuzzy slow sequence matcher warning
@@ -227,12 +227,3 @@ if "--debug" not in _sys.argv:
# Individual warnings - tracked in https://github.com/Cog-Creators/Red-DiscordBot/issues/3529
# DeprecationWarning: an integer is required (got type float). Implicit conversion to integers using __int__ is deprecated, and may be removed in a future version of Python.
_warnings.filterwarnings("ignore", category=DeprecationWarning, module="importlib", lineno=219)
# DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10
# stdin, stdout, stderr = await tasks.gather(stdin, stdout, stderr,
# this is a bug in CPython
_warnings.filterwarnings(
"ignore",
category=DeprecationWarning,
module="asyncio",
message="The loop argument is deprecated since Python 3.8",
)

View File

@@ -18,7 +18,6 @@ from pathlib import Path
from typing import NoReturn
import discord
import rich
# Set the event loop policies here so any subsequent `new_event_loop()`
# calls, in particular those as a result of the following imports,
@@ -85,7 +84,8 @@ def debug_info():
os_info = platform.mac_ver()
osver = "Mac OSX {} {}".format(os_info[0], os_info[2])
else:
osver = f"{distro.name()} {distro.version()}".strip()
os_info = distro.linux_distribution()
osver = "{} {}".format(os_info[0], os_info[1]).strip()
user_who_ran = getpass.getuser()
info = (
"Debug Info for Red\n\n"
@@ -395,12 +395,10 @@ async def run_bot(red: Red, cli_flags: Namespace) -> None:
sys.exit(0)
sys.exit(1)
except discord.PrivilegedIntentsRequired:
console = rich.get_console()
console.print(
print(
"Red requires all Privileged Intents to be enabled.\n"
"You can find out how to enable Privileged Intents with this guide:\n"
"https://docs.discord.red/en/stable/bot_application_guide.html#enabling-privileged-intents",
style="red",
"https://docs.discord.red/en/stable/bot_application_guide.html#enabling-privileged-intents"
)
sys.exit(1)

View File

@@ -450,64 +450,45 @@ class Admin(commands.Cog):
pass
@selfroleset.command(name="add")
async def selfroleset_add(self, ctx: commands.Context, *roles: discord.Role):
async def selfroleset_add(self, ctx: commands.Context, *, role: discord.Role):
"""
Add a role, or a selection of roles, to the list of available selfroles.
Add a role to the list of available selfroles.
NOTE: The role is case sensitive!
"""
current_selfroles = await self.config.guild(ctx.guild).selfroles()
for role in roles:
if not self.pass_user_hierarchy_check(ctx, role):
await ctx.send(
_(
"I cannot let you add {role.name} as a selfrole because that role is"
" higher than or equal to your highest role in the Discord hierarchy."
).format(role=role)
)
return
if role.id not in current_selfroles:
current_selfroles.append(role.id)
else:
await ctx.send(
_('The role "{role.name}" is already a selfrole.').format(role=role)
)
if not self.pass_user_hierarchy_check(ctx, role):
await ctx.send(
_(
"I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
).format(role=role)
)
return
async with self.config.guild(ctx.guild).selfroles() as curr_selfroles:
if role.id not in curr_selfroles:
curr_selfroles.append(role.id)
await ctx.send(_("Added."))
return
await self.config.guild(ctx.guild).selfroles.set(current_selfroles)
if (count := len(roles)) > 1:
message = _("Added {count} selfroles.").format(count=count)
else:
message = _("Added 1 selfrole.")
await ctx.send(message)
await ctx.send(_("That role is already a selfrole."))
@selfroleset.command(name="remove")
async def selfroleset_remove(self, ctx: commands.Context, *roles: SelfRole):
async def selfroleset_remove(self, ctx: commands.Context, *, role: SelfRole):
"""
Remove a role, or a selection of roles, from the list of available selfroles.
Remove a role from the list of available selfroles.
NOTE: The role is case sensitive!
"""
current_selfroles = await self.config.guild(ctx.guild).selfroles()
for role in roles:
if not self.pass_user_hierarchy_check(ctx, role):
await ctx.send(
_(
"I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
).format(role=role)
)
return
current_selfroles.remove(role.id)
if not self.pass_user_hierarchy_check(ctx, role):
await ctx.send(
_(
"I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
).format(role=role)
)
return
async with self.config.guild(ctx.guild).selfroles() as curr_selfroles:
curr_selfroles.remove(role.id)
await self.config.guild(ctx.guild).selfroles.set(current_selfroles)
if (count := len(roles)) > 1:
message = _("Removed {count} selfroles.").format(count=count)
else:
message = _("Removed 1 selfrole.")
await ctx.send(message)
await ctx.send(_("Removed."))
@commands.command()
@checks.is_owner()

View File

@@ -17,7 +17,5 @@ class SelfRole(commands.Converter):
selfroles = await admin.config.guild(ctx.guild).selfroles()
if role.id not in selfroles:
raise commands.BadArgument(
_('The role "{role_name}" is not a valid selfrole.').format(role_name=role.name)
)
raise commands.BadArgument(_("The provided role is not a valid selfrole."))
return role

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Afrikaans\n"
"MIME-Version: 1.0\n"
@@ -213,57 +213,49 @@ msgstr ""
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr ""
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr ""
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr ""
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr ""
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr ""
@@ -279,7 +271,7 @@ msgstr ""
msgid "The Admin cog is not loaded."
msgstr ""
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Arabic\n"
"MIME-Version: 1.0\n"
@@ -237,57 +237,51 @@ msgstr "تطبيق الرتبالذاتية."
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" إضافة رتبة إلى قائمة الرتب الذاتية المتوفرة.\n\n"
" ملاحظة: الرتبة حساس للحالة!\n"
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "لا يمكنني السماح لك بإضافة {role.name} لرتبة ذاتي لأن هذا الرتبة أعلى من أو يساوي أعلى رتبةك في التسلسل الهرمي لـ Discord."
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "لقد قمت بنجاح بإضافة {role.name} إلى {member.display_name}"
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "الرتبة المذكورة ليست على قائمة الرتب الذاتية."
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\\ ن أ شن ة أشنة الان زة الان اكل سالت الكلسه \\ ن \\ ن ن ن جال: الـ\"با\" \\ ن"
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "لا يمكنني السماح لك بإزالة {role.name} من كونه رتبةًا ذاتيًا لأن هذا الرتبة أعلى من أو يساوي أعلى رتبة لك في التسلسل الهرمي Discord."
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "لقد قمت بنجاح بإزالة {role.name} من {member.display_name}"
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "قفل البوت للسيرفر الحالي فقط."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "لم يعد البوت مقفول للسيرفر الحالي فقط."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "لقد تم قفل البوت للسيرفر الحالي فقط."
@@ -303,7 +297,7 @@ msgstr "لم أستطع أن أعلن للخوادم التالية:"
msgid "The Admin cog is not loaded."
msgstr "لم يتم تحميل وحدة الأدمن cog."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr ""
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "الرتبة المذكورة ليست على قائمة الرتب الذاتية."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Bulgarian\n"
"MIME-Version: 1.0\n"
@@ -221,57 +221,49 @@ msgstr ""
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "Добавено."
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "Тази роля вече е самостоятелна роля."
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "Премахнато."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Заключете бота само за текущите му сървъри."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "Ботът вече не е заключен за сървъри."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "Ботът е заключен за сървъри."
@@ -287,7 +279,7 @@ msgstr "Не можах да обявя в следните сървъри: "
msgid "The Admin cog is not loaded."
msgstr "Admin cog не беше зареден."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr ""
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "Предоставената роля не е валидна самостоятелна роля."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Bosnian\n"
"MIME-Version: 1.0\n"
@@ -213,57 +213,49 @@ msgstr ""
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr ""
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr ""
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr ""
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr ""
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr ""
@@ -279,7 +271,7 @@ msgstr ""
msgid "The Admin cog is not loaded."
msgstr ""
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Catalan\n"
"MIME-Version: 1.0\n"
@@ -252,57 +252,55 @@ msgstr "Gestiona selfroles."
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Afegeix un rol a la llista de selfroles disponibles.\n\n"
" NOTA: El rol és sensible a majúscules!\n"
" "
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "No puc deixar-te afegir {role.name} com a selfrole perquè el rol està per sobre o igual que el meu rol més alt a la jerarquia de Discord."
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "Afegit."
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "Aquest rol ja és un selfrole."
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Treu un rol de la llista de selfroles disponibles.\n\n"
" NOTA: El rol és sensible a majúscules!\n"
" "
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "No puc deixar-te treure {role.name} de ser un selfrole perquè el rol està per sobre o igual que el meu rol més alt a la jerarquia de Discord."
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "Esborrat."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Bloqueja el bot només als seus servidors actuals."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "El bot ja no està bloquejat pel servidor."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "El bot està ara bloquejat pel servidor."
@@ -318,7 +316,7 @@ msgstr "No he pogut anunciar als servidor següents: "
msgid "The Admin cog is not loaded."
msgstr "El cog Admin no s'ha carregat."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr ""
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "El rol proporcionat no és un selfrole vàlid."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Czech\n"
"MIME-Version: 1.0\n"
@@ -248,57 +248,55 @@ msgstr "Spravovat self-role."
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Přidá roli do seznamu dostupných self-rolí.\n\n"
" POZNÁMKA: Role je citlivá na malá a velká písmena!\n"
" "
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Nemohu ti dovolit odebrat {role.name} jako self-roli uživateli, protože tato role je vyšší nebo rovna tvé nejvyšší roli v Discord hierarchii."
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "Přidáno."
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "Tato role je již self-rolí."
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Odstraní roli ze seznamu dostupných self-rolí.\n\n"
" POZNÁMKA: Role je citlivá na malá a velká písmena!\n"
" "
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Nemohu ti dovolit odebrat {role.name} uživateli, protože tato role je vyšší nebo rovna tvé nejvyšší roli v Discord hierarchii."
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "Odstraněno."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Uzamkne bota pouze na jeho aktuální servery."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "Bot již není uzamčen na server."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "Bot je nyní serverem uzamčen."
@@ -314,7 +312,7 @@ msgstr "Nemohu oznámit následujícím serverům: "
msgid "The Admin cog is not loaded."
msgstr "Admin cog není načten."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr ""
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "Daná role není platná self-role."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Danish\n"
"MIME-Version: 1.0\n"
@@ -213,57 +213,49 @@ msgstr ""
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "Tilføjet."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "Fjernet."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Lås en bot til dens nuværende server."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "Botten er ikke længere låst til serveren."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "Botten er nu låst til serveren."
@@ -279,7 +271,7 @@ msgstr "Jeg kunne ikke annoncere til de følgende servere: "
msgid "The Admin cog is not loaded."
msgstr "Admin cog er ikke indlæst."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr ""
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "Den vedlagte rolle er ikke en valid selvrolle."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@@ -45,7 +45,7 @@ msgstr "Du darfst nicht die Rolle „{role.name}“ bearbeiten, weil diese Rolle
#: redbot/cogs/admin/admin.py:59
msgid "I need the \"Manage Roles\" permission to do that."
msgstr "Ich brauche dafür die Bereichtigung „Rollen verwalten“."
msgstr ""
#: redbot/cogs/admin/admin.py:61
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
@@ -252,57 +252,55 @@ msgstr "Selbst hinzufügbare Rollen verwalten."
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Füge eine Rolle zur Liste der selbst hinzufügbaren Rollen hinzu.\n\n"
" HINWEIS: Beachte Groß- und Kleinschreibung!\n"
" "
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Du kannst dir nicht die Rolle „{role.name}“ zuweisen, weil diese Rolle höher oder gleich deiner höchsten Rolle in der Discord Rollen-Hierarchie ist."
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "Hinzugefügt."
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "Diese Rolle ist bereits selbst hinzufügbar."
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Entferne eine Rolle von der Liste der selbst hinzufügbaren Rollen.\n\n"
" HINWEIS: Beachte Groß- und Kleinschreibung!\n"
" "
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Du darfst nicht die Rolle „{role.name}“ von der Liste der selbst hinzufügbaren Rollen entfernen, weil diese Rolle höher oder gleich deiner höchsten Rolle in der Discord Rollen-Hierarchie ist."
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "Entfernt."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Der Bot kann keinem neuen Server beitreten."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "Der Bot kann nun anderen Servern beitreten."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "Der Bot ist jetzt gesperrt neuen Servern beizutreten."
@@ -318,7 +316,7 @@ msgstr "Ich konnte die Ankündigung auf diesen Servern nicht ausführen: "
msgid "The Admin cog is not loaded."
msgstr "Das Admin-Cog ist nicht geladen."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr ""
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "Die angegebene Rolle ist keine gültige selbst auswählbare Rolle."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Greek\n"
"MIME-Version: 1.0\n"
@@ -213,57 +213,49 @@ msgstr ""
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr ""
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr ""
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr ""
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr ""
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr ""
@@ -279,7 +271,7 @@ msgstr ""
msgid "The Admin cog is not loaded."
msgstr ""
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Spanish\n"
"MIME-Version: 1.0\n"
@@ -21,7 +21,7 @@ msgstr "Intenté hacer algo que Discord me ha negado el permiso. Su comando no s
#: redbot/cogs/admin/admin.py:23
msgid "I can not give {role.name} to {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
msgstr "No puedo dar el rol {role.name} a {member.display_name} porque ese rol es mayor o igual a mi rol más alto en la jerarquía de Discord."
msgstr "No puedo dar el rol{role.name} a {member.display_name} porque ese rol es mayor o igual a mi rol más alto en la jerarquía de Discord."
#: redbot/cogs/admin/admin.py:29
msgid "I can not remove {role.name} from {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
@@ -252,57 +252,55 @@ msgstr "Gestionar selfroles."
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Añade un rol a la lista de selfroles disponibles.\n\n"
" NOTA: ¡El rol es sensible a mayúsculas\n"
" "
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "No puedo permitir que añadas {role.name} como selfrole porque ese rol es mayor o igual a tu rol más alto en la jerarquía de Discord."
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "Añadido."
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "Ese rol ya es un selfrole."
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Quita un rol de la lista de selfroles disponibles.\n\n"
" NOTA: El rol es sensible a mayúsculas\n"
" "
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "No puedo permitir que elimines a {role.name} de ser un selfrole porque ese rol es mayor o igual a tu rol más alto en la jerarquía de Discord."
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "Eliminado."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Bloquea el bot sólo a sus servidores actuales."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "El bot ya no está bloqueado por el servidor."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "El bot está bloqueado por el servidor."
@@ -318,7 +316,7 @@ msgstr "No pude anunciar en los siguientes servidores: "
msgid "The Admin cog is not loaded."
msgstr "El cog Admin no está cargado."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr ""
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "El rol proporcionado no es un selfrole válido."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Finnish\n"
"MIME-Version: 1.0\n"
@@ -45,7 +45,7 @@ msgstr "En voi antaa sinun muokata roolia {role.name}, koska rooli on korkeammal
#: redbot/cogs/admin/admin.py:59
msgid "I need the \"Manage Roles\" permission to do that."
msgstr "Tarvitsen \"Muokkaa Rooleja\" oikeudet tehdäkseni tuon."
msgstr ""
#: redbot/cogs/admin/admin.py:61
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
@@ -197,9 +197,7 @@ msgid "\n"
" Server admins must have configured the role as user settable.\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr "Lisää tai poista rooli itseltäsi.\n\n"
"Palvelimen ylläpitäjän pitää olla asettanut se rooli käyttäjä-asetettavaksi.\n"
"MUISTA: Roolin nimessä merkitsee isot ja pienet kirjaimet."
msgstr ""
#: redbot/cogs/admin/admin.py:411
#, docstring
@@ -250,57 +248,55 @@ msgstr "Hallitse selfroleja."
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Lisää rooli saatavilla olevien selfrolien luetteloon.\n\n"
" HUOM: Rooli on kirjainkoolla herkkä!\n"
" "
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "En voi antaa roolia {role.name} käyttäjälle, koska rooli on korkeammalla kuin minun ylin roolini Discordin hierarkiassa."
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "Lisätty."
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "Tämä rooli on jo selfrole."
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Lisää rooli saatavilla olevien selfrolien luetteloon.\n\n"
" HUOM: Rooli on kirjainkoolla herkkä!\n"
" "
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "En voi antaa roolia {role.name} käyttäjälle, koska rooli on korkeammalla kuin minun ylin roolini Discordin hierarkiassa."
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "Poistettu."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Lukitse botti vain nykyisille palvelimille."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "Botti ei ole enää palvelinlukittu."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "Botti on nyt palvelinlukittu."
@@ -316,7 +312,7 @@ msgstr "En voinut ilmoittaa seuraavalle palvelimelle: "
msgid "The Admin cog is not loaded."
msgstr "Admin cog ei ole ladattu."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr ""
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "Annettu rooli ei ole kelvollinen selfrole."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: French\n"
"MIME-Version: 1.0\n"
@@ -252,63 +252,55 @@ msgstr "Gérer les auto-roles."
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr "\n"
"Ajouter un rôle, ou une sélection de rôles, à la liste des rôles personnels disponibles.\n\n"
"Ajouter un rôle à la liste des auto-rôles disponibles.\n\n"
" NOTE : Le nom du rôle est sensible aux majuscules et minuscules !\n"
" "
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Je ne peux pas vous laisser ajouter {role.name} comme auto-rôle car ce rôle est supérieur ou égal à votre rôle le plus haut dans la hiérarchie Discord."
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr "Le rôle \"{role.name}\" est déjà un rôle auto-attribué."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "Ajouté."
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "Ce rôle est déjà un selfrole."
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr "Ajout de 1 auto-rôle."
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr "\n"
"Ajouter un rôle, ou une sélection de rôles, à la liste des rôles personnels disponibles.\n\n"
" NOTE : Le nom du rôle est sensible aux majuscules et minuscules !\n"
" Supprimer un rôle de la liste des auto-rôles.\n\n"
" REMARQUE : Le nom du rôle est sensible aux majuscules et minuscules !\n"
" "
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Je ne peux pas vous laisser ajouter {role.name} comme auto-rôle car ce rôle est supérieur ou égal à votre rôle le plus haut dans la hiérarchie Discord."
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr "Suppression de {count} auto-rôles."
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "Retiré."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr "Suppression d'un auto-rôle."
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Verrouiller un bot sur ses serveurs actuels uniquement."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "Le bot n'est plus verrouillé sur ses serveurs actuels."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "Le bot est maintenant verrouillé sur ses serveurs actuels."
@@ -324,7 +316,7 @@ msgstr "Je n'ai pas pu annoncer aux serveurs suivants : "
msgid "The Admin cog is not loaded."
msgstr "Le cog Admin n'est pas chargé."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr "Le rôle \"{role_name}\" n'est pas un auto-rôle valide."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "Le rôle fourni n'est pas un auto-rôle valide."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Hebrew\n"
"MIME-Version: 1.0\n"
@@ -213,57 +213,49 @@ msgstr ""
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "נוסף."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "הוסר."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr ""
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr ""
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr ""
@@ -279,7 +271,7 @@ msgstr ""
msgid "The Admin cog is not loaded."
msgstr ""
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Hindi\n"
"MIME-Version: 1.0\n"
@@ -213,57 +213,49 @@ msgstr ""
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr ""
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr ""
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr ""
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr ""
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr ""
@@ -279,7 +271,7 @@ msgstr ""
msgid "The Admin cog is not loaded."
msgstr ""
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@@ -213,57 +213,49 @@ msgstr ""
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr ""
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr ""
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr ""
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr ""
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr ""
@@ -279,7 +271,7 @@ msgstr ""
msgid "The Admin cog is not loaded."
msgstr ""
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Indonesian\n"
"MIME-Version: 1.0\n"
@@ -245,57 +245,55 @@ msgstr "Kelola Roles diri sendiri."
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Tambahkan role ke daftar role diri sendiri yang tersedia.\n\n"
" NOTE: Peran peka huruf besar / kecil!\n"
" "
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Saya tidak dapat memberikan {role.name} kepada karena Role itu lebih tinggi atau sama dengan Role tertinggi saya dalam tingkatan Discord."
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "Ditambahkan."
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "Role itu sudah menjadi role diri sendiri."
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Tambahkan role ke daftar role diri sendiri yang tersedia.\n\n"
" NOTE: Role peka huruf besar / kecil!\n"
" "
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Saya tidak dapat menghapus {role.name} dari role diri sendiri karena role itu lebih tinggi dari atau sama dengan role tertinggi Anda dalam tingkatan Discord."
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "Dihapus."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Kunci bot ke servernya saat ini saja."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "Bot tidak lagi terkunci server."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "Bot sekarang terkunci server."
@@ -311,7 +309,7 @@ msgstr "Saya tidak dapat mengumumkan ke server berikut: "
msgid "The Admin cog is not loaded."
msgstr "Cog Admin belum/tidak dimuat."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr ""
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "Role yang diberikan bukan role diri sendiri yang valid."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Italian\n"
"MIME-Version: 1.0\n"
@@ -243,57 +243,53 @@ msgstr "Gestisci i ruoli assegnabili dall'utente."
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
"Aggiungi un ruolo alla lista dei ruoli assegnabili dall'utente.\n\n"
"NOTA: Il ruolo è caso sensitivo! "
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Non posso permetterti di aggiungere {role.name} come ruolo assegnabile dall'utente poiché tale ruolo è superiore o uguale al tuo ruolo più alto nella gerarchia di Discord."
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "Aggiunto."
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "Quel ruolo è già un ruolo assegnabile dall'utente."
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
"Rimuovi un ruolo dalla lista dei ruoli assegnabili dall'utente.\n\n"
"NOTA: Il ruolo è caso sensitivo! "
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Non posso permetterti di rimuovere {role.name} dall'essere un selfrole perché quel ruolo è superiore o uguale al tuo ruolo più alto nella gerarchia di Discord."
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "Rimosso."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Blocca un bot ai suoi server attuali."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "Il bot non è più bloccato ai server."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "Il bot è adesso bloccato ai server."
@@ -309,7 +305,7 @@ msgstr "Non ho potuto annunciare ai seguenti server: "
msgid "The Admin cog is not loaded."
msgstr "Il cog Admin non è caricato."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr ""
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "Il ruolo fornito non è un ruolo assegnabile dall'utente valido."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Japanese\n"
"MIME-Version: 1.0\n"
@@ -213,57 +213,52 @@ msgstr ""
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "追加されました"
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "その役割はすでに自己役割v"
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" 使用可能な自己役割のリストから役割を削除します。\n\n"
" 注:役割では大文字と小文字が区別されます!\n"
" "
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "削除されました"
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Botを現在のサーバーにのみロックします。"
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "Botはもうサーバーロックされていません。"
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "Botはサーバーロックされました。"
@@ -279,7 +274,7 @@ msgstr "以下のサーバーに通知できませんでした: "
msgid "The Admin cog is not loaded."
msgstr "管理者コグがロードされていません。"
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr ""
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "与えられたロールは有効な自己ロールではありません。"

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Korean\n"
"MIME-Version: 1.0\n"
@@ -17,60 +17,60 @@ msgstr ""
#: redbot/cogs/admin/admin.py:18
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
msgstr "제가 사용할 수 없는 기능이 포함되어 당신의 요청을 수행할 수 없었어요."
msgstr ""
#: redbot/cogs/admin/admin.py:23
msgid "I can not give {role.name} to {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
msgstr "{role.name} 역할을 {member.display_name}님에게 지급할 수 없었어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
msgstr ""
#: redbot/cogs/admin/admin.py:29
msgid "I can not remove {role.name} from {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
msgstr "{role.name} 역할을 {member.display_name}님에게서 뺏을 수 없었어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
msgstr ""
#: redbot/cogs/admin/admin.py:35
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
msgstr "{role.name} 역할을 수정할 수 없었어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
msgstr ""
#: redbot/cogs/admin/admin.py:41
msgid "I can not let you give {role.name} to {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "당신은 {role.name} 역할을 {member.display_name}님에게 부여할 수 없어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
msgstr ""
#: redbot/cogs/admin/admin.py:47
msgid "I can not let you remove {role.name} from {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "당신은 {role.name} 역할을 {member.display_name}님에게서 뺏을 수 없어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
msgstr ""
#: redbot/cogs/admin/admin.py:53
msgid "I can not let you edit {role.name} because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "당신은 {role.name} 역할을 수정할 수 없어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
msgstr ""
#: redbot/cogs/admin/admin.py:59
msgid "I need the \"Manage Roles\" permission to do that."
msgstr "이 작업을 수행하려면 \"역할 관리\" 권한이 필요해요."
msgstr ""
#: redbot/cogs/admin/admin.py:61
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
msgstr "이미 공지하고 있어요. 다른 공지를 보내고 싶다면 `{prefix}announce cancel`을 사용해주세요."
msgstr ""
#: redbot/cogs/admin/admin.py:71
#, docstring
msgid "A collection of server administration utilities."
msgstr "서버 관리를 위한 기능 모음"
msgstr ""
#: redbot/cogs/admin/admin.py:164
msgid "{member.display_name} already has the role {role.name}."
msgstr "{member.display_name}님은 이미 {role.name} 역할을 가지고 있어요."
msgstr ""
#: redbot/cogs/admin/admin.py:184
msgid "I successfully added {role.name} to {member.display_name}"
msgstr "{member.display_name}님에게 {role.name} 역할을 부여했어요."
msgstr ""
#: redbot/cogs/admin/admin.py:194
msgid "{member.display_name} does not have the role {role.name}."
msgstr "{member.display_name}님은 {role.name} 역할을 가지고 있지 않아요."
msgstr ""
#: redbot/cogs/admin/admin.py:214
msgid "I successfully removed {role.name} from {member.display_name}"
msgstr "{member.display_name}님에게서 {role.name} 역할을 삭제했어요."
msgstr ""
#: redbot/cogs/admin/admin.py:225
#, docstring
@@ -79,11 +79,7 @@ msgid "\n"
" Use double quotes if the role contains spaces.\n"
" If user is left blank it defaults to the author of the command.\n"
" "
msgstr "\n"
" 유저에게 역할을 추가해요.\n\n"
" 역할 이름에 띄어쓰기가 있으면 큰따옴표를 사용해주세요.\n"
" 유저를 지정하지 않으면 명령어 실행자에게 역할을 지급해요.\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:241
#, docstring
@@ -92,11 +88,7 @@ msgid "\n"
" Use double quotes if the role contains spaces.\n"
" If user is left blank it defaults to the author of the command.\n"
" "
msgstr "\n"
" 유저에게서 역할을 삭제해요.\n\n"
" 역할 이름에 띄어쓰기가 있으면 큰따옴표를 사용해주세요.\n"
" 유저를 지정하지 않으면 명령어 실행자에게서 역할을 뺏어요.\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:255
#, docstring
@@ -221,57 +213,49 @@ msgstr ""
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "추가됐어요."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "제거됐어요."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr ""
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr ""
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr ""
@@ -287,7 +271,7 @@ msgstr "다음과 같은 서버에 알릴 수 없어요. : "
msgid "The Admin cog is not loaded."
msgstr "관리자 cog가 로드되지 않았어요."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Norwegian Bokmal\n"
"MIME-Version: 1.0\n"
@@ -45,7 +45,7 @@ msgstr "Jeg kan ikke la deg redigere {role.name} fordi den rollen er høyere enn
#: redbot/cogs/admin/admin.py:59
msgid "I need the \"Manage Roles\" permission to do that."
msgstr "Jeg trenger tillatelsen \"Administrer roller\" for å gjøre dette."
msgstr ""
#: redbot/cogs/admin/admin.py:61
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
@@ -255,63 +255,55 @@ msgstr "Behandle selvroller."
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr "\n"
" Legg til en rolle, eller et utvalg av roller, til listen over tilgjengelige selvroller.\n\n"
" MERK: Rollen skilles mellom store og små bokstaver!\n"
"Legg til en rolle i listen over tilgjengelige selvroller.\n\n"
"MERKNAD: Rollen er store og små bokstaver!\n"
" "
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Jeg kan ikke la deg gi {role.name} til fordi den rollen er høyere enn eller lik din høyeste rolle i Discord-hierarkiet."
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr "Rollen \"{role.name}\" er allerede en selv rolle."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "Lagt til."
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr "La til {count} selvroller."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "Den rollen er allerede en selvrolle."
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr "Lagt til 1 selvrolle."
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr "\n"
" Fjern en rolle, eller et utvalg av roller, fra listen over tilgjengelige selvroller.\n\n"
" MERK: Rollen skille mellom store og små bokstaver!\n"
"Fjern en rolle fra listen over tilgjengelige selvroller.\n\n"
"MERKNAD: Rollen er store og små bokstaver!\n"
" "
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Jeg kan ikke la deg fjerne {role.name} fra fordi den rollen er høyere enn eller lik din høyeste rolle i Discord-hierarkiet."
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr "Fjernet {count} selvroller."
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "Fjernet."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr "Fjernet 1 selvrolle."
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Lås bare en bot til sine nåværende servere."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "Bot er ikke lenger serverlåst."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "Bot er nå serverlåst."
@@ -327,7 +319,7 @@ msgstr "Jeg kunne ikke kunngjøre følgende servere: "
msgid "The Admin cog is not loaded."
msgstr "Admin cog er ikke lastet."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr "Rollen \"{role_name}\" er ikke en gyldig selvrolle."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "Den oppgitte rollen er ikke en gyldig selvrolle."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Dutch\n"
"MIME-Version: 1.0\n"
@@ -248,57 +248,55 @@ msgstr "Beheer zelfrollen."
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Voeg een rol toe aan de lijst van beschikbare zelfrollen.\n\n"
" Let op: hoofdlettergevoelig!\n"
" "
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Ik kan je {role.name} niet als zelfrol toe laten voegen omdat die rol hoger dan of gelijk is aan je hoogste rol in de Discord hiërarchie."
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "Toegevoegd."
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "Die rol is al een zelfrol."
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Verwijder een rol van de lijst van beschikbare zelfrollen.\n\n"
" OPMERKING: De rol is hoofdlettergevoelig!\n"
" "
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Ik kan je {role.name} niet uit zelfrol laten verwijderen omdat die rol hoger dan of gelijk is aan je hoogste rol in de Discord-hiërarchie."
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "Verwijderd."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Vergrendel de bot voor alleen deze server."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "De bot is niet langer vergrendeld."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "De bot is vergrendeld."
@@ -314,7 +312,7 @@ msgstr "Ik kon de volgende servers niet aankondigen: "
msgid "The Admin cog is not loaded."
msgstr "De admin cog is niet geladen."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr ""
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "De ingevulde rol is geen beschikbare selfrole."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@@ -248,57 +248,55 @@ msgstr "Zarządzaj rolami do samodzielnego przypisania."
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Dodaje rolę do listy dostępnych roli do samodzielnego przypisania.\n\n"
" UWAGA: Wielkość liter ma znaczenie!\n"
" "
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Nie mogę Ci pozwolić dać {role.name} jako roli samodzielnego przypisania, ponieważ ta rola jest wyższa lub równa twojej najwyższej roli w hierarchii Discorda."
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "Dodano."
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "Ta rola jest już rolą do samodzielnego przypisania."
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Usuwa rolę z listy roli do samodzielnego przypisania.\n\n"
" UWAGA: Wielkość liter ma znaczenie!\n"
" "
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Nie mogę Ci pozwolić usunąć {role.name} z bycia rolą samodzielnego przypisania, ponieważ ta rola jest wyższa lub równa twojej najwyższej roli w hierarchii Discorda."
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "Usunięto."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Ogranicz bota wyłącznie do obecnych serwerów."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "Bot nie jest już ograniczony do obecnych serwerów."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "Bot jest teraz ograniczony do obecnych serwerów."
@@ -314,7 +312,7 @@ msgstr "Nie mogłem/am ogłosić się na następujących serwerach: "
msgid "The Admin cog is not loaded."
msgstr "Moduł Admin nie jest załadowany."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr ""
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "Podana rola nie jest poprawną rolą samodzielnego przypisania."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n"
"MIME-Version: 1.0\n"
@@ -17,7 +17,7 @@ msgstr ""
#: redbot/cogs/admin/admin.py:18
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
msgstr "Eu tentei fazer algo que o Discord me negou as permissões necessárias. Seu comando falhou em ser completado com sucesso."
msgstr "Eu tentei fazer algo que o Discord me negou as permissões. Seu comando falhou em ser completado com sucesso."
#: redbot/cogs/admin/admin.py:23
msgid "I can not give {role.name} to {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
@@ -45,7 +45,7 @@ msgstr "Não posso deixar você alterar o cargo {role.name} porque este cargo é
#: redbot/cogs/admin/admin.py:59
msgid "I need the \"Manage Roles\" permission to do that."
msgstr "Eu preciso da permissão \"Gerenciar Funções\" para fazer isso."
msgstr ""
#: redbot/cogs/admin/admin.py:61
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
@@ -176,10 +176,7 @@ msgid "\n"
" Change the channel where the bot will send announcements.\n\n"
" If channel is left blank it defaults to the current channel.\n"
" "
msgstr "\n"
" Altera o canal para onde o bot enviará os anúncios.\n\n"
" Se o canal for deixado em branco, por padrão será usado o canal atual.\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:368
msgid "The announcement channel has been set to {channel.mention}"
@@ -188,7 +185,7 @@ msgstr "O canal de anúncios foi definido como {channel.mention}"
#: redbot/cogs/admin/admin.py:373
#, docstring
msgid "Unsets the channel for announcements."
msgstr "Desativa o canal para anúncios."
msgstr ""
#: redbot/cogs/admin/admin.py:398
#, docstring
@@ -197,11 +194,7 @@ msgid "\n"
" Server admins must have configured the role as user settable.\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr "\n"
" Adiciona ou remove um cargo auto-atribuído.\n\n"
" Os administradores do servidor precisarão configurar o cargo para que o usuário consiga definir a si mesmo.\n"
" NOTA: o nome do cargo diferencia as variações entre letras maiúsculas e minúsculas!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:411
#, docstring
@@ -252,63 +245,55 @@ msgstr "Gerenciar cargos autoatribuíveis."
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr "\n"
" Adiciona um cargo à lista de cargos autoatribuíveis.\n\n"
" NOTA: o nome do cargo é sensivel á letras maiúsculas e minúsculas!\n"
" NOTA: o nome do cargo diferencia entre maiúsculas e minúsculas!\n"
" "
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Não posso deixar você atribuir {role.name} como um cargo autoatribuível porque este cargo é mais alto ou igual ao seu mais alto cargo na hierarquia do Discord."
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr "O cargo \"{role.name}\" já é um cargo auto atribuível."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "Adicionado."
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr "Foram adicionados {count} cargos auto atribuíveis."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "Este cargo já é autoatribuível."
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr "Adicionado um cargo auto atribuível."
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr "\n"
" Remove um cargo, ou um conjunto de cargos, da lista de cargos autoatribuíveis disponíveis.\n\n"
" NOTA: o nome do cargo é sensível á letras maiúsculas e minúsculas!\n"
" Remove um cargo da lista de cargos autoatribuíveis.\n\n"
" NOTA: o nome do cargo diferencia entre maiúsculas e minúsculas!\n"
" "
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Não posso deixar você remover o cargo {role.name} da lista de cargos autoatribuíveis porque este cargo é mais alto ou igual ao seu mais alto cargo na hierarquia do Discord."
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr "Foram removidos {count} cargos auto atribuíveis."
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "Removido."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr "1 cargo autoatribuivel foi removido."
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Restringe o bot somente aos servidores atuais."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "O bot não está mais restrito aos servidores atuais."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "O está restrito aos servidores atuais."
@@ -324,7 +309,7 @@ msgstr "Não pude anunciar nos seguintes servidores: "
msgid "The Admin cog is not loaded."
msgstr "O cog 'Admin' não está carregado."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr "O cargo \"{role_name}\" não é um cargo autoatribuivel valido."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "O cargo fornecido não é um cargo autoatribuível válido."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Portuguese\n"
"MIME-Version: 1.0\n"
@@ -29,11 +29,11 @@ msgstr "Não posso remover {role.name} de {member.display_name} porque esse carg
#: redbot/cogs/admin/admin.py:35
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
msgstr "Não posso editar {role.name} porque esse cargo é igual ou maior à minha hierarquia no Discord."
msgstr ""
#: redbot/cogs/admin/admin.py:41
msgid "I can not let you give {role.name} to {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Eu não posso dar {role.name} a {member.display_name} porque esse cargo é igual ou maior ao meu cargo na hierarquia do Discord."
msgstr ""
#: redbot/cogs/admin/admin.py:47
msgid "I can not let you remove {role.name} from {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
@@ -213,57 +213,49 @@ msgstr ""
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr ""
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr ""
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Bloquear o bot aos servidores atuais."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "O bot já não está bloqueado aos servidores atuais."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "O bot está agora bloqueado aos servidores atuais."
@@ -279,7 +271,7 @@ msgstr ""
msgid "The Admin cog is not loaded."
msgstr "O cog 'Admin' não está carregado."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr ""
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "O cargo indicado não é um cargo definível válido."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Romanian\n"
"MIME-Version: 1.0\n"
@@ -213,57 +213,49 @@ msgstr ""
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr ""
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr ""
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr ""
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr ""
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr ""
@@ -279,7 +271,7 @@ msgstr ""
msgid "The Admin cog is not loaded."
msgstr ""
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
@@ -21,15 +21,15 @@ msgstr "Я попыталась сделать что-то, в чем Discord о
#: redbot/cogs/admin/admin.py:23
msgid "I can not give {role.name} to {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
msgstr "Я не могу дать {role.name} {member.display_name}, потому что эта роль выше или равна моей самой высокой роли в иерархии Discord."
msgstr "Я не могу добавить роль {role.name} пользователю {member.display_name}, потому что эта роль выше или равна моей самой высокой роли в иерархии Discord."
#: redbot/cogs/admin/admin.py:29
msgid "I can not remove {role.name} from {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
msgstr "Я не могу убрать {role.name} из {member.display_name}, потому что эта роль выше или равна моей самой высокой роли в иерархии Discord."
msgstr "Я не могу удалить роль {role.name} у пользователя {member.display_name}, потому что эта роль выше или равна моей самой высокой роли в иерархии Discord."
#: redbot/cogs/admin/admin.py:35
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
msgstr "Я не могу редактировать {role.name}, потому что эта роль выше, чем моя или равная самой высокой роли в иерархии Discord."
msgstr "Я не могу редактировать роль {role.name}, потому что эта роль выше или равна моей самой высокой роли в иерархии Discord."
#: redbot/cogs/admin/admin.py:41
msgid "I can not let you give {role.name} to {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
@@ -41,11 +41,11 @@ msgstr "Я не могу позволить вам удалить {role.name} у
#: redbot/cogs/admin/admin.py:53
msgid "I can not let you edit {role.name} because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Я не могу позволить вам редактировать {role.name}, потому что эта роль выше или равна вашей самой высокой роли в иерархии Discord."
msgstr "Я не могу позволить вам редактировать роль {role.name}, потому что эта роль выше или равна вашей самой высокой роли в иерархии Discord."
#: redbot/cogs/admin/admin.py:59
msgid "I need the \"Manage Roles\" permission to do that."
msgstr "Мне нужно управлять правами ролей, чтобы сделать это."
msgstr ""
#: redbot/cogs/admin/admin.py:61
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
@@ -82,7 +82,7 @@ msgid "\n"
msgstr "\n"
" Добавить роль пользователю.\n\n"
" Используйте двойные кавычки, если роль содержит пробелы.\n"
" Если пользователь остался пустым, он по умолчанию используется автором команды.\n"
" Если пользователь не указан, по умолчанию используется автор команды.\n"
" "
#: redbot/cogs/admin/admin.py:241
@@ -93,9 +93,9 @@ msgid "\n"
" If user is left blank it defaults to the author of the command.\n"
" "
msgstr "\n"
" Удалить роль от пользователя.\n\n"
" Удалить роль у пользователя.\n\n"
" Используйте двойные кавычки, если роль содержит пробелы.\n"
" Если пользователь остался пустым, он по умолчанию используется автором команды.\n"
" Если пользователь не указан, по умолчанию используется автор команды.\n"
" "
#: redbot/cogs/admin/admin.py:255
@@ -118,10 +118,10 @@ msgstr "\n"
" Изменить цвет роли.\n\n"
" Используйте двойные кавычки, если роль содержит пробелы.\n"
" Цвет должен быть в шестнадцатеричном формате.\n"
" [Онлайн выбор цвета](http://www.w3schools. om/colors/colors_picker.sp)\n\n"
" [Онлайн-палитра цветов](http://www.w3schools.com/colors/colors_picker.asp)\n\n"
" Примеры:\n"
" `[p]edit role color \"The Transistor\" #ff00`\n"
" `[p]edit role color--ur Test #ff9900`\n"
" `[p]editrole colour \"The Transistor\" #ff0000`\n"
" `[p]editrole colour Test #ff9900`\n"
" "
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
@@ -139,8 +139,8 @@ msgid "\n"
msgstr "\n"
" Изменить название роли.\n\n"
" Используйте двойные кавычки, если роль или имя содержат пробелы.\n\n"
" Пример:\n"
" `[p]edit role name \"The Transistor\" Test`\n"
" Примеры:\n"
" `[p]editrole name \"The Transistor\" Test`\n"
" "
#: redbot/cogs/admin/admin.py:329
@@ -177,8 +177,8 @@ msgid "\n"
" If channel is left blank it defaults to the current channel.\n"
" "
msgstr "\n"
" Измените канал, где бот будет отправлять объявления.\n\n"
" Если канал оставлен пустым, он по умолчанию используется в текущем канале.\n"
" Изменение канала, в который бот будет отправлять объявления.\n\n"
" Если оставить поле пустым, то по умолчанию будет использоваться текущий канал.\n"
" "
#: redbot/cogs/admin/admin.py:368
@@ -198,9 +198,9 @@ msgid "\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr "\n"
"Добавить себе роль.\n\n"
" Администраторы сервера должны настроить роль как настраиваемую пользователем.\n"
" ПРИМЕЧАНИЕ: Роль чувствительна к регистру!\n"
" Удалить свою роль у себя.\n\n"
" Администраторы сервера должны настроить роль как устанавливаемую пользователем.\n"
" ПРИМЕЧАНИЕ: Роль чувствительна к размерчикам!\n"
" "
#: redbot/cogs/admin/admin.py:411
@@ -211,8 +211,8 @@ msgid "\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr "\n"
" Добавьте себе роль себя.\n\n"
" Администраторы сервера должны настроить роль в качестве пользовательской установки.\n"
" Добавить собственную роль себе.\n\n"
" Администраторы сервера должны настроить роль как устанавливаемую пользователем.\n"
" ПРИМЕЧАНИЕ: Роль чувствительна к регистру!\n"
" "
@@ -235,13 +235,13 @@ msgid "\n"
" Lists all available selfroles.\n"
" "
msgstr "\n"
" Список всех доступных ролей.\n"
" Списки всех доступных своих ролей.\n"
" "
#: redbot/cogs/admin/admin.py:443
msgid "Available Selfroles:\n"
"{selfroles}"
msgstr "Доступные роли:\n"
msgstr "Доступные собственные роли:\n"
"{selfroles}"
#: redbot/cogs/admin/admin.py:449
@@ -252,63 +252,55 @@ msgstr "Управление своими ролями."
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr "\n"
" Добавьте роль или выбор ролей в список доступных ролей.\n\n"
" Добавить роль в список доступных своих ролей.\n\n"
" ПРИМЕЧАНИЕ: Роль чувствительна к регистру!\n"
" "
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Я не могу вам дать {role.name},, поскольку эта роль выше или равна вашей самой высокой роли в иерархии Discord."
msgstr "Нельзя добавить {role.name} в качестве собственной роли, потому что эта роль выше или равна вашей самой высшей роли в иерархии Discord."
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr "Роль \"{role.name}\" уже является вашей."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "Добавлено."
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr "Добавлено {count} ролей."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "У вас уже имеется эта роль."
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr "Роль добавлена."
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr "\n"
" Удалить роль или выбор ролей из списка доступных ролей.\n\n"
" Удалить роль из списка доступных собственных ролей.\n\n"
" ПРИМЕЧАНИЕ: Роль чувствительна к регистру!\n"
" "
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Я не могу позволить вам удалить {role.name}, эта роль выше или равна вашей самой высокой роли в иерархии Discord."
msgstr "Вы не можете забрать у себя роль {role.name}, потому что эта роль выше или равна вашей самой высокой роли в иерархии Discord."
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr "Удалено {count} ролей."
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "Удалено."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr "Убрана 1 роль."
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Зафиксировать бота только на его текущих серверах."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "Бот больше не зафиксирован на сервере."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "Бот теперь зафиксирован на сервере."
@@ -318,13 +310,13 @@ msgstr "Я не могу сделать объявление на следующ
#: redbot/cogs/admin/announcer.py:70
msgid "I could not announce to the following servers: "
msgstr "Я не могу сделать объявление на следующем сервере: "
msgstr "Я не могу объявить на следующих серверах: "
#: redbot/cogs/admin/converters.py:12
msgid "The Admin cog is not loaded."
msgstr "Модуль Admin не загружен."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr "Роль \"{role_name}\" не является допустимой ролью."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "Предоставленная роль не является допустимой ролью."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Slovak\n"
"MIME-Version: 1.0\n"
@@ -253,57 +253,55 @@ msgstr "Spravovať self-role."
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Pridať rolu do zoznamu dostupných self-rolí.\n\n"
" POZNÁMKA: Rola je citlivá na malé a veľké písmena!\n"
" "
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Nemôžem ti dovoliť pridať {role.name} ako self-rolu, pretože táto rola je vyššia alebo rovná tvojej najvyššej roli v Discord hierarchii."
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "Pridané."
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "Táto rola je už self-rola."
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Odstráni rolu zo zoznamu dostupných self-rolí.\n\n"
" POZNÁMKA: Rola je citlivá na malé a veľké písmena!\n"
" "
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Nemôžem ti dovoliť odobrať {role.name} užívateľovi, pretože táto rola je vyššia alebo rovná tvojej najvyššej roli v Discord hierarchii."
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "Odstránené."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Uzamkne bota iba na jeho aktuálne servery."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "Bot už nie je uzamknutý serverom."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "Bot je teraz uzamknutý serverom."
@@ -319,7 +317,7 @@ msgstr "Nemôžem oznámiť nasledujúcim serverom: "
msgid "The Admin cog is not loaded."
msgstr "Admin cog nie je načítaný."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr ""
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "Daná rola nie je platná self-role."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Slovenian\n"
"MIME-Version: 1.0\n"
@@ -45,7 +45,7 @@ msgstr "Ne morem ti dovoliti urejati role {role.name} ker je ta rola višja ali
#: redbot/cogs/admin/admin.py:59
msgid "I need the \"Manage Roles\" permission to do that."
msgstr "Potrebujem dovoljenje \"Manage Roles\" za izvršitev tega ukaza."
msgstr ""
#: redbot/cogs/admin/admin.py:61
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
@@ -252,57 +252,55 @@ msgstr "Upravlja lastne role."
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Doda rolo na seznam razpoložljivih lastnih rol.\n\n"
" POMNI: Rola razlikuje med velikimi in malimi črkami!\n"
" "
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Ne morem ti dovoliti dodati role {role.name} kot lastno rolo ker je ta rola višja ali enaka tvoji roli v Discordovi hierarhiji."
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "Dodano."
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "Ta rola je že lastna rola."
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
msgstr "\n"
" Odstrani rolo iz seznama razpoložljivih lastnih rol.\n\n"
" POMNI: Rola razlikuje med velikimi in malimi črkami!\n"
" "
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "Ne morem ti dovoliti odstraniti role {role.name} kot lastno rolo ker je ta rola višja ali enaka tvoji roli v Discordovi hierarhiji."
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "Odstranjeno."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Zaklene bota na trenutne strežnike."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "Bot je zopet odklenjen za vse strežnike."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "Bot je trenutno zaklenjen za vse strežnike."
@@ -318,7 +316,7 @@ msgstr "Napovednika ni bilo možno izvesti v teh strežnikih: "
msgid "The Admin cog is not loaded."
msgstr "Modul Admin ni naložen."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr ""
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "Naveden rola ni veljavna lastna rola."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Serbian (Latin)\n"
"MIME-Version: 1.0\n"
@@ -213,57 +213,49 @@ msgstr ""
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr ""
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr ""
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr ""
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr ""
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr ""
@@ -279,7 +271,7 @@ msgstr ""
msgid "The Admin cog is not loaded."
msgstr ""
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Serbian (Cyrillic)\n"
"MIME-Version: 1.0\n"
@@ -213,57 +213,49 @@ msgstr ""
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr ""
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr ""
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr ""
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr ""
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr ""
@@ -279,7 +271,7 @@ msgstr ""
msgid "The Admin cog is not loaded."
msgstr ""
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
@@ -220,57 +220,49 @@ msgstr "Hantera självroller."
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "Tillagd."
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "Den rollen är redan en självroll."
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr ""
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Lås en bot till sina nuvarande servrar."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "Botten är inte längre serverlåst."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "Botten är nu serverlåst."
@@ -286,7 +278,7 @@ msgstr ""
msgid "The Admin cog is not loaded."
msgstr "Admin cog är inte laddad."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr ""
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "Den angivna rollen är inte en giltig självroll."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Turkish\n"
"MIME-Version: 1.0\n"
@@ -250,63 +250,55 @@ msgstr "Kişisel rolleri düzenle."
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr "\n"
" Kullanılabilir selfroleler listesine bir veya daha fazla rol ekle.\n\n"
" Kullanılabilir selfroleler listesine bir rol ekle.\n\n"
" NOT: Rol büyük küçük harf duyarlıdır!\n"
" "
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "{role.name} kullanıcısına belirttiğin rolü vermene müsaade edemem çünkü bu rol mevcut rolünden daha yüksek."
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
msgstr "\"{role.name}\" zaten bir selfrole."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "Eklendi."
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr "{count} selfrole eklendi."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr "Bu rol zaten bir kişisel rol."
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr "1 selfrole eklendi."
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr "\n"
" Kullanılabilir selfroleler listesinden bir veya daha fazla rol çıkar.\n\n"
" Kullanılabilir selfroleler listesinden rol siler.\n\n"
" NOT: Rol büyük küçük harf duyarlıdır!\n"
" "
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "{role.name} kullanıcısından belirttiğin rolü silmene müsaade edemem çünkü bu rol mevcut rolünden daha yüksek."
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr "{count} selfrole kaldırıldı."
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "Kaldırıldı."
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr "1 selfrole kaldırıldı."
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Botu şu an bulunduğu sunucularda kilitler."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr "Botun sunucu kilidi aktif değil."
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr "Botun sunucu kilidi aktif."
@@ -322,7 +314,7 @@ msgstr "Bu sunuculara duyuru yapamıyorum: "
msgid "The Admin cog is not loaded."
msgstr "The Admin eklentisi yüklenmedi."
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
msgstr "\"{role_name}\" geçerli bir selfrole değil."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr "Girilen kişisel rol geçerli bir kişisel rol değil."

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Ukrainian\n"
"MIME-Version: 1.0\n"
@@ -213,57 +213,49 @@ msgstr ""
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr ""
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr ""
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr ""
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr ""
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr ""
@@ -279,7 +271,7 @@ msgstr ""
msgid "The Admin cog is not loaded."
msgstr ""
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Vietnamese\n"
"MIME-Version: 1.0\n"
@@ -216,57 +216,49 @@ msgstr ""
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr ""
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr ""
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr "Khóa lệnh bot cho server hiện tại."
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr ""
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr ""
@@ -282,7 +274,7 @@ msgstr ""
msgid "The Admin cog is not loaded."
msgstr ""
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n"
@@ -17,23 +17,23 @@ msgstr ""
#: redbot/cogs/admin/admin.py:18
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
msgstr "我试做一Discord没有允许我做的事情。你的命令无法完成"
msgstr "我试做一件事情Discord不让我做。你的命令没有完成"
#: redbot/cogs/admin/admin.py:23
msgid "I can not give {role.name} to {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
msgstr "我不能{role.name}{member.display_name} ,因为这个角色高于或等于我在Discord等级中的最高角色"
msgstr "我不能{role.name}{member.display_name} 为这个role比我的最高的role高或者一样高"
#: redbot/cogs/admin/admin.py:29
msgid "I can not remove {role.name} from {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
msgstr "我不能{role.name}{member.display_name} 中移除因为这个角色高于或等于我在Discord等级中的最高角色"
msgstr "我不能{role.name}{member.display_name} 应为这个role比我的最高的role高或者一样高"
#: redbot/cogs/admin/admin.py:35
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
msgstr "我不能编辑 {role.name} 因为该角色高于或等于我在Discord等级中的最高角色"
msgstr "我不能能改变{role.name}应为这个role比我的最高的role高或者一样高"
#: redbot/cogs/admin/admin.py:41
msgid "I can not let you give {role.name} to {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr "我不能让你{role.name}{member.display_name} ,因为这个角色高于或等于你在 Discord 等级中的最高角色"
msgstr "我不能让你{role.name}{member.display_name} 为这个role比你的最高的role高或者一样高"
#: redbot/cogs/admin/admin.py:47
msgid "I can not let you remove {role.name} from {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
@@ -102,7 +102,7 @@ msgstr "\n"
#: redbot/cogs/admin/admin.py:255
#, docstring
msgid "Edit role settings."
msgstr "编辑角色设"
msgstr "改变角色设"
#: redbot/cogs/admin/admin.py:262
#, docstring
@@ -138,7 +138,7 @@ msgstr ""
#: redbot/cogs/admin/admin.py:336
msgid "The announcement has begun."
msgstr "公告开始了"
msgstr "我开始报告消息了"
#: redbot/cogs/admin/admin.py:343
#, docstring
@@ -147,11 +147,11 @@ msgstr ""
#: redbot/cogs/admin/admin.py:345
msgid "There is no currently running announcement."
msgstr "目前没有正在运行的公告"
msgstr ""
#: redbot/cogs/admin/admin.py:348
msgid "The current announcement has been cancelled."
msgstr "目前公告已被取消"
msgstr ""
#: redbot/cogs/admin/admin.py:354
#, docstring
@@ -164,19 +164,16 @@ msgid "\n"
" Change the channel where the bot will send announcements.\n\n"
" If channel is left blank it defaults to the current channel.\n"
" "
msgstr "\n"
" 更改机器人发送公告的频道\n\n"
" 如果频道留空,则默认设置为当前频道\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:368
msgid "The announcement channel has been set to {channel.mention}"
msgstr "公告频道已设置为 {channel.mention}"
msgstr ""
#: redbot/cogs/admin/admin.py:373
#, docstring
msgid "Unsets the channel for announcements."
msgstr "取消公告频道"
msgstr ""
#: redbot/cogs/admin/admin.py:398
#, docstring
@@ -185,11 +182,7 @@ msgid "\n"
" Server admins must have configured the role as user settable.\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr "\n"
" 添加或删除自己的角色\n\n"
" 服务器管理员必须配置角色为用户设置\n"
" 注意:角色是区分大小写的\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:411
#, docstring
@@ -198,11 +191,7 @@ msgid "\n"
" Server admins must have configured the role as user settable.\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr "\n"
" 为你自己添加一个自身角色\n\n"
" 服务器管理员必须配置角色为用户设置\n"
" 注意:角色是区分大小写的!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:422
#, docstring
@@ -233,57 +222,49 @@ msgstr ""
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr ""
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr ""
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr ""
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr ""
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr ""
@@ -299,7 +280,7 @@ msgstr ""
msgid "The Admin cog is not loaded."
msgstr ""
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Chinese Traditional, Hong Kong\n"
"MIME-Version: 1.0\n"
@@ -213,57 +213,49 @@ msgstr ""
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr ""
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr ""
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr ""
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr ""
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr ""
@@ -279,7 +271,7 @@ msgstr ""
msgid "The Admin cog is not loaded."
msgstr ""
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
"Last-Translator: \n"
"Language-Team: Chinese Traditional\n"
"MIME-Version: 1.0\n"
@@ -45,7 +45,7 @@ msgstr "我無法讓你編輯 {role.name} 身分組,因為該身分組位階
#: redbot/cogs/admin/admin.py:59
msgid "I need the \"Manage Roles\" permission to do that."
msgstr "我需要管理權限來完成。"
msgstr ""
#: redbot/cogs/admin/admin.py:61
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
@@ -234,57 +234,49 @@ msgstr ""
#: redbot/cogs/admin/admin.py:454
#, docstring
msgid "\n"
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
" Add a role to the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:463
#: redbot/cogs/admin/admin.py:461
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:473
msgid "The role \"{role.name}\" is already a selfrole."
#: redbot/cogs/admin/admin.py:469
msgid "Added."
msgstr "已增加"
#: redbot/cogs/admin/admin.py:472
msgid "That role is already a selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:479
msgid "Added {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:481
msgid "Added 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:487
#: redbot/cogs/admin/admin.py:476
#, docstring
msgid "\n"
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
" Remove a role from the list of available selfroles.\n\n"
" NOTE: The role is case sensitive!\n"
" "
msgstr ""
#: redbot/cogs/admin/admin.py:496
#: redbot/cogs/admin/admin.py:483
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
msgstr ""
#: redbot/cogs/admin/admin.py:506
msgid "Removed {count} selfroles."
msgstr ""
#: redbot/cogs/admin/admin.py:491
msgid "Removed."
msgstr "已移除。"
#: redbot/cogs/admin/admin.py:508
msgid "Removed 1 selfrole."
msgstr ""
#: redbot/cogs/admin/admin.py:515
#: redbot/cogs/admin/admin.py:496
#, docstring
msgid "Lock a bot to its current servers only."
msgstr ""
#: redbot/cogs/admin/admin.py:520
#: redbot/cogs/admin/admin.py:501
msgid "The bot is no longer serverlocked."
msgstr ""
#: redbot/cogs/admin/admin.py:522
#: redbot/cogs/admin/admin.py:503
msgid "The bot is now serverlocked."
msgstr ""
@@ -300,7 +292,7 @@ msgstr ""
msgid "The Admin cog is not loaded."
msgstr ""
#: redbot/cogs/admin/converters.py:21
msgid "The role \"{role_name}\" is not a valid selfrole."
#: redbot/cogs/admin/converters.py:20
msgid "The provided role is not a valid selfrole."
msgstr ""

View File

@@ -34,7 +34,7 @@ class _TrackingFormatter(Formatter):
class Alias(commands.Cog):
"""Create aliases for commands.
Aliases are alternative names/shortcuts for commands. They
Aliases are alternative names shortcuts for commands. They
can act as both a lambda (storing arguments for repeated use)
or as simply a shortcut to saying "x y z".
@@ -338,75 +338,6 @@ class Alias(commands.Cog):
)
)
@checks.mod_or_permissions(manage_guild=True)
@alias.command(name="edit")
@commands.guild_only()
async def _edit_alias(self, ctx: commands.Context, alias_name: str, *, command):
"""Edit an existing alias in this server."""
# region Alias Add Validity Checking
alias = await self._aliases.get_alias(ctx.guild, alias_name)
if not alias:
await ctx.send(
_("The alias with the name {name} does not exist.").format(name=alias_name)
)
return
given_command_exists = self.bot.get_command(command.split(maxsplit=1)[0]) is not None
if not given_command_exists:
await ctx.send(_("You attempted to edit an alias to a command that doesn't exist."))
return
# endregion
# So we figured it is a valid alias and the command exists
# we can go ahead editing the command
try:
if await self._aliases.edit_alias(ctx, alias_name, command):
await ctx.send(
_("The alias with the trigger `{name}` has been edited sucessfully.").format(
name=alias_name
)
)
else:
# This part should technically never be reached...
await ctx.send(
_("Alias with the name `{name}` was not found.").format(name=alias_name)
)
except ArgParseError as e:
return await ctx.send(" ".join(e.args))
@checks.is_owner()
@global_.command(name="edit")
async def _edit_global_alias(self, ctx: commands.Context, alias_name: str, *, command):
"""Edit an existing global alias."""
# region Alias Add Validity Checking
alias = await self._aliases.get_alias(None, alias_name)
if not alias:
await ctx.send(
_("The alias with the name {name} does not exist.").format(name=alias_name)
)
return
given_command_exists = self.bot.get_command(command.split(maxsplit=1)[0]) is not None
if not given_command_exists:
await ctx.send(_("You attempted to edit an alias to a command that doesn't exist."))
return
# endregion
try:
if await self._aliases.edit_alias(ctx, alias_name, command, global_=True):
await ctx.send(
_("The alias with the trigger `{name}` has been edited sucessfully.").format(
name=alias_name
)
)
else:
# This part should technically never be reached...
await ctx.send(
_("Alias with the name `{name}` was not found.").format(name=alias_name)
)
except ArgParseError as e:
return await ctx.send(" ".join(e.args))
@alias.command(name="help")
async def _help_alias(self, ctx: commands.Context, alias_name: str):
"""Try to execute help for the base command of the alias."""

View File

@@ -187,10 +187,9 @@ class AliasCache:
return None
@staticmethod
def format_command_for_alias(command: str) -> str:
# This was present in add_alias previously
# Made this into a separate method so as to reuse the same code in edit_alias
async def add_alias(
self, ctx: commands.Context, alias_name: str, command: str, global_: bool = False
) -> AliasEntry:
indices = findall(r"{(\d*)}", command)
if indices:
try:
@@ -207,12 +206,6 @@ class AliasCache:
+ ", ".join(str(i + low) for i in gaps)
)
command = command.format(*(f"{{{i}}}" for i in range(-low, high + low + 1)))
return command
async def add_alias(
self, ctx: commands.Context, alias_name: str, command: str, global_: bool = False
) -> AliasEntry:
command = self.format_command_for_alias(command)
if global_:
alias = AliasEntry(alias_name, command, ctx.author.id, None)
@@ -232,32 +225,6 @@ class AliasCache:
return alias
async def edit_alias(
self, ctx: commands.Context, alias_name: str, command: str, global_: bool = False
) -> bool:
command = self.format_command_for_alias(command)
if global_:
settings = self.config
else:
settings = self.config.guild(ctx.guild)
async with settings.entries() as aliases:
for index, alias in enumerate(aliases):
if alias["name"] == alias_name:
alias_edited = AliasEntry.from_json(alias)
alias_edited.command = command
aliases[index] = alias_edited.to_json()
if self._cache_enabled:
if global_:
self._aliases[None][alias_edited.name] = alias_edited
else:
self._aliases[ctx.guild.id][alias_edited.name] = alias_edited
return True
return False
async def delete_alias(
self, ctx: commands.Context, alias_name: str, global_: bool = False
) -> bool:

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-03 01:50+0000\n"
"POT-Creation-Date: 2021-02-11 12:29+0000\n"
"Last-Translator: \n"
"Language-Team: Afrikaans\n"
"MIME-Version: 1.0\n"
@@ -18,7 +18,7 @@ msgstr ""
#: redbot/cogs/alias/alias.py:35
#, docstring
msgid "Create aliases for commands.\n\n"
" Aliases are alternative names/shortcuts for commands. They\n"
" Aliases are alternative names shortcuts for commands. They\n"
" can act as both a lambda (storing arguments for repeated use)\n"
" or as simply a shortcut to saying \"x y z\".\n\n"
" When run, aliases will accept any additional arguments\n"
@@ -91,99 +91,73 @@ msgstr ""
msgid "A new global alias with the trigger `{name}` has been created."
msgstr ""
#: redbot/cogs/alias/alias.py:345
#, docstring
msgid "Edit an existing alias in this server."
msgstr ""
#: redbot/cogs/alias/alias.py:350 redbot/cogs/alias/alias.py:385
msgid "The alias with the name {name} does not exist."
msgstr ""
#: redbot/cogs/alias/alias.py:356 redbot/cogs/alias/alias.py:391
msgid "You attempted to edit an alias to a command that doesn't exist."
msgstr ""
#: redbot/cogs/alias/alias.py:365 redbot/cogs/alias/alias.py:398
msgid "The alias with the trigger `{name}` has been edited sucessfully."
msgstr ""
#: redbot/cogs/alias/alias.py:372 redbot/cogs/alias/alias.py:405
msgid "Alias with the name `{name}` was not found."
msgstr ""
#: redbot/cogs/alias/alias.py:380
#, docstring
msgid "Edit an existing global alias."
msgstr ""
#: redbot/cogs/alias/alias.py:412
#: redbot/cogs/alias/alias.py:343
#, docstring
msgid "Try to execute help for the base command of the alias."
msgstr ""
#: redbot/cogs/alias/alias.py:417
#: redbot/cogs/alias/alias.py:348
msgid "No such alias exists."
msgstr ""
#: redbot/cogs/alias/alias.py:421
#: redbot/cogs/alias/alias.py:352
#, docstring
msgid "Show what command the alias executes."
msgstr ""
#: redbot/cogs/alias/alias.py:426
#: redbot/cogs/alias/alias.py:357
msgid "The `{alias_name}` alias will execute the command `{command}`"
msgstr ""
#: redbot/cogs/alias/alias.py:431
#: redbot/cogs/alias/alias.py:362
msgid "There is no alias with the name `{name}`"
msgstr ""
#: redbot/cogs/alias/alias.py:437
#: redbot/cogs/alias/alias.py:368
#, docstring
msgid "Delete an existing alias on this server."
msgstr ""
#: redbot/cogs/alias/alias.py:439 redbot/cogs/alias/alias.py:471
#: redbot/cogs/alias/alias.py:370 redbot/cogs/alias/alias.py:402
msgid "There are no aliases on this server."
msgstr ""
#: redbot/cogs/alias/alias.py:444 redbot/cogs/alias/alias.py:459
#: redbot/cogs/alias/alias.py:375 redbot/cogs/alias/alias.py:390
msgid "Alias with the name `{name}` was successfully deleted."
msgstr ""
#: redbot/cogs/alias/alias.py:447 redbot/cogs/alias/alias.py:462
#: redbot/cogs/alias/alias.py:378 redbot/cogs/alias/alias.py:393
msgid "Alias with name `{name}` was not found."
msgstr ""
#: redbot/cogs/alias/alias.py:452
#: redbot/cogs/alias/alias.py:383
#, docstring
msgid "Delete an existing global alias."
msgstr ""
#: redbot/cogs/alias/alias.py:454
#: redbot/cogs/alias/alias.py:385
msgid "There are no global aliases on this bot."
msgstr ""
#: redbot/cogs/alias/alias.py:468
#: redbot/cogs/alias/alias.py:399
#, docstring
msgid "List the available aliases on this server."
msgstr ""
#: redbot/cogs/alias/alias.py:477
#: redbot/cogs/alias/alias.py:408
#, docstring
msgid "List the available global aliases on this bot."
msgstr ""
#: redbot/cogs/alias/alias.py:480
#: redbot/cogs/alias/alias.py:411
msgid "There are no global aliases."
msgstr ""
#: redbot/cogs/alias/alias_entry.py:199
#: redbot/cogs/alias/alias_entry.py:198
msgid "Arguments must be specified with a number."
msgstr ""
#: redbot/cogs/alias/alias_entry.py:206
#: redbot/cogs/alias/alias_entry.py:205
msgid "Arguments must be sequential. Missing arguments: "
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-03 01:50+0000\n"
"POT-Creation-Date: 2021-02-11 12:29+0000\n"
"Last-Translator: \n"
"Language-Team: Arabic\n"
"MIME-Version: 1.0\n"
@@ -18,13 +18,13 @@ msgstr ""
#: redbot/cogs/alias/alias.py:35
#, docstring
msgid "Create aliases for commands.\n\n"
" Aliases are alternative names/shortcuts for commands. They\n"
" Aliases are alternative names shortcuts for commands. They\n"
" can act as both a lambda (storing arguments for repeated use)\n"
" or as simply a shortcut to saying \"x y z\".\n\n"
" When run, aliases will accept any additional arguments\n"
" and append them to the stored alias.\n"
" "
msgstr ""
msgstr "إنشاء أسماء مستعارة للأوامر. \\ n \\ n الأسماء المستعارة هي اختصارات أسماء بديلة للأوامر. يمكنهم \\ n العمل كحمل لامدا (تخزين الوسائط للاستخدام المتكرر) \\ n أو ببساطة اختصار للقول \\ \"xyz \". \\ n \\ n عند التشغيل ، ستقبل الأسماء المستعارة أي وسيطات إضافية \\ n وتضيفها إلى الاسم المستعار المخزن. \\ n"
#: redbot/cogs/alias/alias.py:203
msgid "Aliases:\n"
@@ -91,99 +91,73 @@ msgstr "لقد حاولت إنشاء اسم مستعار عالمي جديد ب
msgid "A new global alias with the trigger `{name}` has been created."
msgstr "تم إنشاء اسم مستعار عالمي جديد مع مشغل{name}`."
#: redbot/cogs/alias/alias.py:345
#, docstring
msgid "Edit an existing alias in this server."
msgstr ""
#: redbot/cogs/alias/alias.py:350 redbot/cogs/alias/alias.py:385
msgid "The alias with the name {name} does not exist."
msgstr ""
#: redbot/cogs/alias/alias.py:356 redbot/cogs/alias/alias.py:391
msgid "You attempted to edit an alias to a command that doesn't exist."
msgstr ""
#: redbot/cogs/alias/alias.py:365 redbot/cogs/alias/alias.py:398
msgid "The alias with the trigger `{name}` has been edited sucessfully."
msgstr ""
#: redbot/cogs/alias/alias.py:372 redbot/cogs/alias/alias.py:405
msgid "Alias with the name `{name}` was not found."
msgstr ""
#: redbot/cogs/alias/alias.py:380
#, docstring
msgid "Edit an existing global alias."
msgstr ""
#: redbot/cogs/alias/alias.py:412
#: redbot/cogs/alias/alias.py:343
#, docstring
msgid "Try to execute help for the base command of the alias."
msgstr "حاول تنفيذ المساعدة للقيادة الأساسية للإسم المستعار."
#: redbot/cogs/alias/alias.py:417
#: redbot/cogs/alias/alias.py:348
msgid "No such alias exists."
msgstr "لا يوجد مثل هذا المستخدم"
#: redbot/cogs/alias/alias.py:421
#: redbot/cogs/alias/alias.py:352
#, docstring
msgid "Show what command the alias executes."
msgstr "إظهار ما هو الأمر الذي ينفذه الاسم المستعار."
#: redbot/cogs/alias/alias.py:426
#: redbot/cogs/alias/alias.py:357
msgid "The `{alias_name}` alias will execute the command `{command}`"
msgstr "`{alias_name}` الاسم المستعار سوف ينفذ الأمر `{command}`"
#: redbot/cogs/alias/alias.py:431
#: redbot/cogs/alias/alias.py:362
msgid "There is no alias with the name `{name}`"
msgstr "لا يوجد اسم مستعار باسم `{name}`"
#: redbot/cogs/alias/alias.py:437
#: redbot/cogs/alias/alias.py:368
#, docstring
msgid "Delete an existing alias on this server."
msgstr "حذف اسم مستعار موجود على هذا السيرفر."
#: redbot/cogs/alias/alias.py:439 redbot/cogs/alias/alias.py:471
#: redbot/cogs/alias/alias.py:370 redbot/cogs/alias/alias.py:402
msgid "There are no aliases on this server."
msgstr "لا توجد أسماء مستعارة على هذا السيرفر."
#: redbot/cogs/alias/alias.py:444 redbot/cogs/alias/alias.py:459
#: redbot/cogs/alias/alias.py:375 redbot/cogs/alias/alias.py:390
msgid "Alias with the name `{name}` was successfully deleted."
msgstr "تم حذف الاسم المستعار باسم `{name}` بنجاح."
#: redbot/cogs/alias/alias.py:447 redbot/cogs/alias/alias.py:462
#: redbot/cogs/alias/alias.py:378 redbot/cogs/alias/alias.py:393
msgid "Alias with name `{name}` was not found."
msgstr "لم يتم العثور على الاسم المستعار `{name}`."
#: redbot/cogs/alias/alias.py:452
#: redbot/cogs/alias/alias.py:383
#, docstring
msgid "Delete an existing global alias."
msgstr "يحذف اسم مستعار عالمي قائم."
#: redbot/cogs/alias/alias.py:454
#: redbot/cogs/alias/alias.py:385
msgid "There are no global aliases on this bot."
msgstr ""
#: redbot/cogs/alias/alias.py:468
#: redbot/cogs/alias/alias.py:399
#, docstring
msgid "List the available aliases on this server."
msgstr "قائمة الأسماء المستعارة المتوفرة على هذا السيرفر."
#: redbot/cogs/alias/alias.py:477
#: redbot/cogs/alias/alias.py:408
#, docstring
msgid "List the available global aliases on this bot."
msgstr "قائمة الأسماء المستعارة العامة المتاحة على هذا البوت."
#: redbot/cogs/alias/alias.py:480
#: redbot/cogs/alias/alias.py:411
msgid "There are no global aliases."
msgstr ""
#: redbot/cogs/alias/alias_entry.py:199
#: redbot/cogs/alias/alias_entry.py:198
msgid "Arguments must be specified with a number."
msgstr "يجب أن يتم تحديد الحجج برقم."
#: redbot/cogs/alias/alias_entry.py:206
#: redbot/cogs/alias/alias_entry.py:205
msgid "Arguments must be sequential. Missing arguments: "
msgstr "يجب أن تكون الحجج متتابعة. الحجج المفقودة: "

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-03 01:50+0000\n"
"POT-Creation-Date: 2021-02-11 12:29+0000\n"
"Last-Translator: \n"
"Language-Team: Bulgarian\n"
"MIME-Version: 1.0\n"
@@ -18,7 +18,7 @@ msgstr ""
#: redbot/cogs/alias/alias.py:35
#, docstring
msgid "Create aliases for commands.\n\n"
" Aliases are alternative names/shortcuts for commands. They\n"
" Aliases are alternative names shortcuts for commands. They\n"
" can act as both a lambda (storing arguments for repeated use)\n"
" or as simply a shortcut to saying \"x y z\".\n\n"
" When run, aliases will accept any additional arguments\n"
@@ -91,99 +91,73 @@ msgstr ""
msgid "A new global alias with the trigger `{name}` has been created."
msgstr ""
#: redbot/cogs/alias/alias.py:345
#, docstring
msgid "Edit an existing alias in this server."
msgstr ""
#: redbot/cogs/alias/alias.py:350 redbot/cogs/alias/alias.py:385
msgid "The alias with the name {name} does not exist."
msgstr ""
#: redbot/cogs/alias/alias.py:356 redbot/cogs/alias/alias.py:391
msgid "You attempted to edit an alias to a command that doesn't exist."
msgstr ""
#: redbot/cogs/alias/alias.py:365 redbot/cogs/alias/alias.py:398
msgid "The alias with the trigger `{name}` has been edited sucessfully."
msgstr ""
#: redbot/cogs/alias/alias.py:372 redbot/cogs/alias/alias.py:405
msgid "Alias with the name `{name}` was not found."
msgstr ""
#: redbot/cogs/alias/alias.py:380
#, docstring
msgid "Edit an existing global alias."
msgstr ""
#: redbot/cogs/alias/alias.py:412
#: redbot/cogs/alias/alias.py:343
#, docstring
msgid "Try to execute help for the base command of the alias."
msgstr ""
#: redbot/cogs/alias/alias.py:417
#: redbot/cogs/alias/alias.py:348
msgid "No such alias exists."
msgstr "Този псевдоним не съществува."
#: redbot/cogs/alias/alias.py:421
#: redbot/cogs/alias/alias.py:352
#, docstring
msgid "Show what command the alias executes."
msgstr ""
#: redbot/cogs/alias/alias.py:426
#: redbot/cogs/alias/alias.py:357
msgid "The `{alias_name}` alias will execute the command `{command}`"
msgstr ""
#: redbot/cogs/alias/alias.py:431
#: redbot/cogs/alias/alias.py:362
msgid "There is no alias with the name `{name}`"
msgstr ""
#: redbot/cogs/alias/alias.py:437
#: redbot/cogs/alias/alias.py:368
#, docstring
msgid "Delete an existing alias on this server."
msgstr ""
#: redbot/cogs/alias/alias.py:439 redbot/cogs/alias/alias.py:471
#: redbot/cogs/alias/alias.py:370 redbot/cogs/alias/alias.py:402
msgid "There are no aliases on this server."
msgstr "Няма използвани псевдоними на този сървър."
#: redbot/cogs/alias/alias.py:444 redbot/cogs/alias/alias.py:459
#: redbot/cogs/alias/alias.py:375 redbot/cogs/alias/alias.py:390
msgid "Alias with the name `{name}` was successfully deleted."
msgstr ""
#: redbot/cogs/alias/alias.py:447 redbot/cogs/alias/alias.py:462
#: redbot/cogs/alias/alias.py:378 redbot/cogs/alias/alias.py:393
msgid "Alias with name `{name}` was not found."
msgstr ""
#: redbot/cogs/alias/alias.py:452
#: redbot/cogs/alias/alias.py:383
#, docstring
msgid "Delete an existing global alias."
msgstr ""
#: redbot/cogs/alias/alias.py:454
#: redbot/cogs/alias/alias.py:385
msgid "There are no global aliases on this bot."
msgstr ""
#: redbot/cogs/alias/alias.py:468
#: redbot/cogs/alias/alias.py:399
#, docstring
msgid "List the available aliases on this server."
msgstr ""
#: redbot/cogs/alias/alias.py:477
#: redbot/cogs/alias/alias.py:408
#, docstring
msgid "List the available global aliases on this bot."
msgstr ""
#: redbot/cogs/alias/alias.py:480
#: redbot/cogs/alias/alias.py:411
msgid "There are no global aliases."
msgstr ""
#: redbot/cogs/alias/alias_entry.py:199
#: redbot/cogs/alias/alias_entry.py:198
msgid "Arguments must be specified with a number."
msgstr ""
#: redbot/cogs/alias/alias_entry.py:206
#: redbot/cogs/alias/alias_entry.py:205
msgid "Arguments must be sequential. Missing arguments: "
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-03 01:50+0000\n"
"POT-Creation-Date: 2021-02-11 12:29+0000\n"
"Last-Translator: \n"
"Language-Team: Bosnian\n"
"MIME-Version: 1.0\n"
@@ -18,7 +18,7 @@ msgstr ""
#: redbot/cogs/alias/alias.py:35
#, docstring
msgid "Create aliases for commands.\n\n"
" Aliases are alternative names/shortcuts for commands. They\n"
" Aliases are alternative names shortcuts for commands. They\n"
" can act as both a lambda (storing arguments for repeated use)\n"
" or as simply a shortcut to saying \"x y z\".\n\n"
" When run, aliases will accept any additional arguments\n"
@@ -91,99 +91,73 @@ msgstr ""
msgid "A new global alias with the trigger `{name}` has been created."
msgstr ""
#: redbot/cogs/alias/alias.py:345
#, docstring
msgid "Edit an existing alias in this server."
msgstr ""
#: redbot/cogs/alias/alias.py:350 redbot/cogs/alias/alias.py:385
msgid "The alias with the name {name} does not exist."
msgstr ""
#: redbot/cogs/alias/alias.py:356 redbot/cogs/alias/alias.py:391
msgid "You attempted to edit an alias to a command that doesn't exist."
msgstr ""
#: redbot/cogs/alias/alias.py:365 redbot/cogs/alias/alias.py:398
msgid "The alias with the trigger `{name}` has been edited sucessfully."
msgstr ""
#: redbot/cogs/alias/alias.py:372 redbot/cogs/alias/alias.py:405
msgid "Alias with the name `{name}` was not found."
msgstr ""
#: redbot/cogs/alias/alias.py:380
#, docstring
msgid "Edit an existing global alias."
msgstr ""
#: redbot/cogs/alias/alias.py:412
#: redbot/cogs/alias/alias.py:343
#, docstring
msgid "Try to execute help for the base command of the alias."
msgstr ""
#: redbot/cogs/alias/alias.py:417
#: redbot/cogs/alias/alias.py:348
msgid "No such alias exists."
msgstr ""
#: redbot/cogs/alias/alias.py:421
#: redbot/cogs/alias/alias.py:352
#, docstring
msgid "Show what command the alias executes."
msgstr ""
#: redbot/cogs/alias/alias.py:426
#: redbot/cogs/alias/alias.py:357
msgid "The `{alias_name}` alias will execute the command `{command}`"
msgstr ""
#: redbot/cogs/alias/alias.py:431
#: redbot/cogs/alias/alias.py:362
msgid "There is no alias with the name `{name}`"
msgstr ""
#: redbot/cogs/alias/alias.py:437
#: redbot/cogs/alias/alias.py:368
#, docstring
msgid "Delete an existing alias on this server."
msgstr ""
#: redbot/cogs/alias/alias.py:439 redbot/cogs/alias/alias.py:471
#: redbot/cogs/alias/alias.py:370 redbot/cogs/alias/alias.py:402
msgid "There are no aliases on this server."
msgstr ""
#: redbot/cogs/alias/alias.py:444 redbot/cogs/alias/alias.py:459
#: redbot/cogs/alias/alias.py:375 redbot/cogs/alias/alias.py:390
msgid "Alias with the name `{name}` was successfully deleted."
msgstr ""
#: redbot/cogs/alias/alias.py:447 redbot/cogs/alias/alias.py:462
#: redbot/cogs/alias/alias.py:378 redbot/cogs/alias/alias.py:393
msgid "Alias with name `{name}` was not found."
msgstr ""
#: redbot/cogs/alias/alias.py:452
#: redbot/cogs/alias/alias.py:383
#, docstring
msgid "Delete an existing global alias."
msgstr ""
#: redbot/cogs/alias/alias.py:454
#: redbot/cogs/alias/alias.py:385
msgid "There are no global aliases on this bot."
msgstr ""
#: redbot/cogs/alias/alias.py:468
#: redbot/cogs/alias/alias.py:399
#, docstring
msgid "List the available aliases on this server."
msgstr ""
#: redbot/cogs/alias/alias.py:477
#: redbot/cogs/alias/alias.py:408
#, docstring
msgid "List the available global aliases on this bot."
msgstr ""
#: redbot/cogs/alias/alias.py:480
#: redbot/cogs/alias/alias.py:411
msgid "There are no global aliases."
msgstr ""
#: redbot/cogs/alias/alias_entry.py:199
#: redbot/cogs/alias/alias_entry.py:198
msgid "Arguments must be specified with a number."
msgstr ""
#: redbot/cogs/alias/alias_entry.py:206
#: redbot/cogs/alias/alias_entry.py:205
msgid "Arguments must be sequential. Missing arguments: "
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-03 01:50+0000\n"
"POT-Creation-Date: 2021-02-11 12:29+0000\n"
"Last-Translator: \n"
"Language-Team: Catalan\n"
"MIME-Version: 1.0\n"
@@ -18,7 +18,7 @@ msgstr ""
#: redbot/cogs/alias/alias.py:35
#, docstring
msgid "Create aliases for commands.\n\n"
" Aliases are alternative names/shortcuts for commands. They\n"
" Aliases are alternative names shortcuts for commands. They\n"
" can act as both a lambda (storing arguments for repeated use)\n"
" or as simply a shortcut to saying \"x y z\".\n\n"
" When run, aliases will accept any additional arguments\n"
@@ -91,99 +91,73 @@ msgstr ""
msgid "A new global alias with the trigger `{name}` has been created."
msgstr ""
#: redbot/cogs/alias/alias.py:345
#, docstring
msgid "Edit an existing alias in this server."
msgstr ""
#: redbot/cogs/alias/alias.py:350 redbot/cogs/alias/alias.py:385
msgid "The alias with the name {name} does not exist."
msgstr ""
#: redbot/cogs/alias/alias.py:356 redbot/cogs/alias/alias.py:391
msgid "You attempted to edit an alias to a command that doesn't exist."
msgstr ""
#: redbot/cogs/alias/alias.py:365 redbot/cogs/alias/alias.py:398
msgid "The alias with the trigger `{name}` has been edited sucessfully."
msgstr ""
#: redbot/cogs/alias/alias.py:372 redbot/cogs/alias/alias.py:405
msgid "Alias with the name `{name}` was not found."
msgstr ""
#: redbot/cogs/alias/alias.py:380
#, docstring
msgid "Edit an existing global alias."
msgstr ""
#: redbot/cogs/alias/alias.py:412
#: redbot/cogs/alias/alias.py:343
#, docstring
msgid "Try to execute help for the base command of the alias."
msgstr ""
#: redbot/cogs/alias/alias.py:417
#: redbot/cogs/alias/alias.py:348
msgid "No such alias exists."
msgstr ""
#: redbot/cogs/alias/alias.py:421
#: redbot/cogs/alias/alias.py:352
#, docstring
msgid "Show what command the alias executes."
msgstr ""
#: redbot/cogs/alias/alias.py:426
#: redbot/cogs/alias/alias.py:357
msgid "The `{alias_name}` alias will execute the command `{command}`"
msgstr ""
#: redbot/cogs/alias/alias.py:431
#: redbot/cogs/alias/alias.py:362
msgid "There is no alias with the name `{name}`"
msgstr ""
#: redbot/cogs/alias/alias.py:437
#: redbot/cogs/alias/alias.py:368
#, docstring
msgid "Delete an existing alias on this server."
msgstr ""
#: redbot/cogs/alias/alias.py:439 redbot/cogs/alias/alias.py:471
#: redbot/cogs/alias/alias.py:370 redbot/cogs/alias/alias.py:402
msgid "There are no aliases on this server."
msgstr ""
#: redbot/cogs/alias/alias.py:444 redbot/cogs/alias/alias.py:459
#: redbot/cogs/alias/alias.py:375 redbot/cogs/alias/alias.py:390
msgid "Alias with the name `{name}` was successfully deleted."
msgstr ""
#: redbot/cogs/alias/alias.py:447 redbot/cogs/alias/alias.py:462
#: redbot/cogs/alias/alias.py:378 redbot/cogs/alias/alias.py:393
msgid "Alias with name `{name}` was not found."
msgstr ""
#: redbot/cogs/alias/alias.py:452
#: redbot/cogs/alias/alias.py:383
#, docstring
msgid "Delete an existing global alias."
msgstr ""
#: redbot/cogs/alias/alias.py:454
#: redbot/cogs/alias/alias.py:385
msgid "There are no global aliases on this bot."
msgstr ""
#: redbot/cogs/alias/alias.py:468
#: redbot/cogs/alias/alias.py:399
#, docstring
msgid "List the available aliases on this server."
msgstr ""
#: redbot/cogs/alias/alias.py:477
#: redbot/cogs/alias/alias.py:408
#, docstring
msgid "List the available global aliases on this bot."
msgstr ""
#: redbot/cogs/alias/alias.py:480
#: redbot/cogs/alias/alias.py:411
msgid "There are no global aliases."
msgstr ""
#: redbot/cogs/alias/alias_entry.py:199
#: redbot/cogs/alias/alias_entry.py:198
msgid "Arguments must be specified with a number."
msgstr ""
#: redbot/cogs/alias/alias_entry.py:206
#: redbot/cogs/alias/alias_entry.py:205
msgid "Arguments must be sequential. Missing arguments: "
msgstr ""

View File

@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: red-discordbot\n"
"POT-Creation-Date: 2021-09-03 01:50+0000\n"
"POT-Creation-Date: 2021-02-11 12:29+0000\n"
"Last-Translator: \n"
"Language-Team: Czech\n"
"MIME-Version: 1.0\n"
@@ -18,13 +18,13 @@ msgstr ""
#: redbot/cogs/alias/alias.py:35
#, docstring
msgid "Create aliases for commands.\n\n"
" Aliases are alternative names/shortcuts for commands. They\n"
" Aliases are alternative names shortcuts for commands. They\n"
" can act as both a lambda (storing arguments for repeated use)\n"
" or as simply a shortcut to saying \"x y z\".\n\n"
" When run, aliases will accept any additional arguments\n"
" and append them to the stored alias.\n"
" "
msgstr ""
msgstr "Vytvořit aliasy pro příkazy n n Aliasy jsou alternativní zkratky pro příkazy. Mohou působit jako lambda (ukládání argumentů pro opakované použití) n nebo jednoduše jako zkratka pro vyslovení \"xyz\" n n Při spuštění budou aliasy přijímat další argumenty a připojovat je k uložený alias. \\ t "
#: redbot/cogs/alias/alias.py:203
msgid "Aliases:\n"
@@ -92,99 +92,73 @@ msgstr "Pokusili jste se vytvořit nový globální alias s názvem {name}, ale
msgid "A new global alias with the trigger `{name}` has been created."
msgstr "Byl vytvořen nový globální alias se spouštěcím mechanismem `{name}."
#: redbot/cogs/alias/alias.py:345
#, docstring
msgid "Edit an existing alias in this server."
msgstr ""
#: redbot/cogs/alias/alias.py:350 redbot/cogs/alias/alias.py:385
msgid "The alias with the name {name} does not exist."
msgstr ""
#: redbot/cogs/alias/alias.py:356 redbot/cogs/alias/alias.py:391
msgid "You attempted to edit an alias to a command that doesn't exist."
msgstr ""
#: redbot/cogs/alias/alias.py:365 redbot/cogs/alias/alias.py:398
msgid "The alias with the trigger `{name}` has been edited sucessfully."
msgstr ""
#: redbot/cogs/alias/alias.py:372 redbot/cogs/alias/alias.py:405
msgid "Alias with the name `{name}` was not found."
msgstr ""
#: redbot/cogs/alias/alias.py:380
#, docstring
msgid "Edit an existing global alias."
msgstr ""
#: redbot/cogs/alias/alias.py:412
#: redbot/cogs/alias/alias.py:343
#, docstring
msgid "Try to execute help for the base command of the alias."
msgstr "Zkuste spustit nápovědu pro základní příkaz aliasů."
#: redbot/cogs/alias/alias.py:417
#: redbot/cogs/alias/alias.py:348
msgid "No such alias exists."
msgstr "Žádný takový alias neexistuje."
#: redbot/cogs/alias/alias.py:421
#: redbot/cogs/alias/alias.py:352
#, docstring
msgid "Show what command the alias executes."
msgstr "Zobrazit příkaz ke spustitelnému aliasu."
#: redbot/cogs/alias/alias.py:426
#: redbot/cogs/alias/alias.py:357
msgid "The `{alias_name}` alias will execute the command `{command}`"
msgstr "Alias `{alias_name} provede příkaz `{command}"
#: redbot/cogs/alias/alias.py:431
#: redbot/cogs/alias/alias.py:362
msgid "There is no alias with the name `{name}`"
msgstr "Neexistuje žádný alias s názvem `{name}`"
#: redbot/cogs/alias/alias.py:437
#: redbot/cogs/alias/alias.py:368
#, docstring
msgid "Delete an existing alias on this server."
msgstr "Odstraní existující alias na tomto serveru."
#: redbot/cogs/alias/alias.py:439 redbot/cogs/alias/alias.py:471
#: redbot/cogs/alias/alias.py:370 redbot/cogs/alias/alias.py:402
msgid "There are no aliases on this server."
msgstr "Na tomto serveru nejsou žádné aliasy."
#: redbot/cogs/alias/alias.py:444 redbot/cogs/alias/alias.py:459
#: redbot/cogs/alias/alias.py:375 redbot/cogs/alias/alias.py:390
msgid "Alias with the name `{name}` was successfully deleted."
msgstr "Alias s názvem{name}` byl úspěšně smazán."
#: redbot/cogs/alias/alias.py:447 redbot/cogs/alias/alias.py:462
#: redbot/cogs/alias/alias.py:378 redbot/cogs/alias/alias.py:393
msgid "Alias with name `{name}` was not found."
msgstr "Alias s názvem `{name}` nebyl nalezen."
#: redbot/cogs/alias/alias.py:452
#: redbot/cogs/alias/alias.py:383
#, docstring
msgid "Delete an existing global alias."
msgstr "Odstranit existující globální alias."
#: redbot/cogs/alias/alias.py:454
#: redbot/cogs/alias/alias.py:385
msgid "There are no global aliases on this bot."
msgstr "Pro tohoto bota neexistují žádné globální aliasy."
#: redbot/cogs/alias/alias.py:468
#: redbot/cogs/alias/alias.py:399
#, docstring
msgid "List the available aliases on this server."
msgstr "Seznam dostupných aliasů na tomto serveru."
#: redbot/cogs/alias/alias.py:477
#: redbot/cogs/alias/alias.py:408
#, docstring
msgid "List the available global aliases on this bot."
msgstr "Seznam dostupných globálních aliasů pro tohoto bota."
#: redbot/cogs/alias/alias.py:480
#: redbot/cogs/alias/alias.py:411
msgid "There are no global aliases."
msgstr "Neexistují žádné globální aliasy."
#: redbot/cogs/alias/alias_entry.py:199
#: redbot/cogs/alias/alias_entry.py:198
msgid "Arguments must be specified with a number."
msgstr "Argumenty musí být zadány s číslem."
#: redbot/cogs/alias/alias_entry.py:206
#: redbot/cogs/alias/alias_entry.py:205
msgid "Arguments must be sequential. Missing arguments: "
msgstr "Argumenty musí být sekvenční. Chybějící argumenty: "

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