mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-12-06 01:12:33 -05:00
Compare commits
68 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
029a7fffcb | ||
|
|
0096f874a4 | ||
|
|
07e7594308 | ||
|
|
6a4a0b4bb3 | ||
|
|
dca082f20e | ||
|
|
dfe03b9cad | ||
|
|
3865449d3b | ||
|
|
39169703a7 | ||
|
|
55d748147d | ||
|
|
7bf8bd5a93 | ||
|
|
931eb312b2 | ||
|
|
1eaa51e013 | ||
|
|
539e0b2c14 | ||
|
|
addc633425 | ||
|
|
00adb15be0 | ||
|
|
ad5a5017b6 | ||
|
|
9482f0c60c | ||
|
|
0b8747c49b | ||
|
|
3c34af5e82 | ||
|
|
c739500a13 | ||
|
|
373c04de11 | ||
|
|
2ae54c837f | ||
|
|
df19bfe679 | ||
|
|
ded19fe4fe | ||
|
|
ca3b314b5b | ||
|
|
b03e582e21 | ||
|
|
147c032788 | ||
|
|
74af8f006e | ||
|
|
05582c8636 | ||
|
|
58158ff024 | ||
|
|
dcee2077c0 | ||
|
|
2d0d5b5be1 | ||
|
|
119550739e | ||
|
|
2f8f121bb0 | ||
|
|
96421a6dfa | ||
|
|
c8992a4281 | ||
|
|
3c325bb4cb | ||
|
|
497cb50716 | ||
|
|
dbe50bc6fe | ||
|
|
55712f1ed0 | ||
|
|
8f6f2804db | ||
|
|
fe147f277f | ||
|
|
80a1088061 | ||
|
|
b9d9ae3103 | ||
|
|
a95d65c316 | ||
|
|
a6b9f785ac | ||
|
|
267720bbba | ||
|
|
339cc6b3dc | ||
|
|
2c38a7c4f2 | ||
|
|
1736502893 | ||
|
|
2d3b0e513f | ||
|
|
53484abff8 | ||
|
|
3a2b965b4b | ||
|
|
2635300b44 | ||
|
|
917ff14156 | ||
|
|
e3e8ab784b | ||
|
|
08bbf8f6db | ||
|
|
cbb5ffe252 | ||
|
|
620f462f4b | ||
|
|
bf1286775f | ||
|
|
eff496cbb7 | ||
|
|
1a4c6bb84f | ||
|
|
85ab61b17d | ||
|
|
7197952795 | ||
|
|
05a25b1f03 | ||
|
|
e8ece55501 | ||
|
|
e08909dba6 | ||
|
|
a3f61fed7c |
5
.cherry_picker.toml
Normal file
5
.cherry_picker.toml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
team = "Cog-Creators"
|
||||||
|
repo = "Red-DiscordBot"
|
||||||
|
check_sha = "6251c585e4ec0a53813a9993ede3ab5309024579"
|
||||||
|
fix_commit_msg = false
|
||||||
|
default_branch = "V3/develop"
|
||||||
1
.github/labeler.yml
vendored
1
.github/labeler.yml
vendored
@@ -27,6 +27,7 @@
|
|||||||
# Source
|
# Source
|
||||||
- redbot/*
|
- redbot/*
|
||||||
- redbot/core/__init__.py
|
- redbot/core/__init__.py
|
||||||
|
- redbot/core/_diagnoser.py
|
||||||
- redbot/core/_sharedlibdeprecation.py
|
- redbot/core/_sharedlibdeprecation.py
|
||||||
- redbot/core/bot.py
|
- redbot/core/bot.py
|
||||||
- redbot/core/checks.py
|
- redbot/core/checks.py
|
||||||
|
|||||||
2
.github/workflows/codeql-analysis.yml
vendored
2
.github/workflows/codeql-analysis.yml
vendored
@@ -27,7 +27,7 @@ jobs:
|
|||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install -U pip setuptools wheel
|
python -m pip install -U pip setuptools wheel
|
||||||
python -m pip install -r ./tools/dev-requirements.txt
|
python -m pip install .[all]
|
||||||
# Set the `CODEQL-PYTHON` environment variable to the Python executable
|
# Set the `CODEQL-PYTHON` environment variable to the Python executable
|
||||||
# that includes the dependencies
|
# that includes the dependencies
|
||||||
echo "CODEQL_PYTHON=$(which python)" >> $GITHUB_ENV
|
echo "CODEQL_PYTHON=$(which python)" >> $GITHUB_ENV
|
||||||
|
|||||||
59
.github/workflows/publish_release.yml
vendored
59
.github/workflows/publish_release.yml
vendored
@@ -5,13 +5,61 @@ on:
|
|||||||
- "*"
|
- "*"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release_to_pypi:
|
release_information:
|
||||||
if: github.repository == 'Cog-Creators/Red-DiscordBot'
|
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
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
|
||||||
ref: V3/develop
|
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
@@ -33,9 +81,12 @@ jobs:
|
|||||||
contents: write
|
contents: write
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
needs: release_to_pypi
|
needs: release_to_pypi
|
||||||
|
name: Update Red version number to dev
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
ref: ${{ github.event.base_ref }}
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
@@ -77,7 +128,7 @@ jobs:
|
|||||||
branch: "automated/pr_bumps/${{ steps.bump_version_dev.outputs.new_version }}"
|
branch: "automated/pr_bumps/${{ steps.bump_version_dev.outputs.new_version }}"
|
||||||
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
||||||
milestone: ${{ steps.get_milestone_number.outputs.result }}
|
milestone: ${{ steps.get_milestone_number.outputs.result }}
|
||||||
base: V3/develop
|
base: ${{ github.event.base_ref }}
|
||||||
|
|
||||||
- name: Close and reopen the PR with different token to trigger CI
|
- name: Close and reopen the PR with different token to trigger CI
|
||||||
uses: actions/github-script@v3
|
uses: actions/github-script@v3
|
||||||
|
|||||||
5
.github/workflows/scripts/bump_version.py
vendored
5
.github/workflows/scripts/bump_version.py
vendored
@@ -6,6 +6,11 @@ from typing import Match
|
|||||||
import redbot
|
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
|
version_info = None
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
14
.github/workflows/tests.yml
vendored
14
.github/workflows/tests.yml
vendored
@@ -17,12 +17,18 @@ jobs:
|
|||||||
python_version:
|
python_version:
|
||||||
- "3.8"
|
- "3.8"
|
||||||
tox_env:
|
tox_env:
|
||||||
- py
|
|
||||||
- style
|
- style
|
||||||
- docs
|
- docs
|
||||||
include:
|
include:
|
||||||
- tox_env: py
|
- tox_env: py38
|
||||||
friendly_name: Tests
|
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: style
|
- tox_env: style
|
||||||
friendly_name: Style
|
friendly_name: Style
|
||||||
- tox_env: docs
|
- tox_env: docs
|
||||||
@@ -52,6 +58,8 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
python_version:
|
python_version:
|
||||||
- "3.8"
|
- "3.8"
|
||||||
|
- "3.9"
|
||||||
|
- "3.10-dev"
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
name: Tox - Postgres
|
name: Tox - Postgres
|
||||||
services:
|
services:
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ Continue to the next section to enable privileged intents.
|
|||||||
Enabling Privileged Intents
|
Enabling Privileged Intents
|
||||||
-------------------------------
|
-------------------------------
|
||||||
.. warning::
|
.. warning::
|
||||||
Due to Discord API changes, Red Bot requires all intents.
|
:ref:`Red Bot requires all intents. <intents>`
|
||||||
\This section is required.
|
\This section is required.
|
||||||
|
|
||||||
1. Make sure you're logged on to the `Discord website <https://discord.com>`_.
|
1. Make sure you're logged on to the `Discord website <https://discord.com>`_.
|
||||||
@@ -75,5 +75,6 @@ Enabling Privileged Intents
|
|||||||
.. warning::
|
.. 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.
|
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>`_.
|
*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>`_.
|
||||||
|
|||||||
@@ -650,7 +650,7 @@ Dev Cog
|
|||||||
Documentation changes
|
Documentation changes
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
- Fixed install instructions for Mac in `install_linux_mac` (:issue:`3675`, :issue:`3436`)
|
- Fixed install instructions for 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`)
|
- Windows install instructions now use ``choco upgrade`` commands instead of ``choco install`` to ensure up-to-date packages (:issue:`3684`)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,189 @@
|
|||||||
.. 3.4.x Changelogs
|
.. 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)
|
Redbot 3.4.12 (2021-06-17)
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
@@ -77,11 +261,11 @@ Admin
|
|||||||
*****
|
*****
|
||||||
|
|
||||||
- The cog will now log when it leaves a guild due to the serverlock (:issue:`5008`, :issue:`5073`)
|
- 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
|
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`)
|
- 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`)
|
- 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`)
|
- Fixed an error with ``[p]audiostats`` caused by players not always having their connection time stored (:issue:`5046`)
|
||||||
@@ -502,7 +686,7 @@ Documentation changes
|
|||||||
- Added information about the Red Index to `guide_publish_cogs` (:issue:`4778`)
|
- Added information about the Red Index to `guide_publish_cogs` (:issue:`4778`)
|
||||||
- Restructured the host list (:issue:`4710`)
|
- Restructured the host list (:issue:`4710`)
|
||||||
- Clarified how to use pm2 with ``pyenv virtualenv`` (:issue:`4709`)
|
- Clarified how to use pm2 with ``pyenv virtualenv`` (:issue:`4709`)
|
||||||
- Updated the pip command for Red with the postgres extra in `install_linux_mac` document to work on zsh shell (:issue:`4697`)
|
- Updated the pip command for Red with the postgres extra in Linux/macOS install guide to work on zsh shell (:issue:`4697`)
|
||||||
- Updated Python version in ``pyenv`` and Windows instructions (:issue:`4770`)
|
- Updated Python version in ``pyenv`` and Windows instructions (:issue:`4770`)
|
||||||
|
|
||||||
|
|
||||||
@@ -722,7 +906,7 @@ Documentation changes
|
|||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
- Added `cog guide for Cleanup cog <cleanup>` (:issue:`4488`)
|
- Added `cog guide for Cleanup cog <cleanup>` (:issue:`4488`)
|
||||||
- Removed multi-line commands from `install_linux_mac` to avoid confusing readers (:issue:`4550`)
|
- Removed multi-line commands from Linux install guides to avoid confusing readers (:issue:`4550`)
|
||||||
|
|
||||||
|
|
||||||
Redbot 3.4.1 (2020-10-27)
|
Redbot 3.4.1 (2020-10-27)
|
||||||
@@ -1053,7 +1237,7 @@ Core Bot
|
|||||||
|
|
||||||
- Added data request API (:issue:`4045`, :issue:`4169`)
|
- Added data request API (:issue:`4045`, :issue:`4169`)
|
||||||
|
|
||||||
- New special methods added to `commands.Cog`: `red_get_data_for_user()` (documented provisionally), `red_delete_data_for_user()`
|
- New special methods added to `redbot.core.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__``
|
- 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
|
- 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
|
- New ``info.json`` key added: ``end_user_data_statement``; see `Info.json format documentation <info-json-format>` for more information
|
||||||
|
|||||||
@@ -150,7 +150,7 @@ selfroleset add
|
|||||||
|
|
||||||
**Description**
|
**Description**
|
||||||
|
|
||||||
Add a role to the list of selfroles.
|
Add a role, or a selection of roles, to the list of available selfroles.
|
||||||
|
|
||||||
.. warning:: Members will be able to assign themselves the role.
|
.. warning:: Members will be able to assign themselves the role.
|
||||||
Make sure it doesn't give extra perms or anything that can break
|
Make sure it doesn't give extra perms or anything that can break
|
||||||
@@ -174,7 +174,7 @@ selfroleset remove
|
|||||||
|
|
||||||
**Description**
|
**Description**
|
||||||
|
|
||||||
Removes a role from the list of selfroles.
|
Remove a role, or a selection of roles, from the list of available selfroles.
|
||||||
|
|
||||||
**Arguments**
|
**Arguments**
|
||||||
|
|
||||||
|
|||||||
@@ -294,3 +294,40 @@ Examples:
|
|||||||
- ``<user>`` The user whose messages are to be cleaned up.
|
- ``<user>`` The user whose messages are to be cleaned up.
|
||||||
- ``<number>`` The max number of messages to cleanup. Must be a positive integer.
|
- ``<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
|
- ``<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.
|
||||||
|
|||||||
@@ -383,7 +383,7 @@ command defaultdisablecog
|
|||||||
|
|
||||||
.. code-block:: none
|
.. code-block:: none
|
||||||
|
|
||||||
[p]command defaultdisablecog <cogname>
|
[p]command defaultdisablecog <cog>
|
||||||
|
|
||||||
**Description**
|
**Description**
|
||||||
|
|
||||||
@@ -400,7 +400,7 @@ To override it, use ``[p]command enablecog`` on the servers you want to allow us
|
|||||||
- ``[p]command defaultdisablecog ModLog``
|
- ``[p]command defaultdisablecog ModLog``
|
||||||
|
|
||||||
**Arguments:**
|
**Arguments:**
|
||||||
- ``<cogname>`` - The name of the cog to make disabled by default. Must be title-case.
|
- ``<cog>`` - The name of the cog to make disabled by default. Must be title-case.
|
||||||
|
|
||||||
.. _core-command-command-defaultenablecog:
|
.. _core-command-command-defaultenablecog:
|
||||||
|
|
||||||
@@ -414,7 +414,7 @@ command defaultenablecog
|
|||||||
|
|
||||||
.. code-block:: none
|
.. code-block:: none
|
||||||
|
|
||||||
[p]command defaultenablecog <cogname>
|
[p]command defaultenablecog <cog>
|
||||||
|
|
||||||
**Description**
|
**Description**
|
||||||
|
|
||||||
@@ -431,7 +431,7 @@ To override it, use ``[p]command disablecog`` on the servers you want to disallo
|
|||||||
- ``[p]command defaultenablecog ModLog``
|
- ``[p]command defaultenablecog ModLog``
|
||||||
|
|
||||||
**Arguments:**
|
**Arguments:**
|
||||||
- ``<cogname>`` - The name of the cog to make enabled by default. Must be title-case.
|
- ``<cog>`` - The name of the cog to make enabled by default. Must be title-case.
|
||||||
|
|
||||||
.. _core-command-command-disable:
|
.. _core-command-command-disable:
|
||||||
|
|
||||||
@@ -519,7 +519,7 @@ command disablecog
|
|||||||
|
|
||||||
.. code-block:: none
|
.. code-block:: none
|
||||||
|
|
||||||
[p]command disablecog <cogname>
|
[p]command disablecog <cog>
|
||||||
|
|
||||||
**Description**
|
**Description**
|
||||||
|
|
||||||
@@ -533,7 +533,7 @@ Disable a cog in this server.
|
|||||||
- ``[p]command disablecog ModLog``
|
- ``[p]command disablecog ModLog``
|
||||||
|
|
||||||
**Arguments:**
|
**Arguments:**
|
||||||
- ``<cogname>`` - The name of the cog to disable on this server. Must be title-case.
|
- ``<cog>`` - The name of the cog to disable on this server. Must be title-case.
|
||||||
|
|
||||||
.. _core-command-command-disabledmsg:
|
.. _core-command-command-disabledmsg:
|
||||||
|
|
||||||
@@ -651,7 +651,7 @@ command enablecog
|
|||||||
|
|
||||||
.. code-block:: none
|
.. code-block:: none
|
||||||
|
|
||||||
[p]command enablecog <cogname>
|
[p]command enablecog <cog>
|
||||||
|
|
||||||
**Description**
|
**Description**
|
||||||
|
|
||||||
@@ -665,7 +665,7 @@ Enable a cog in this server.
|
|||||||
- ``[p]command enablecog ModLog``
|
- ``[p]command enablecog ModLog``
|
||||||
|
|
||||||
**Arguments:**
|
**Arguments:**
|
||||||
- ``<cogname>`` - The name of the cog to enable on this server. Must be title-case.
|
- ``<cog>`` - The name of the cog to enable on this server. Must be title-case.
|
||||||
|
|
||||||
.. _core-command-command-listdisabled:
|
.. _core-command-command-listdisabled:
|
||||||
|
|
||||||
@@ -770,6 +770,33 @@ This is limited to one message every 60 seconds per person.
|
|||||||
**Arguments:**
|
**Arguments:**
|
||||||
- ``[message]`` - The message to send to the owner.
|
- ``[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:
|
.. _core-command-dm:
|
||||||
|
|
||||||
^^
|
^^
|
||||||
@@ -875,7 +902,7 @@ embedset command
|
|||||||
|
|
||||||
.. code-block:: none
|
.. code-block:: none
|
||||||
|
|
||||||
[p]embedset command <command_name> [enabled]
|
[p]embedset command <command> [enabled]
|
||||||
|
|
||||||
**Description**
|
**Description**
|
||||||
|
|
||||||
@@ -908,7 +935,7 @@ embedset command global
|
|||||||
|
|
||||||
.. code-block:: none
|
.. code-block:: none
|
||||||
|
|
||||||
[p]embedset command global <command_name> [enabled]
|
[p]embedset command global <command> [enabled]
|
||||||
|
|
||||||
**Description**
|
**Description**
|
||||||
|
|
||||||
@@ -938,7 +965,7 @@ embedset command server
|
|||||||
|
|
||||||
.. code-block:: none
|
.. code-block:: none
|
||||||
|
|
||||||
[p]embedset command server <command_name> [enabled]
|
[p]embedset command server <command> [enabled]
|
||||||
|
|
||||||
.. tip:: Alias: ``embedset command guild``
|
.. tip:: Alias: ``embedset command guild``
|
||||||
|
|
||||||
@@ -1030,7 +1057,7 @@ embedset showsettings
|
|||||||
|
|
||||||
.. code-block:: none
|
.. code-block:: none
|
||||||
|
|
||||||
[p]embedset showsettings [command_name]
|
[p]embedset showsettings [command]
|
||||||
|
|
||||||
**Description**
|
**Description**
|
||||||
|
|
||||||
@@ -1044,7 +1071,7 @@ Provide a command name to check for command specific embed settings.
|
|||||||
- ``[p]embedset showsettings "ignore list"`` - Checking subcommands requires quotes.
|
- ``[p]embedset showsettings "ignore list"`` - Checking subcommands requires quotes.
|
||||||
|
|
||||||
**Arguments:**
|
**Arguments:**
|
||||||
- ``[command_name]`` - Checks this command for command specific embed settings.
|
- ``[command]`` - Checks this command for command specific embed settings.
|
||||||
|
|
||||||
.. _core-command-embedset-user:
|
.. _core-command-embedset-user:
|
||||||
|
|
||||||
@@ -1190,6 +1217,34 @@ mean some pages will exceed this limit.
|
|||||||
**Arguments:**
|
**Arguments:**
|
||||||
- ``<limit>`` - The max amount of characters to show per page in the help message.
|
- ``<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:
|
.. _core-command-helpset-resetformatter:
|
||||||
|
|
||||||
""""""""""""""""""""""
|
""""""""""""""""""""""
|
||||||
|
|||||||
@@ -122,6 +122,22 @@ Examples:
|
|||||||
|
|
||||||
- ``[words...]`` The words or sentences to filter.
|
- ``[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:
|
.. _filter-command-filter-channel-list:
|
||||||
|
|
||||||
"""""""""""""""""""
|
"""""""""""""""""""
|
||||||
@@ -164,6 +180,22 @@ Examples:
|
|||||||
|
|
||||||
- ``[words...]`` The words or sentences to no longer filter.
|
- ``[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:
|
.. _filter-command-filter-delete:
|
||||||
|
|
||||||
"""""""""""""
|
"""""""""""""
|
||||||
|
|||||||
@@ -86,7 +86,13 @@ language = None
|
|||||||
# List of patterns, relative to source directory, that match files and
|
# List of patterns, relative to source directory, that match files and
|
||||||
# directories to ignore when looking for source files.
|
# directories to ignore when looking for source files.
|
||||||
# This patterns also effect to html_static_path and html_extra_path
|
# This patterns also effect to html_static_path and html_extra_path
|
||||||
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
|
exclude_patterns = [
|
||||||
|
"_build",
|
||||||
|
"Thumbs.db",
|
||||||
|
".DS_Store",
|
||||||
|
# to ensure that include files (partial pages) aren't built, exclude them
|
||||||
|
"**/_includes/**",
|
||||||
|
]
|
||||||
|
|
||||||
# The name of the Pygments (syntax highlighting) style to use.
|
# The name of the Pygments (syntax highlighting) style to use.
|
||||||
pygments_style = "sphinx"
|
pygments_style = "sphinx"
|
||||||
@@ -218,6 +224,7 @@ intersphinx_mapping = {
|
|||||||
"dpy": (f"https://discordpy.readthedocs.io/en/v{dpy_version}/", None),
|
"dpy": (f"https://discordpy.readthedocs.io/en/v{dpy_version}/", None),
|
||||||
"motor": ("https://motor.readthedocs.io/en/stable/", None),
|
"motor": ("https://motor.readthedocs.io/en/stable/", None),
|
||||||
"babel": ("http://babel.pocoo.org/en/stable/", None),
|
"babel": ("http://babel.pocoo.org/en/stable/", None),
|
||||||
|
"dateutil": ("https://dateutil.readthedocs.io/en/stable/", None),
|
||||||
}
|
}
|
||||||
|
|
||||||
# Extlinks
|
# Extlinks
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ This is a quick start guide for a general usage.
|
|||||||
.. note::
|
.. note::
|
||||||
|
|
||||||
If you haven't installed Red, please do it by following
|
If you haven't installed Red, please do it by following
|
||||||
the :ref:`installation guides <main>`.
|
one of the `installation guides <install_guides/index>`.
|
||||||
|
|
||||||
Assuming you correctly installed Red, you should have a
|
Assuming you correctly installed Red, you should have a
|
||||||
window like this:
|
window like this:
|
||||||
@@ -26,8 +26,8 @@ window like this:
|
|||||||
Invite Red to your server
|
Invite Red to your server
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
||||||
When started, the console will show you ``Invite URL`` (here at
|
When started, the console will show you the ``Invite URL``
|
||||||
the bottom of the screenshot).
|
(visible at the bottom of the screenshot above).
|
||||||
Paste the link into your browser and select the server you want
|
Paste the link into your browser and select the server you want
|
||||||
to invite the bot in, like any other bot.
|
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 commands
|
||||||
~~~~~~~~~~~~
|
~~~~~~~~~~~~
|
||||||
|
|
||||||
The command you're going to use the most is help. That command will
|
The command you're going to use the most is **help**. This command will
|
||||||
show you **all of the available commands** of the bot with a small description.
|
show you **all of the available commands** of the bot with a small description.
|
||||||
|
|
||||||
.. code-block:: none
|
.. code-block:: none
|
||||||
@@ -106,8 +106,8 @@ parameters.
|
|||||||
the syntax ``cleanup messages <number> [delete_pinned=False]``, which means
|
the syntax ``cleanup messages <number> [delete_pinned=False]``, which means
|
||||||
``delete_pinned`` default will be false, unless you specify it as true.
|
``delete_pinned`` default will be false, unless you specify it as true.
|
||||||
|
|
||||||
You can use help to show the **categories** too, generally called cogs.
|
You can use help to show the **categories** too, generally called cogs,
|
||||||
Just do something like this (notice the capitalization):
|
by doing the following (notice the capitalization):
|
||||||
|
|
||||||
.. code-block:: none
|
.. 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.
|
When using subcommands, you also need to specify the command group.
|
||||||
As an example, ``cleanup`` has 6 subcommands. If you want
|
As an example, ``cleanup`` has 6 subcommands. If you want
|
||||||
to use one, do it like this: ``[p]cleanup messages 10``
|
to use one of them, do: ``[p]cleanup messages 10``
|
||||||
|
|
||||||
.. _getting-started-cogs:
|
.. _getting-started-cogs:
|
||||||
|
|
||||||
@@ -217,7 +217,7 @@ Server owner
|
|||||||
~~~~~~~~~~~~
|
~~~~~~~~~~~~
|
||||||
|
|
||||||
The server owner can access all commands on his guild, except the global
|
The server owner can access all commands on his guild, except the global
|
||||||
ones or those who can interact with system files (available for the
|
ones or those that can interact with system files (available for the
|
||||||
bot owner).
|
bot owner).
|
||||||
|
|
||||||
~~~~~~~~~~~~~
|
~~~~~~~~~~~~~
|
||||||
@@ -237,12 +237,13 @@ Moderator
|
|||||||
A moderator is a step above the average users. You can set multiple 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.
|
roles with the ``[p]set addmodrole`` and ``[p]set removemodrole`` commands.
|
||||||
|
|
||||||
For example, in the mod cog (again), a mod will be able to mute, kick and ban;
|
For example, in the filter cog, a mod will be able to use the various commands
|
||||||
but he won't be able to modify the cog settings with the ``[p]modset`` command.
|
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.
|
||||||
|
|
||||||
.. tip::
|
.. tip::
|
||||||
If you don't like the default permission settings for some commands or
|
If you don't like the default permission settings for some commands or
|
||||||
if want to restrict a cog or a command to a channel/member, you can use
|
want to restrict a cog or a command to a channel/member, you can use
|
||||||
the permissions cog.
|
the permissions cog.
|
||||||
|
|
||||||
.. _getting-started-hosting:
|
.. _getting-started-hosting:
|
||||||
@@ -265,14 +266,14 @@ If you want to do it, follow these steps.
|
|||||||
basics of the Unix commands, such as navigating the system files or use
|
basics of the Unix commands, such as navigating the system files or use
|
||||||
a terminal text editor.
|
a terminal text editor.
|
||||||
|
|
||||||
You should follow `this guide
|
You should read `DigitalOcean's tutorial: An Introduction to Linux Basics
|
||||||
<https://www.digitalocean.com/community/tutorials/an-introduction-to-linux-basics>`_
|
<https://www.digitalocean.com/community/tutorials/an-introduction-to-linux-basics>`_
|
||||||
from DigitalOcean which will introduce you to the Linux basics.
|
if you have not used Linux before.
|
||||||
|
|
||||||
1. **Find a host**
|
1. **Find a host**
|
||||||
|
|
||||||
You need to find a server to host Red. You can rent a VPS (it can be free)
|
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 page <host-list>` for
|
on an online service. Please check :ref:`this list of hosts <host-list>` for
|
||||||
more information.
|
more information.
|
||||||
|
|
||||||
You can also buy a Raspberry Pi (~$20), which is a micro-computer that will
|
You can also buy a Raspberry Pi (~$20), which is a micro-computer that will
|
||||||
@@ -306,8 +307,8 @@ If you want to do it, follow these steps.
|
|||||||
|
|
||||||
3. **Install and set up Red**
|
3. **Install and set up Red**
|
||||||
|
|
||||||
Just follow one of the Linux installation guide. We provide guides for the
|
Follow one of the Linux installation guides. We provide guides for the
|
||||||
most used distributions. Check the :ref:`home page <main>` and search for
|
most used distributions. Check the `list of install guides <install_guides/index>` and search for
|
||||||
your distribution.
|
your distribution.
|
||||||
|
|
||||||
4. **Set up an auto-restart**
|
4. **Set up an auto-restart**
|
||||||
@@ -317,7 +318,7 @@ If you want to do it, follow these steps.
|
|||||||
side task and handle fatal errors, so you can just leave your server running
|
side task and handle fatal errors, so you can just leave your server running
|
||||||
and enjoy Red!
|
and enjoy Red!
|
||||||
|
|
||||||
For that, just follow :ref:`this guide <systemd-service-guide>`.
|
For that, follow :ref:`the systemd service guide <systemd-service-guide>`.
|
||||||
|
|
||||||
.. _getting-started-userdocs:
|
.. _getting-started-userdocs:
|
||||||
|
|
||||||
@@ -343,9 +344,12 @@ 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.
|
A line that will show how the command must be invoked, with the arguments.
|
||||||
|
|
||||||
.. tip:: If the command show something like ``[lavalinkset|llset]``, that means
|
* **Aliases**
|
||||||
you can invoke the command with ``lavalinkset`` or with ``llset``, this is
|
|
||||||
called an alias.
|
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.
|
||||||
|
|
||||||
* **Description**
|
* **Description**
|
||||||
|
|
||||||
|
|||||||
@@ -118,7 +118,7 @@ As you've added more questions, your file should look something like this:
|
|||||||
- $25000
|
- $25000
|
||||||
|
|
||||||
You can keep adding questions until you are satisfied, and then you can upload and
|
You can keep adding questions until you are satisfied, and then you can upload and
|
||||||
play your very own trivia! See :ref:`here <trivia-command-triviaset-custom>` for more details.
|
play your very own trivia! See :ref:`[p]triviaset custom <trivia-command-triviaset-custom>` for more information.
|
||||||
|
|
||||||
Still stuck? Take a look at
|
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>`_
|
`the core trivia lists <https://github.com/Cog-Creators/Red-DiscordBot/tree/V3/develop/redbot/cogs/trivia/data/lists>`_
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ Hosting Information
|
|||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
This doc is written for the :ref:`hosting section <getting-started-hosting>`
|
This doc is written for the :ref:`hosting section <getting-started-hosting>`
|
||||||
of the :ref:`getting started <getting-started>` guide. Please take a look
|
of the :ref:`getting started guide <getting-started>`. Please take a look
|
||||||
if you don't know how to host Red.
|
if you don't know how to host Red.
|
||||||
|
|
||||||
|
|
||||||
@@ -41,9 +41,9 @@ Hosting on a VPS or Dedicated Server
|
|||||||
|
|
||||||
.. warning::
|
.. warning::
|
||||||
Please be aware that a Linux server is controlled through a command line.
|
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 `this guide
|
If you don't know Unix basics, please take a look at
|
||||||
<https://www.digitalocean.com/community/tutorials/an-introduction-to-linux-basics>`_
|
`DigitalOcean's tutorial: An Introduction to Linux Basics
|
||||||
from DigitalOcean which will introduce you to the Linux basics.
|
<https://www.digitalocean.com/community/tutorials/an-introduction-to-linux-basics>`_.
|
||||||
|
|
||||||
|
|
||||||
------------
|
------------
|
||||||
@@ -145,6 +145,7 @@ Free Hosting
|
|||||||
Oracle Cloud and Google Cloud offer always free tiers with limited resources.
|
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.
|
| 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
|
| 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.
|
another individual for hosting Red is an option, albeit low in success rate.
|
||||||
|
|||||||
@@ -12,8 +12,7 @@ Welcome to Red - Discord Bot's documentation!
|
|||||||
:maxdepth: 1
|
:maxdepth: 1
|
||||||
:caption: Installation Guides:
|
:caption: Installation Guides:
|
||||||
|
|
||||||
install_windows
|
install_guides/index
|
||||||
install_linux_mac
|
|
||||||
bot_application_guide
|
bot_application_guide
|
||||||
update_red
|
update_red
|
||||||
about_venv
|
about_venv
|
||||||
@@ -33,6 +32,7 @@ Welcome to Red - Discord Bot's documentation!
|
|||||||
:caption: User guides:
|
:caption: User guides:
|
||||||
|
|
||||||
getting_started
|
getting_started
|
||||||
|
intents
|
||||||
cog_guides/admin
|
cog_guides/admin
|
||||||
cog_guides/alias
|
cog_guides/alias
|
||||||
cog_guides/bank
|
cog_guides/bank
|
||||||
|
|||||||
@@ -0,0 +1,44 @@
|
|||||||
|
------------------------------
|
||||||
|
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.
|
||||||
38
docs/install_guides/_includes/create-env-with-venv.rst
Normal file
38
docs/install_guides/_includes/create-env-with-venv.rst
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
------------------------------
|
||||||
|
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.
|
||||||
56
docs/install_guides/_includes/install-and-setup-red-unix.rst
Normal file
56
docs/install_guides/_includes/install-and-setup-red-unix.rst
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
--------------
|
||||||
|
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.
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
.. 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
|
||||||
34
docs/install_guides/_includes/install-python-pyenv.rst
Normal file
34
docs/install_guides/_includes/install-python-pyenv.rst
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
----------------------------
|
||||||
|
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.
|
||||||
34
docs/install_guides/_includes/install-python38-pyenv.rst
Normal file
34
docs/install_guides/_includes/install-python38-pyenv.rst
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
----------------------------
|
||||||
|
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.
|
||||||
5
docs/install_guides/_includes/linux-preamble.rst
Normal file
5
docs/install_guides/_includes/linux-preamble.rst
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
.. 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>`_.
|
||||||
23
docs/install_guides/arch.rst
Normal file
23
docs/install_guides/arch.rst
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
.. _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
|
||||||
42
docs/install_guides/centos-7.rst
Normal file
42
docs/install_guides/centos-7.rst
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
.. _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
|
||||||
7
docs/install_guides/centos-8.rst
Normal file
7
docs/install_guides/centos-8.rst
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
.. _install-centos-8:
|
||||||
|
|
||||||
|
=============================
|
||||||
|
Installing Red on CentOS 8.4+
|
||||||
|
=============================
|
||||||
|
|
||||||
|
.. include:: _includes/install-guide-rhel-derivatives.rst
|
||||||
7
docs/install_guides/centos-stream-8.rst
Normal file
7
docs/install_guides/centos-stream-8.rst
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
.. _install-centos-stream-8:
|
||||||
|
|
||||||
|
=================================
|
||||||
|
Installing Red on CentOS Stream 8
|
||||||
|
=================================
|
||||||
|
|
||||||
|
.. include:: _includes/install-guide-rhel-derivatives.rst
|
||||||
28
docs/install_guides/debian-10.rst
Normal file
28
docs/install_guides/debian-10.rst
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
.. _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
|
||||||
25
docs/install_guides/debian-11.rst
Normal file
25
docs/install_guides/debian-11.rst
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
.. _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
|
||||||
24
docs/install_guides/fedora.rst
Normal file
24
docs/install_guides/fedora.rst
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
.. _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
|
||||||
31
docs/install_guides/index.rst
Normal file
31
docs/install_guides/index.rst
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
.. _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
|
||||||
34
docs/install_guides/mac.rst
Normal file
34
docs/install_guides/mac.rst
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
.. _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
|
||||||
54
docs/install_guides/opensuse-leap-15.rst
Normal file
54
docs/install_guides/opensuse-leap-15.rst
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
.. _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
|
||||||
25
docs/install_guides/opensuse-tumbleweed.rst
Normal file
25
docs/install_guides/opensuse-tumbleweed.rst
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
.. _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
|
||||||
7
docs/install_guides/oracle-linux-8.rst
Normal file
7
docs/install_guides/oracle-linux-8.rst
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
.. _install-oracle-linux-8:
|
||||||
|
|
||||||
|
======================================
|
||||||
|
Installing Red on Oracle Linux 8.4-8.x
|
||||||
|
======================================
|
||||||
|
|
||||||
|
.. include:: _includes/install-guide-rhel-derivatives.rst
|
||||||
28
docs/install_guides/raspberry-pi-os-10.rst
Normal file
28
docs/install_guides/raspberry-pi-os-10.rst
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
.. _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
|
||||||
7
docs/install_guides/rhel-8.rst
Normal file
7
docs/install_guides/rhel-8.rst
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
.. _install-rhel-8:
|
||||||
|
|
||||||
|
=========================================================
|
||||||
|
Installing Red on Red Hat Enterprise Linux (RHEL) 8.4-8.x
|
||||||
|
=========================================================
|
||||||
|
|
||||||
|
.. include:: _includes/install-guide-rhel-derivatives.rst
|
||||||
7
docs/install_guides/rocky-linux-8.rst
Normal file
7
docs/install_guides/rocky-linux-8.rst
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
.. _install-rocky-linux-8:
|
||||||
|
|
||||||
|
===============================
|
||||||
|
Installing Red on Rocky Linux 8
|
||||||
|
===============================
|
||||||
|
|
||||||
|
.. include:: _includes/install-guide-rhel-derivatives.rst
|
||||||
37
docs/install_guides/ubuntu-1804.rst
Normal file
37
docs/install_guides/ubuntu-1804.rst
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
.. _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
|
||||||
31
docs/install_guides/ubuntu-2004.rst
Normal file
31
docs/install_guides/ubuntu-2004.rst
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
.. _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
|
||||||
35
docs/install_guides/ubuntu-non-lts.rst
Normal file
35
docs/install_guides/ubuntu-non-lts.rst
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
.. _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
|
||||||
@@ -10,15 +10,6 @@ Installing the pre-requirements
|
|||||||
|
|
||||||
Please install the pre-requirements by following instructions from one of the following subsections.
|
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:
|
.. contents:: Choose a method of installing pre-requirements:
|
||||||
:local:
|
:local:
|
||||||
|
|
||||||
@@ -40,7 +31,7 @@ Then run each of the following commands:
|
|||||||
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
|
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
|
||||||
choco upgrade git --params "/GitOnlyOnPath /WindowsTerminal" -y
|
choco upgrade git --params "/GitOnlyOnPath /WindowsTerminal" -y
|
||||||
choco upgrade visualstudio2019-workload-vctools -y
|
choco upgrade visualstudio2019-workload-vctools -y
|
||||||
choco upgrade python3 -y --version 3.8.10
|
choco upgrade python3 -y --version 3.9.7
|
||||||
|
|
||||||
For Audio support, you should also run the following command before exiting:
|
For Audio support, you should also run the following command before exiting:
|
||||||
|
|
||||||
@@ -64,7 +55,7 @@ Manually installing dependencies
|
|||||||
|
|
||||||
* `MSVC Build tools <https://www.visualstudio.com/downloads/#build-tools-for-visual-studio-2019>`_
|
* `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.9 is currently not supported!**
|
* `Python 3.8.1 or greater <https://www.python.org/downloads/>`_
|
||||||
|
|
||||||
.. attention:: Please make sure that the box to add Python to PATH is CHECKED, otherwise
|
.. 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.
|
you may run into issues when trying to run Red.
|
||||||
@@ -111,7 +102,7 @@ Then create your virtual environment with the following command
|
|||||||
|
|
||||||
.. prompt:: batch
|
.. prompt:: batch
|
||||||
|
|
||||||
py -3.8 -m venv "%userprofile%\redenv"
|
py -3.9 -m venv "%userprofile%\redenv"
|
||||||
|
|
||||||
And activate it with the following command
|
And activate it with the following command
|
||||||
|
|
||||||
@@ -175,8 +166,7 @@ Once done setting up the instance, run the following command to run Red:
|
|||||||
redbot <your instance name>
|
redbot <your instance name>
|
||||||
|
|
||||||
It will walk through the initial setup, asking for your token and a prefix.
|
It will walk through the initial setup, asking for your token and a prefix.
|
||||||
You can find out how to obtain a token with
|
`See how to obtain a token. <../bot_application_guide>`
|
||||||
`this guide <bot_application_guide>`.
|
|
||||||
|
|
||||||
.. tip::
|
.. tip::
|
||||||
If it's the first time you're using Red, you should check our `getting-started` guide
|
If it's the first time you're using Red, you should check our `getting-started` guide
|
||||||
@@ -1,498 +0,0 @@
|
|||||||
.. _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.
|
|
||||||
134
docs/intents.rst
Normal file
134
docs/intents.rst
Normal file
@@ -0,0 +1,134 @@
|
|||||||
|
.. _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.
|
||||||
@@ -97,10 +97,7 @@ 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.
|
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.
|
||||||
|
|
||||||
- `Windows <install_windows>`
|
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.
|
||||||
- `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.**
|
**If you already have Red installed in a virtual environment, you will need to delete it before starting this process.**
|
||||||
|
|
||||||
@@ -139,9 +136,6 @@ 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.
|
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.
|
||||||
|
|
||||||
- `Windows <install_windows>`
|
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.
|
||||||
- `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.**
|
**If you already have Red installed in a virtual environment, you will need to delete it before starting this process.**
|
||||||
|
|||||||
@@ -214,7 +214,7 @@ def _early_init():
|
|||||||
_ensure_no_colorama()
|
_ensure_no_colorama()
|
||||||
|
|
||||||
|
|
||||||
__version__ = "3.4.13.dev1"
|
__version__ = "3.4.14"
|
||||||
version_info = VersionInfo.from_str(__version__)
|
version_info = VersionInfo.from_str(__version__)
|
||||||
|
|
||||||
# Filter fuzzywuzzy slow sequence matcher warning
|
# Filter fuzzywuzzy slow sequence matcher warning
|
||||||
@@ -227,3 +227,12 @@ if "--debug" not in _sys.argv:
|
|||||||
# Individual warnings - tracked in https://github.com/Cog-Creators/Red-DiscordBot/issues/3529
|
# 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.
|
# 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)
|
_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",
|
||||||
|
)
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ from pathlib import Path
|
|||||||
from typing import NoReturn
|
from typing import NoReturn
|
||||||
|
|
||||||
import discord
|
import discord
|
||||||
|
import rich
|
||||||
|
|
||||||
# Set the event loop policies here so any subsequent `new_event_loop()`
|
# Set the event loop policies here so any subsequent `new_event_loop()`
|
||||||
# calls, in particular those as a result of the following imports,
|
# calls, in particular those as a result of the following imports,
|
||||||
@@ -84,8 +85,7 @@ def debug_info():
|
|||||||
os_info = platform.mac_ver()
|
os_info = platform.mac_ver()
|
||||||
osver = "Mac OSX {} {}".format(os_info[0], os_info[2])
|
osver = "Mac OSX {} {}".format(os_info[0], os_info[2])
|
||||||
else:
|
else:
|
||||||
os_info = distro.linux_distribution()
|
osver = f"{distro.name()} {distro.version()}".strip()
|
||||||
osver = "{} {}".format(os_info[0], os_info[1]).strip()
|
|
||||||
user_who_ran = getpass.getuser()
|
user_who_ran = getpass.getuser()
|
||||||
info = (
|
info = (
|
||||||
"Debug Info for Red\n\n"
|
"Debug Info for Red\n\n"
|
||||||
@@ -395,10 +395,12 @@ async def run_bot(red: Red, cli_flags: Namespace) -> None:
|
|||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
except discord.PrivilegedIntentsRequired:
|
except discord.PrivilegedIntentsRequired:
|
||||||
print(
|
console = rich.get_console()
|
||||||
|
console.print(
|
||||||
"Red requires all Privileged Intents to be enabled.\n"
|
"Red requires all Privileged Intents to be enabled.\n"
|
||||||
"You can find out how to enable Privileged Intents with this guide:\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"
|
"https://docs.discord.red/en/stable/bot_application_guide.html#enabling-privileged-intents",
|
||||||
|
style="red",
|
||||||
)
|
)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
|||||||
@@ -450,34 +450,47 @@ class Admin(commands.Cog):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
@selfroleset.command(name="add")
|
@selfroleset.command(name="add")
|
||||||
async def selfroleset_add(self, ctx: commands.Context, *, role: discord.Role):
|
async def selfroleset_add(self, ctx: commands.Context, *roles: discord.Role):
|
||||||
"""
|
"""
|
||||||
Add a role to the list of available selfroles.
|
Add a role, or a selection of roles, to the list of available selfroles.
|
||||||
|
|
||||||
NOTE: The role is case sensitive!
|
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):
|
if not self.pass_user_hierarchy_check(ctx, role):
|
||||||
await ctx.send(
|
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."
|
"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)
|
).format(role=role)
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
async with self.config.guild(ctx.guild).selfroles() as curr_selfroles:
|
if role.id not in current_selfroles:
|
||||||
if role.id not in curr_selfroles:
|
current_selfroles.append(role.id)
|
||||||
curr_selfroles.append(role.id)
|
else:
|
||||||
await ctx.send(_("Added."))
|
await ctx.send(
|
||||||
|
_('The role "{role.name}" is already a selfrole.').format(role=role)
|
||||||
|
)
|
||||||
return
|
return
|
||||||
|
|
||||||
await ctx.send(_("That role is already a selfrole."))
|
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)
|
||||||
|
|
||||||
@selfroleset.command(name="remove")
|
@selfroleset.command(name="remove")
|
||||||
async def selfroleset_remove(self, ctx: commands.Context, *, role: SelfRole):
|
async def selfroleset_remove(self, ctx: commands.Context, *roles: SelfRole):
|
||||||
"""
|
"""
|
||||||
Remove a role from the list of available selfroles.
|
Remove a role, or a selection of roles, from the list of available selfroles.
|
||||||
|
|
||||||
NOTE: The role is case sensitive!
|
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):
|
if not self.pass_user_hierarchy_check(ctx, role):
|
||||||
await ctx.send(
|
await ctx.send(
|
||||||
_(
|
_(
|
||||||
@@ -485,10 +498,16 @@ class Admin(commands.Cog):
|
|||||||
).format(role=role)
|
).format(role=role)
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
async with self.config.guild(ctx.guild).selfroles() as curr_selfroles:
|
current_selfroles.remove(role.id)
|
||||||
curr_selfroles.remove(role.id)
|
|
||||||
|
|
||||||
await ctx.send(_("Removed."))
|
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)
|
||||||
|
|
||||||
@commands.command()
|
@commands.command()
|
||||||
@checks.is_owner()
|
@checks.is_owner()
|
||||||
|
|||||||
@@ -17,5 +17,7 @@ class SelfRole(commands.Converter):
|
|||||||
selfroles = await admin.config.guild(ctx.guild).selfroles()
|
selfroles = await admin.config.guild(ctx.guild).selfroles()
|
||||||
|
|
||||||
if role.id not in selfroles:
|
if role.id not in selfroles:
|
||||||
raise commands.BadArgument(_("The provided role is not a valid selfrole."))
|
raise commands.BadArgument(
|
||||||
|
_('The role "{role_name}" is not a valid selfrole.').format(role_name=role.name)
|
||||||
|
)
|
||||||
return role
|
return role
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Afrikaans\n"
|
"Language-Team: Afrikaans\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -213,49 +213,57 @@ msgstr ""
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -271,7 +279,7 @@ msgstr ""
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Arabic\n"
|
"Language-Team: Arabic\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -237,51 +237,57 @@ msgstr "تطبيق الرتبالذاتية."
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" إضافة رتبة إلى قائمة الرتب الذاتية المتوفرة.\n\n"
|
|
||||||
" ملاحظة: الرتبة حساس للحالة!\n"
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "لقد قمت بنجاح بإضافة {role.name} إلى {member.display_name}"
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "الرتبة المذكورة ليست على قائمة الرتب الذاتية."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\\ ن أ شن ة أشنة الان زة الان اكل سالت الكلسه \\ ن \\ ن ن ن جال: الـ\"با\" \\ ن"
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "لقد قمت بنجاح بإزالة {role.name} من {member.display_name}"
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "قفل البوت للسيرفر الحالي فقط."
|
msgstr "قفل البوت للسيرفر الحالي فقط."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "لم يعد البوت مقفول للسيرفر الحالي فقط."
|
msgstr "لم يعد البوت مقفول للسيرفر الحالي فقط."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "لقد تم قفل البوت للسيرفر الحالي فقط."
|
msgstr "لقد تم قفل البوت للسيرفر الحالي فقط."
|
||||||
|
|
||||||
@@ -297,7 +303,7 @@ msgstr "لم أستطع أن أعلن للخوادم التالية:"
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "لم يتم تحميل وحدة الأدمن cog."
|
msgstr "لم يتم تحميل وحدة الأدمن cog."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "الرتبة المذكورة ليست على قائمة الرتب الذاتية."
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Bulgarian\n"
|
"Language-Team: Bulgarian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -221,49 +221,57 @@ msgstr ""
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "Добавено."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "Тази роля вече е самостоятелна роля."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "Премахнато."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Заключете бота само за текущите му сървъри."
|
msgstr "Заключете бота само за текущите му сървъри."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "Ботът вече не е заключен за сървъри."
|
msgstr "Ботът вече не е заключен за сървъри."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "Ботът е заключен за сървъри."
|
msgstr "Ботът е заключен за сървъри."
|
||||||
|
|
||||||
@@ -279,7 +287,7 @@ msgstr "Не можах да обявя в следните сървъри: "
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "Admin cog не беше зареден."
|
msgstr "Admin cog не беше зареден."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "Предоставената роля не е валидна самостоятелна роля."
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Bosnian\n"
|
"Language-Team: Bosnian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -213,49 +213,57 @@ msgstr ""
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -271,7 +279,7 @@ msgstr ""
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Catalan\n"
|
"Language-Team: Catalan\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -252,55 +252,57 @@ msgstr "Gestiona selfroles."
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" 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:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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."
|
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:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "Afegit."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "Aquest rol ja és un selfrole."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" 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:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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."
|
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:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "Esborrat."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Bloqueja el bot només als seus servidors actuals."
|
msgstr "Bloqueja el bot només als seus servidors actuals."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "El bot ja no està bloquejat pel servidor."
|
msgstr "El bot ja no està bloquejat pel servidor."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "El bot està ara bloquejat pel servidor."
|
msgstr "El bot està ara bloquejat pel servidor."
|
||||||
|
|
||||||
@@ -316,7 +318,7 @@ msgstr "No he pogut anunciar als servidor següents: "
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "El cog Admin no s'ha carregat."
|
msgstr "El cog Admin no s'ha carregat."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "El rol proporcionat no és un selfrole vàlid."
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Czech\n"
|
"Language-Team: Czech\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -248,55 +248,57 @@ msgstr "Spravovat self-role."
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" 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:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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."
|
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:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "Přidáno."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "Tato role je již self-rolí."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" 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:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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."
|
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:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "Odstraněno."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Uzamkne bota pouze na jeho aktuální servery."
|
msgstr "Uzamkne bota pouze na jeho aktuální servery."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "Bot již není uzamčen na server."
|
msgstr "Bot již není uzamčen na server."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "Bot je nyní serverem uzamčen."
|
msgstr "Bot je nyní serverem uzamčen."
|
||||||
|
|
||||||
@@ -312,7 +314,7 @@ msgstr "Nemohu oznámit následujícím serverům: "
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "Admin cog není načten."
|
msgstr "Admin cog není načten."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "Daná role není platná self-role."
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Danish\n"
|
"Language-Team: Danish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -213,49 +213,57 @@ msgstr ""
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "Tilføjet."
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
|
||||||
msgid "That role is already a selfrole."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: 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
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "Fjernet."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Lås en bot til dens nuværende server."
|
msgstr "Lås en bot til dens nuværende server."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "Botten er ikke længere låst til serveren."
|
msgstr "Botten er ikke længere låst til serveren."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "Botten er nu låst til serveren."
|
msgstr "Botten er nu låst til serveren."
|
||||||
|
|
||||||
@@ -271,7 +279,7 @@ msgstr "Jeg kunne ikke annoncere til de følgende servere: "
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "Admin cog er ikke indlæst."
|
msgstr "Admin cog er ikke indlæst."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "Den vedlagte rolle er ikke en valid selvrolle."
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: German\n"
|
"Language-Team: German\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -252,55 +252,57 @@ msgstr "Selbst hinzufügbare Rollen verwalten."
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" 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:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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."
|
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:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "Hinzugefügt."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "Diese Rolle ist bereits selbst hinzufügbar."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" Entferne eine Rolle von der Liste der selbst hinzufügbaren Rollen.\n\n"
|
|
||||||
" HINWEIS: Beachte Groß- und Kleinschreibung!\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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."
|
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:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "Entfernt."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Der Bot kann keinem neuen Server beitreten."
|
msgstr "Der Bot kann keinem neuen Server beitreten."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "Der Bot kann nun anderen Servern beitreten."
|
msgstr "Der Bot kann nun anderen Servern beitreten."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "Der Bot ist jetzt gesperrt neuen Servern beizutreten."
|
msgstr "Der Bot ist jetzt gesperrt neuen Servern beizutreten."
|
||||||
|
|
||||||
@@ -316,7 +318,7 @@ msgstr "Ich konnte die Ankündigung auf diesen Servern nicht ausführen: "
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "Das Admin-Cog ist nicht geladen."
|
msgstr "Das Admin-Cog ist nicht geladen."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "Die angegebene Rolle ist keine gültige selbst auswählbare Rolle."
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Greek\n"
|
"Language-Team: Greek\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -213,49 +213,57 @@ msgstr ""
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -271,7 +279,7 @@ msgstr ""
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Spanish\n"
|
"Language-Team: Spanish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -252,55 +252,57 @@ msgstr "Gestionar selfroles."
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" 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:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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."
|
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:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "Añadido."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "Ese rol ya es un selfrole."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" 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:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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."
|
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:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "Eliminado."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Bloquea el bot sólo a sus servidores actuales."
|
msgstr "Bloquea el bot sólo a sus servidores actuales."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "El bot ya no está bloqueado por el servidor."
|
msgstr "El bot ya no está bloqueado por el servidor."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "El bot está bloqueado por el servidor."
|
msgstr "El bot está bloqueado por el servidor."
|
||||||
|
|
||||||
@@ -316,7 +318,7 @@ msgstr "No pude anunciar en los siguientes servidores: "
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "El cog Admin no está cargado."
|
msgstr "El cog Admin no está cargado."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "El rol proporcionado no es un selfrole válido."
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Finnish\n"
|
"Language-Team: Finnish\n"
|
||||||
"MIME-Version: 1.0\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
|
#: redbot/cogs/admin/admin.py:59
|
||||||
msgid "I need the \"Manage Roles\" permission to do that."
|
msgid "I need the \"Manage Roles\" permission to do that."
|
||||||
msgstr ""
|
msgstr "Tarvitsen \"Muokkaa Rooleja\" oikeudet tehdäkseni tuon."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:61
|
#: 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."
|
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||||
@@ -197,7 +197,9 @@ msgid "\n"
|
|||||||
" Server admins must have configured the role as user settable.\n"
|
" Server admins must have configured the role as user settable.\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:411
|
#: redbot/cogs/admin/admin.py:411
|
||||||
#, docstring
|
#, docstring
|
||||||
@@ -248,55 +250,57 @@ msgstr "Hallitse selfroleja."
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" Lisää rooli saatavilla olevien selfrolien luetteloon.\n\n"
|
|
||||||
" HUOM: Rooli on kirjainkoolla herkkä!\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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."
|
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:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "Lisätty."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "Tämä rooli on jo selfrole."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" Lisää rooli saatavilla olevien selfrolien luetteloon.\n\n"
|
|
||||||
" HUOM: Rooli on kirjainkoolla herkkä!\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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."
|
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:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "Poistettu."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Lukitse botti vain nykyisille palvelimille."
|
msgstr "Lukitse botti vain nykyisille palvelimille."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "Botti ei ole enää palvelinlukittu."
|
msgstr "Botti ei ole enää palvelinlukittu."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "Botti on nyt palvelinlukittu."
|
msgstr "Botti on nyt palvelinlukittu."
|
||||||
|
|
||||||
@@ -312,7 +316,7 @@ msgstr "En voinut ilmoittaa seuraavalle palvelimelle: "
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "Admin cog ei ole ladattu."
|
msgstr "Admin cog ei ole ladattu."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "Annettu rooli ei ole kelvollinen selfrole."
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: French\n"
|
"Language-Team: French\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -252,55 +252,63 @@ msgstr "Gérer les auto-roles."
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr "\n"
|
||||||
"Ajouter un rôle à la liste des auto-rôles disponibles.\n\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"
|
" NOTE : Le nom du rôle est sensible aux majuscules et minuscules !\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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."
|
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:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "Ajouté."
|
msgstr "Le rôle \"{role.name}\" est déjà un rôle auto-attribué."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "Ce rôle est déjà un selfrole."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr "Ajout de 1 auto-rôle."
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr "\n"
|
||||||
" Supprimer un rôle de la liste des auto-rôles.\n\n"
|
"Ajouter un rôle, ou une sélection de rôles, à la liste des rôles personnels disponibles.\n\n"
|
||||||
" REMARQUE : Le nom du rôle est sensible aux majuscules et minuscules !\n"
|
" NOTE : Le nom du rôle est sensible aux majuscules et minuscules !\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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."
|
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:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "Retiré."
|
msgstr "Suppression de {count} auto-rôles."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr "Suppression d'un auto-rôle."
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Verrouiller un bot sur ses serveurs actuels uniquement."
|
msgstr "Verrouiller un bot sur ses serveurs actuels uniquement."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "Le bot n'est plus verrouillé sur ses serveurs actuels."
|
msgstr "Le bot n'est plus verrouillé sur ses serveurs actuels."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "Le bot est maintenant verrouillé sur ses serveurs actuels."
|
msgstr "Le bot est maintenant verrouillé sur ses serveurs actuels."
|
||||||
|
|
||||||
@@ -316,7 +324,7 @@ msgstr "Je n'ai pas pu annoncer aux serveurs suivants : "
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "Le cog Admin n'est pas chargé."
|
msgstr "Le cog Admin n'est pas chargé."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "Le rôle fourni n'est pas un auto-rôle valide."
|
msgstr "Le rôle \"{role_name}\" n'est pas un auto-rôle valide."
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hebrew\n"
|
"Language-Team: Hebrew\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -213,49 +213,57 @@ msgstr ""
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "נוסף."
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
|
||||||
msgid "That role is already a selfrole."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: 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
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "הוסר."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -271,7 +279,7 @@ msgstr ""
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hindi\n"
|
"Language-Team: Hindi\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -213,49 +213,57 @@ msgstr ""
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -271,7 +279,7 @@ msgstr ""
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Hungarian\n"
|
"Language-Team: Hungarian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -213,49 +213,57 @@ msgstr ""
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -271,7 +279,7 @@ msgstr ""
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Indonesian\n"
|
"Language-Team: Indonesian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -245,55 +245,57 @@ msgstr "Kelola Roles diri sendiri."
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" Tambahkan role ke daftar role diri sendiri yang tersedia.\n\n"
|
|
||||||
" NOTE: Peran peka huruf besar / kecil!\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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."
|
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:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "Ditambahkan."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "Role itu sudah menjadi role diri sendiri."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" Tambahkan role ke daftar role diri sendiri yang tersedia.\n\n"
|
|
||||||
" NOTE: Role peka huruf besar / kecil!\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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."
|
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:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "Dihapus."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Kunci bot ke servernya saat ini saja."
|
msgstr "Kunci bot ke servernya saat ini saja."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "Bot tidak lagi terkunci server."
|
msgstr "Bot tidak lagi terkunci server."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "Bot sekarang terkunci server."
|
msgstr "Bot sekarang terkunci server."
|
||||||
|
|
||||||
@@ -309,7 +311,7 @@ msgstr "Saya tidak dapat mengumumkan ke server berikut: "
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "Cog Admin belum/tidak dimuat."
|
msgstr "Cog Admin belum/tidak dimuat."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "Role yang diberikan bukan role diri sendiri yang valid."
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Italian\n"
|
"Language-Team: Italian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -243,53 +243,57 @@ msgstr "Gestisci i ruoli assegnabili dall'utente."
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
"Aggiungi un ruolo alla lista dei ruoli assegnabili dall'utente.\n\n"
|
|
||||||
"NOTA: Il ruolo è caso sensitivo! "
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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."
|
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:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "Aggiunto."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "Quel ruolo è già un ruolo assegnabile dall'utente."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
"Rimuovi un ruolo dalla lista dei ruoli assegnabili dall'utente.\n\n"
|
|
||||||
"NOTA: Il ruolo è caso sensitivo! "
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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."
|
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:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "Rimosso."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Blocca un bot ai suoi server attuali."
|
msgstr "Blocca un bot ai suoi server attuali."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "Il bot non è più bloccato ai server."
|
msgstr "Il bot non è più bloccato ai server."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "Il bot è adesso bloccato ai server."
|
msgstr "Il bot è adesso bloccato ai server."
|
||||||
|
|
||||||
@@ -305,7 +309,7 @@ msgstr "Non ho potuto annunciare ai seguenti server: "
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "Il cog Admin non è caricato."
|
msgstr "Il cog Admin non è caricato."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "Il ruolo fornito non è un ruolo assegnabile dall'utente valido."
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Japanese\n"
|
"Language-Team: Japanese\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -213,52 +213,57 @@ msgstr ""
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "追加されました"
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "その役割はすでに自己役割v"
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" 使用可能な自己役割のリストから役割を削除します。\n\n"
|
|
||||||
" 注:役割では大文字と小文字が区別されます!\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "削除されました"
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Botを現在のサーバーにのみロックします。"
|
msgstr "Botを現在のサーバーにのみロックします。"
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "Botはもうサーバーロックされていません。"
|
msgstr "Botはもうサーバーロックされていません。"
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "Botはサーバーロックされました。"
|
msgstr "Botはサーバーロックされました。"
|
||||||
|
|
||||||
@@ -274,7 +279,7 @@ msgstr "以下のサーバーに通知できませんでした: "
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "管理者コグがロードされていません。"
|
msgstr "管理者コグがロードされていません。"
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "与えられたロールは有効な自己ロールではありません。"
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Korean\n"
|
"Language-Team: Korean\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -17,60 +17,60 @@ msgstr ""
|
|||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:18
|
#: redbot/cogs/admin/admin.py:18
|
||||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
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
|
#: 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."
|
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 ""
|
msgstr "{role.name} 역할을 {member.display_name}님에게 지급할 수 없었어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:29
|
#: 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."
|
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 ""
|
msgstr "{role.name} 역할을 {member.display_name}님에게서 뺏을 수 없었어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:35
|
#: 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."
|
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||||
msgstr ""
|
msgstr "{role.name} 역할을 수정할 수 없었어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:41
|
#: 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."
|
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 ""
|
msgstr "당신은 {role.name} 역할을 {member.display_name}님에게 부여할 수 없어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:47
|
#: 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."
|
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 ""
|
msgstr "당신은 {role.name} 역할을 {member.display_name}님에게서 뺏을 수 없어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:53
|
#: 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."
|
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 ""
|
msgstr "당신은 {role.name} 역할을 수정할 수 없어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:59
|
#: redbot/cogs/admin/admin.py:59
|
||||||
msgid "I need the \"Manage Roles\" permission to do that."
|
msgid "I need the \"Manage Roles\" permission to do that."
|
||||||
msgstr ""
|
msgstr "이 작업을 수행하려면 \"역할 관리\" 권한이 필요해요."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:61
|
#: 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."
|
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||||
msgstr ""
|
msgstr "이미 공지하고 있어요. 다른 공지를 보내고 싶다면 `{prefix}announce cancel`을 사용해주세요."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:71
|
#: redbot/cogs/admin/admin.py:71
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "A collection of server administration utilities."
|
msgid "A collection of server administration utilities."
|
||||||
msgstr ""
|
msgstr "서버 관리를 위한 기능 모음"
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:164
|
#: redbot/cogs/admin/admin.py:164
|
||||||
msgid "{member.display_name} already has the role {role.name}."
|
msgid "{member.display_name} already has the role {role.name}."
|
||||||
msgstr ""
|
msgstr "{member.display_name}님은 이미 {role.name} 역할을 가지고 있어요."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:184
|
#: redbot/cogs/admin/admin.py:184
|
||||||
msgid "I successfully added {role.name} to {member.display_name}"
|
msgid "I successfully added {role.name} to {member.display_name}"
|
||||||
msgstr ""
|
msgstr "{member.display_name}님에게 {role.name} 역할을 부여했어요."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:194
|
#: redbot/cogs/admin/admin.py:194
|
||||||
msgid "{member.display_name} does not have the role {role.name}."
|
msgid "{member.display_name} does not have the role {role.name}."
|
||||||
msgstr ""
|
msgstr "{member.display_name}님은 {role.name} 역할을 가지고 있지 않아요."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:214
|
#: redbot/cogs/admin/admin.py:214
|
||||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||||
msgstr ""
|
msgstr "{member.display_name}님에게서 {role.name} 역할을 삭제했어요."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:225
|
#: redbot/cogs/admin/admin.py:225
|
||||||
#, docstring
|
#, docstring
|
||||||
@@ -79,7 +79,11 @@ msgid "\n"
|
|||||||
" Use double quotes if the role contains spaces.\n"
|
" Use double quotes if the role contains spaces.\n"
|
||||||
" If user is left blank it defaults to the author of the command.\n"
|
" If user is left blank it defaults to the author of the command.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr "\n"
|
||||||
|
" 유저에게 역할을 추가해요.\n\n"
|
||||||
|
" 역할 이름에 띄어쓰기가 있으면 큰따옴표를 사용해주세요.\n"
|
||||||
|
" 유저를 지정하지 않으면 명령어 실행자에게 역할을 지급해요.\n"
|
||||||
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:241
|
#: redbot/cogs/admin/admin.py:241
|
||||||
#, docstring
|
#, docstring
|
||||||
@@ -88,7 +92,11 @@ msgid "\n"
|
|||||||
" Use double quotes if the role contains spaces.\n"
|
" Use double quotes if the role contains spaces.\n"
|
||||||
" If user is left blank it defaults to the author of the command.\n"
|
" If user is left blank it defaults to the author of the command.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr "\n"
|
||||||
|
" 유저에게서 역할을 삭제해요.\n\n"
|
||||||
|
" 역할 이름에 띄어쓰기가 있으면 큰따옴표를 사용해주세요.\n"
|
||||||
|
" 유저를 지정하지 않으면 명령어 실행자에게서 역할을 뺏어요.\n"
|
||||||
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:255
|
#: redbot/cogs/admin/admin.py:255
|
||||||
#, docstring
|
#, docstring
|
||||||
@@ -213,49 +221,57 @@ msgstr ""
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "추가됐어요."
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
|
||||||
msgid "That role is already a selfrole."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: 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
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "제거됐어요."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -271,7 +287,7 @@ msgstr "다음과 같은 서버에 알릴 수 없어요. : "
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "관리자 cog가 로드되지 않았어요."
|
msgstr "관리자 cog가 로드되지 않았어요."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Norwegian Bokmal\n"
|
"Language-Team: Norwegian Bokmal\n"
|
||||||
"MIME-Version: 1.0\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
|
#: redbot/cogs/admin/admin.py:59
|
||||||
msgid "I need the \"Manage Roles\" permission to do that."
|
msgid "I need the \"Manage Roles\" permission to do that."
|
||||||
msgstr ""
|
msgstr "Jeg trenger tillatelsen \"Administrer roller\" for å gjøre dette."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:61
|
#: 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."
|
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||||
@@ -255,55 +255,63 @@ msgstr "Behandle selvroller."
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr "\n"
|
||||||
"Legg til en rolle i listen over tilgjengelige selvroller.\n\n"
|
" Legg til en rolle, eller et utvalg av roller, til listen over tilgjengelige selvroller.\n\n"
|
||||||
"MERKNAD: Rollen er store og små bokstaver!\n"
|
" MERK: Rollen skilles mellom store og små bokstaver!\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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."
|
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:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "Lagt til."
|
msgstr "Rollen \"{role.name}\" er allerede en selv rolle."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "Den rollen er allerede en selvrolle."
|
msgstr "La til {count} selvroller."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr "Lagt til 1 selvrolle."
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr "\n"
|
||||||
"Fjern en rolle fra listen over tilgjengelige selvroller.\n\n"
|
" Fjern en rolle, eller et utvalg av roller, fra listen over tilgjengelige selvroller.\n\n"
|
||||||
"MERKNAD: Rollen er store og små bokstaver!\n"
|
" MERK: Rollen skille mellom store og små bokstaver!\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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."
|
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:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "Fjernet."
|
msgstr "Fjernet {count} selvroller."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr "Fjernet 1 selvrolle."
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Lås bare en bot til sine nåværende servere."
|
msgstr "Lås bare en bot til sine nåværende servere."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "Bot er ikke lenger serverlåst."
|
msgstr "Bot er ikke lenger serverlåst."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "Bot er nå serverlåst."
|
msgstr "Bot er nå serverlåst."
|
||||||
|
|
||||||
@@ -319,7 +327,7 @@ msgstr "Jeg kunne ikke kunngjøre følgende servere: "
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "Admin cog er ikke lastet."
|
msgstr "Admin cog er ikke lastet."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "Den oppgitte rollen er ikke en gyldig selvrolle."
|
msgstr "Rollen \"{role_name}\" er ikke en gyldig selvrolle."
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Dutch\n"
|
"Language-Team: Dutch\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -248,55 +248,57 @@ msgstr "Beheer zelfrollen."
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" Voeg een rol toe aan de lijst van beschikbare zelfrollen.\n\n"
|
|
||||||
" Let op: hoofdlettergevoelig!\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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."
|
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:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "Toegevoegd."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "Die rol is al een zelfrol."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" Verwijder een rol van de lijst van beschikbare zelfrollen.\n\n"
|
|
||||||
" OPMERKING: De rol is hoofdlettergevoelig!\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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."
|
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:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "Verwijderd."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Vergrendel de bot voor alleen deze server."
|
msgstr "Vergrendel de bot voor alleen deze server."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "De bot is niet langer vergrendeld."
|
msgstr "De bot is niet langer vergrendeld."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "De bot is vergrendeld."
|
msgstr "De bot is vergrendeld."
|
||||||
|
|
||||||
@@ -312,7 +314,7 @@ msgstr "Ik kon de volgende servers niet aankondigen: "
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "De admin cog is niet geladen."
|
msgstr "De admin cog is niet geladen."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "De ingevulde rol is geen beschikbare selfrole."
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Polish\n"
|
"Language-Team: Polish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -248,55 +248,57 @@ msgstr "Zarządzaj rolami do samodzielnego przypisania."
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" Dodaje rolę do listy dostępnych roli do samodzielnego przypisania.\n\n"
|
|
||||||
" UWAGA: Wielkość liter ma znaczenie!\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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."
|
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:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "Dodano."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "Ta rola jest już rolą do samodzielnego przypisania."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" Usuwa rolę z listy roli do samodzielnego przypisania.\n\n"
|
|
||||||
" UWAGA: Wielkość liter ma znaczenie!\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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."
|
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:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "Usunięto."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Ogranicz bota wyłącznie do obecnych serwerów."
|
msgstr "Ogranicz bota wyłącznie do obecnych serwerów."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "Bot nie jest już ograniczony do obecnych serwerów."
|
msgstr "Bot nie jest już ograniczony do obecnych serwerów."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "Bot jest teraz ograniczony do obecnych serwerów."
|
msgstr "Bot jest teraz ograniczony do obecnych serwerów."
|
||||||
|
|
||||||
@@ -312,7 +314,7 @@ msgstr "Nie mogłem/am ogłosić się na następujących serwerach: "
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "Moduł Admin nie jest załadowany."
|
msgstr "Moduł Admin nie jest załadowany."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "Podana rola nie jest poprawną rolą samodzielnego przypisania."
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Portuguese, Brazilian\n"
|
"Language-Team: Portuguese, Brazilian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -17,7 +17,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:18
|
#: redbot/cogs/admin/admin.py:18
|
||||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
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. Seu comando falhou em ser completado com sucesso."
|
msgstr "Eu tentei fazer algo que o Discord me negou as permissões necessárias. Seu comando falhou em ser completado com sucesso."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:23
|
#: 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."
|
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
|
#: redbot/cogs/admin/admin.py:59
|
||||||
msgid "I need the \"Manage Roles\" permission to do that."
|
msgid "I need the \"Manage Roles\" permission to do that."
|
||||||
msgstr ""
|
msgstr "Eu preciso da permissão \"Gerenciar Funções\" para fazer isso."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:61
|
#: 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."
|
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||||
@@ -176,7 +176,10 @@ msgid "\n"
|
|||||||
" Change the channel where the bot will send announcements.\n\n"
|
" Change the channel where the bot will send announcements.\n\n"
|
||||||
" If channel is left blank it defaults to the current channel.\n"
|
" If channel is left blank it defaults to the current channel.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
||||||
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:368
|
#: redbot/cogs/admin/admin.py:368
|
||||||
msgid "The announcement channel has been set to {channel.mention}"
|
msgid "The announcement channel has been set to {channel.mention}"
|
||||||
@@ -185,7 +188,7 @@ msgstr "O canal de anúncios foi definido como {channel.mention}"
|
|||||||
#: redbot/cogs/admin/admin.py:373
|
#: redbot/cogs/admin/admin.py:373
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Unsets the channel for announcements."
|
msgid "Unsets the channel for announcements."
|
||||||
msgstr ""
|
msgstr "Desativa o canal para anúncios."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:398
|
#: redbot/cogs/admin/admin.py:398
|
||||||
#, docstring
|
#, docstring
|
||||||
@@ -194,7 +197,11 @@ msgid "\n"
|
|||||||
" Server admins must have configured the role as user settable.\n"
|
" Server admins must have configured the role as user settable.\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
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"
|
||||||
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:411
|
#: redbot/cogs/admin/admin.py:411
|
||||||
#, docstring
|
#, docstring
|
||||||
@@ -245,55 +252,63 @@ msgstr "Gerenciar cargos autoatribuíveis."
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr "\n"
|
||||||
" Adiciona um cargo à lista de cargos autoatribuíveis.\n\n"
|
" Adiciona um cargo à lista de cargos autoatribuíveis.\n\n"
|
||||||
" NOTA: o nome do cargo diferencia entre maiúsculas e minúsculas!\n"
|
" NOTA: o nome do cargo é sensivel á letras maiúsculas e minúsculas!\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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."
|
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:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "Adicionado."
|
msgstr "O cargo \"{role.name}\" já é um cargo auto atribuível."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "Este cargo já é autoatribuível."
|
msgstr "Foram adicionados {count} cargos auto atribuíveis."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr "Adicionado um cargo auto atribuível."
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr "\n"
|
||||||
" Remove um cargo da lista de cargos autoatribuíveis.\n\n"
|
" Remove um cargo, ou um conjunto de cargos, da lista de cargos autoatribuíveis disponíveis.\n\n"
|
||||||
" NOTA: o nome do cargo diferencia entre maiúsculas e minúsculas!\n"
|
" NOTA: o nome do cargo é sensível á letras maiúsculas e minúsculas!\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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."
|
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:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "Removido."
|
msgstr "Foram removidos {count} cargos auto atribuíveis."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr "1 cargo autoatribuivel foi removido."
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Restringe o bot somente aos servidores atuais."
|
msgstr "Restringe o bot somente aos servidores atuais."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "O bot não está mais restrito aos servidores atuais."
|
msgstr "O bot não está mais restrito aos servidores atuais."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "O está restrito aos servidores atuais."
|
msgstr "O está restrito aos servidores atuais."
|
||||||
|
|
||||||
@@ -309,7 +324,7 @@ msgstr "Não pude anunciar nos seguintes servidores: "
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "O cog 'Admin' não está carregado."
|
msgstr "O cog 'Admin' não está carregado."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "O cargo fornecido não é um cargo autoatribuível válido."
|
msgstr "O cargo \"{role_name}\" não é um cargo autoatribuivel valido."
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Portuguese\n"
|
"Language-Team: Portuguese\n"
|
||||||
"MIME-Version: 1.0\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
|
#: 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."
|
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||||
msgstr ""
|
msgstr "Não posso editar {role.name} porque esse cargo é igual ou maior à minha hierarquia no Discord."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:41
|
#: 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."
|
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 ""
|
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."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:47
|
#: 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."
|
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,49 +213,57 @@ msgstr ""
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Bloquear o bot aos servidores atuais."
|
msgstr "Bloquear o bot aos servidores atuais."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "O bot já não está bloqueado aos servidores atuais."
|
msgstr "O bot já não está bloqueado aos servidores atuais."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "O bot está agora bloqueado aos servidores atuais."
|
msgstr "O bot está agora bloqueado aos servidores atuais."
|
||||||
|
|
||||||
@@ -271,7 +279,7 @@ msgstr ""
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "O cog 'Admin' não está carregado."
|
msgstr "O cog 'Admin' não está carregado."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "O cargo indicado não é um cargo definível válido."
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Romanian\n"
|
"Language-Team: Romanian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -213,49 +213,57 @@ msgstr ""
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -271,7 +279,7 @@ msgstr ""
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Russian\n"
|
"Language-Team: Russian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -21,15 +21,15 @@ msgstr "Я попыталась сделать что-то, в чем Discord о
|
|||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:23
|
#: 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."
|
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
|
#: 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."
|
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
|
#: 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."
|
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
|
#: 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."
|
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
|
#: 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."
|
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
|
#: redbot/cogs/admin/admin.py:59
|
||||||
msgid "I need the \"Manage Roles\" permission to do that."
|
msgid "I need the \"Manage Roles\" permission to do that."
|
||||||
msgstr ""
|
msgstr "Мне нужно управлять правами ролей, чтобы сделать это."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:61
|
#: 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."
|
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"
|
msgstr "\n"
|
||||||
" Добавить роль пользователю.\n\n"
|
" Добавить роль пользователю.\n\n"
|
||||||
" Используйте двойные кавычки, если роль содержит пробелы.\n"
|
" Используйте двойные кавычки, если роль содержит пробелы.\n"
|
||||||
" Если пользователь не указан, по умолчанию используется автор команды.\n"
|
" Если пользователь остался пустым, он по умолчанию используется автором команды.\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:241
|
#: 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"
|
" If user is left blank it defaults to the author of the command.\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr "\n"
|
||||||
" Удалить роль у пользователя.\n\n"
|
" Удалить роль от пользователя.\n\n"
|
||||||
" Используйте двойные кавычки, если роль содержит пробелы.\n"
|
" Используйте двойные кавычки, если роль содержит пробелы.\n"
|
||||||
" Если пользователь не указан, по умолчанию используется автор команды.\n"
|
" Если пользователь остался пустым, он по умолчанию используется автором команды.\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:255
|
#: redbot/cogs/admin/admin.py:255
|
||||||
@@ -118,10 +118,10 @@ msgstr "\n"
|
|||||||
" Изменить цвет роли.\n\n"
|
" Изменить цвет роли.\n\n"
|
||||||
" Используйте двойные кавычки, если роль содержит пробелы.\n"
|
" Используйте двойные кавычки, если роль содержит пробелы.\n"
|
||||||
" Цвет должен быть в шестнадцатеричном формате.\n"
|
" Цвет должен быть в шестнадцатеричном формате.\n"
|
||||||
" [Онлайн-палитра цветов](http://www.w3schools.com/colors/colors_picker.asp)\n\n"
|
" [Онлайн выбор цвета](http://www.w3schools. om/colors/colors_picker.sp)\n\n"
|
||||||
" Примеры:\n"
|
" Примеры:\n"
|
||||||
" `[p]editrole colour \"The Transistor\" #ff0000`\n"
|
" `[p]edit role color \"The Transistor\" #ff00`\n"
|
||||||
" `[p]editrole colour Test #ff9900`\n"
|
" `[p]edit role color--ur Test #ff9900`\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||||
@@ -139,7 +139,7 @@ msgid "\n"
|
|||||||
msgstr "\n"
|
msgstr "\n"
|
||||||
" Изменить название роли.\n\n"
|
" Изменить название роли.\n\n"
|
||||||
" Используйте двойные кавычки, если роль или имя содержат пробелы.\n\n"
|
" Используйте двойные кавычки, если роль или имя содержат пробелы.\n\n"
|
||||||
" Примеры:\n"
|
" Пример:\n"
|
||||||
" `[p]edit role name \"The Transistor\" Test`\n"
|
" `[p]edit role name \"The Transistor\" Test`\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
@@ -177,8 +177,8 @@ msgid "\n"
|
|||||||
" If channel is left blank it defaults to the current channel.\n"
|
" If channel is left blank it defaults to the current channel.\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr "\n"
|
||||||
" Изменение канала, в который бот будет отправлять объявления.\n\n"
|
" Измените канал, где бот будет отправлять объявления.\n\n"
|
||||||
" Если оставить поле пустым, то по умолчанию будет использоваться текущий канал.\n"
|
" Если канал оставлен пустым, он по умолчанию используется в текущем канале.\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:368
|
#: redbot/cogs/admin/admin.py:368
|
||||||
@@ -198,9 +198,9 @@ msgid "\n"
|
|||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr "\n"
|
||||||
" Удалить свою роль у себя.\n\n"
|
"Добавить себе роль.\n\n"
|
||||||
" Администраторы сервера должны настроить роль как устанавливаемую пользователем.\n"
|
" Администраторы сервера должны настроить роль как настраиваемую пользователем.\n"
|
||||||
" ПРИМЕЧАНИЕ: Роль чувствительна к размерчикам!\n"
|
" ПРИМЕЧАНИЕ: Роль чувствительна к регистру!\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:411
|
#: redbot/cogs/admin/admin.py:411
|
||||||
@@ -211,8 +211,8 @@ msgid "\n"
|
|||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr "\n"
|
||||||
" Добавить собственную роль себе.\n\n"
|
" Добавьте себе роль себя.\n\n"
|
||||||
" Администраторы сервера должны настроить роль как устанавливаемую пользователем.\n"
|
" Администраторы сервера должны настроить роль в качестве пользовательской установки.\n"
|
||||||
" ПРИМЕЧАНИЕ: Роль чувствительна к регистру!\n"
|
" ПРИМЕЧАНИЕ: Роль чувствительна к регистру!\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
@@ -235,13 +235,13 @@ msgid "\n"
|
|||||||
" Lists all available selfroles.\n"
|
" Lists all available selfroles.\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr "\n"
|
||||||
" Списки всех доступных своих ролей.\n"
|
" Список всех доступных ролей.\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:443
|
#: redbot/cogs/admin/admin.py:443
|
||||||
msgid "Available Selfroles:\n"
|
msgid "Available Selfroles:\n"
|
||||||
"{selfroles}"
|
"{selfroles}"
|
||||||
msgstr "Доступные собственные роли:\n"
|
msgstr "Доступные роли:\n"
|
||||||
"{selfroles}"
|
"{selfroles}"
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:449
|
#: redbot/cogs/admin/admin.py:449
|
||||||
@@ -252,55 +252,63 @@ msgstr "Управление своими ролями."
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr "\n"
|
||||||
" Добавить роль в список доступных своих ролей.\n\n"
|
" Добавьте роль или выбор ролей в список доступных ролей.\n\n"
|
||||||
" ПРИМЕЧАНИЕ: Роль чувствительна к регистру!\n"
|
" ПРИМЕЧАНИЕ: Роль чувствительна к регистру!\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "Добавлено."
|
msgstr "Роль \"{role.name}\" уже является вашей."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "У вас уже имеется эта роль."
|
msgstr "Добавлено {count} ролей."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr "Роль добавлена."
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr "\n"
|
||||||
" Удалить роль из списка доступных собственных ролей.\n\n"
|
" Удалить роль или выбор ролей из списка доступных ролей.\n\n"
|
||||||
" ПРИМЕЧАНИЕ: Роль чувствительна к регистру!\n"
|
" ПРИМЕЧАНИЕ: Роль чувствительна к регистру!\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: 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:491
|
|
||||||
msgid "Removed."
|
|
||||||
msgstr "Удалено."
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:496
|
||||||
|
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 "Удалено {count} ролей."
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr "Убрана 1 роль."
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Зафиксировать бота только на его текущих серверах."
|
msgstr "Зафиксировать бота только на его текущих серверах."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "Бот больше не зафиксирован на сервере."
|
msgstr "Бот больше не зафиксирован на сервере."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "Бот теперь зафиксирован на сервере."
|
msgstr "Бот теперь зафиксирован на сервере."
|
||||||
|
|
||||||
@@ -310,13 +318,13 @@ msgstr "Я не могу сделать объявление на следующ
|
|||||||
|
|
||||||
#: redbot/cogs/admin/announcer.py:70
|
#: redbot/cogs/admin/announcer.py:70
|
||||||
msgid "I could not announce to the following servers: "
|
msgid "I could not announce to the following servers: "
|
||||||
msgstr "Я не могу объявить на следующих серверах: "
|
msgstr "Я не могу сделать объявление на следующем сервере: "
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:12
|
#: redbot/cogs/admin/converters.py:12
|
||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "Модуль Admin не загружен."
|
msgstr "Модуль Admin не загружен."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "Предоставленная роль не является допустимой ролью."
|
msgstr "Роль \"{role_name}\" не является допустимой ролью."
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Slovak\n"
|
"Language-Team: Slovak\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -253,55 +253,57 @@ msgstr "Spravovať self-role."
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" 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:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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."
|
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:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "Pridané."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "Táto rola je už self-rola."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" 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:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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."
|
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:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "Odstránené."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Uzamkne bota iba na jeho aktuálne servery."
|
msgstr "Uzamkne bota iba na jeho aktuálne servery."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "Bot už nie je uzamknutý serverom."
|
msgstr "Bot už nie je uzamknutý serverom."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "Bot je teraz uzamknutý serverom."
|
msgstr "Bot je teraz uzamknutý serverom."
|
||||||
|
|
||||||
@@ -317,7 +319,7 @@ msgstr "Nemôžem oznámiť nasledujúcim serverom: "
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "Admin cog nie je načítaný."
|
msgstr "Admin cog nie je načítaný."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "Daná rola nie je platná self-role."
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Slovenian\n"
|
"Language-Team: Slovenian\n"
|
||||||
"MIME-Version: 1.0\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
|
#: redbot/cogs/admin/admin.py:59
|
||||||
msgid "I need the \"Manage Roles\" permission to do that."
|
msgid "I need the \"Manage Roles\" permission to do that."
|
||||||
msgstr ""
|
msgstr "Potrebujem dovoljenje \"Manage Roles\" za izvršitev tega ukaza."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:61
|
#: 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."
|
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||||
@@ -252,55 +252,57 @@ msgstr "Upravlja lastne role."
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" Doda rolo na seznam razpoložljivih lastnih rol.\n\n"
|
|
||||||
" POMNI: Rola razlikuje med velikimi in malimi črkami!\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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."
|
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:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "Dodano."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "Ta rola je že lastna rola."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr ""
|
||||||
" Odstrani rolo iz seznama razpoložljivih lastnih rol.\n\n"
|
|
||||||
" POMNI: Rola razlikuje med velikimi in malimi črkami!\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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."
|
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:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "Odstranjeno."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Zaklene bota na trenutne strežnike."
|
msgstr "Zaklene bota na trenutne strežnike."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "Bot je zopet odklenjen za vse strežnike."
|
msgstr "Bot je zopet odklenjen za vse strežnike."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "Bot je trenutno zaklenjen za vse strežnike."
|
msgstr "Bot je trenutno zaklenjen za vse strežnike."
|
||||||
|
|
||||||
@@ -316,7 +318,7 @@ msgstr "Napovednika ni bilo možno izvesti v teh strežnikih: "
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "Modul Admin ni naložen."
|
msgstr "Modul Admin ni naložen."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "Naveden rola ni veljavna lastna rola."
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Serbian (Latin)\n"
|
"Language-Team: Serbian (Latin)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -213,49 +213,57 @@ msgstr ""
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -271,7 +279,7 @@ msgstr ""
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Serbian (Cyrillic)\n"
|
"Language-Team: Serbian (Cyrillic)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -213,49 +213,57 @@ msgstr ""
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -271,7 +279,7 @@ msgstr ""
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Swedish\n"
|
"Language-Team: Swedish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -220,49 +220,57 @@ msgstr "Hantera självroller."
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "Tillagd."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "Den rollen är redan en självroll."
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Lås en bot till sina nuvarande servrar."
|
msgstr "Lås en bot till sina nuvarande servrar."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "Botten är inte längre serverlåst."
|
msgstr "Botten är inte längre serverlåst."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "Botten är nu serverlåst."
|
msgstr "Botten är nu serverlåst."
|
||||||
|
|
||||||
@@ -278,7 +286,7 @@ msgstr ""
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "Admin cog är inte laddad."
|
msgstr "Admin cog är inte laddad."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "Den angivna rollen är inte en giltig självroll."
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Turkish\n"
|
"Language-Team: Turkish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -250,55 +250,63 @@ msgstr "Kişisel rolleri düzenle."
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr "\n"
|
||||||
" Kullanılabilir selfroleler listesine bir rol ekle.\n\n"
|
" Kullanılabilir selfroleler listesine bir veya daha fazla rol ekle.\n\n"
|
||||||
" NOT: Rol büyük küçük harf duyarlıdır!\n"
|
" NOT: Rol büyük küçük harf duyarlıdır!\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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."
|
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:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "Eklendi."
|
msgstr "\"{role.name}\" zaten bir selfrole."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr "Bu rol zaten bir kişisel rol."
|
msgstr "{count} selfrole eklendi."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr "1 selfrole eklendi."
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr "\n"
|
msgstr "\n"
|
||||||
" Kullanılabilir selfroleler listesinden rol siler.\n\n"
|
" Kullanılabilir selfroleler listesinden bir veya daha fazla rol çıkar.\n\n"
|
||||||
" NOT: Rol büyük küçük harf duyarlıdır!\n"
|
" NOT: Rol büyük küçük harf duyarlıdır!\n"
|
||||||
" "
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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."
|
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:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "Kaldırıldı."
|
msgstr "{count} selfrole kaldırıldı."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr "1 selfrole kaldırıldı."
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Botu şu an bulunduğu sunucularda kilitler."
|
msgstr "Botu şu an bulunduğu sunucularda kilitler."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr "Botun sunucu kilidi aktif değil."
|
msgstr "Botun sunucu kilidi aktif değil."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr "Botun sunucu kilidi aktif."
|
msgstr "Botun sunucu kilidi aktif."
|
||||||
|
|
||||||
@@ -314,7 +322,7 @@ msgstr "Bu sunuculara duyuru yapamıyorum: "
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr "The Admin eklentisi yüklenmedi."
|
msgstr "The Admin eklentisi yüklenmedi."
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr "Girilen kişisel rol geçerli bir kişisel rol değil."
|
msgstr "\"{role_name}\" geçerli bir selfrole değil."
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Ukrainian\n"
|
"Language-Team: Ukrainian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -213,49 +213,57 @@ msgstr ""
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -271,7 +279,7 @@ msgstr ""
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Vietnamese\n"
|
"Language-Team: Vietnamese\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -216,49 +216,57 @@ msgstr ""
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr "Khóa lệnh bot cho server hiện tại."
|
msgstr "Khóa lệnh bot cho server hiện tại."
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -274,7 +282,7 @@ msgstr ""
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Chinese Simplified\n"
|
"Language-Team: Chinese Simplified\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -17,23 +17,23 @@ msgstr ""
|
|||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:18
|
#: redbot/cogs/admin/admin.py:18
|
||||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
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
|
#: 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."
|
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} 应为这个role比我的最高的role高或者一样高"
|
msgstr "我不能将 {role.name} 给 {member.display_name} ,因为这个角色高于或等于我在Discord等级中的最高角色"
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:29
|
#: 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."
|
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} 应为这个role比我的最高的role高或者一样高"
|
msgstr "我不能将 {role.name} 从 {member.display_name} 中移除,因为这个角色高于或等于我在Discord等级中的最高角色"
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:35
|
#: 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."
|
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}应为这个role比我的最高的role高或者一样高"
|
msgstr "我不能编辑 {role.name} ,因为该角色高于或等于我在Discord等级中的最高角色"
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:41
|
#: 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."
|
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} 应为这个role比你的最高的role高或者一样高"
|
msgstr "我不能让你把 {role.name} 给 {member.display_name} ,因为这个角色高于或等于你在 Discord 等级中的最高角色"
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:47
|
#: 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."
|
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
|
#: redbot/cogs/admin/admin.py:255
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Edit role settings."
|
msgid "Edit role settings."
|
||||||
msgstr "改变角色设定"
|
msgstr "编辑角色设置"
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:262
|
#: redbot/cogs/admin/admin.py:262
|
||||||
#, docstring
|
#, docstring
|
||||||
@@ -138,7 +138,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:336
|
#: redbot/cogs/admin/admin.py:336
|
||||||
msgid "The announcement has begun."
|
msgid "The announcement has begun."
|
||||||
msgstr "我开始报告消息了"
|
msgstr "公告开始了"
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:343
|
#: redbot/cogs/admin/admin.py:343
|
||||||
#, docstring
|
#, docstring
|
||||||
@@ -147,11 +147,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:345
|
#: redbot/cogs/admin/admin.py:345
|
||||||
msgid "There is no currently running announcement."
|
msgid "There is no currently running announcement."
|
||||||
msgstr ""
|
msgstr "目前没有正在运行的公告"
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:348
|
#: redbot/cogs/admin/admin.py:348
|
||||||
msgid "The current announcement has been cancelled."
|
msgid "The current announcement has been cancelled."
|
||||||
msgstr ""
|
msgstr "目前公告已被取消"
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:354
|
#: redbot/cogs/admin/admin.py:354
|
||||||
#, docstring
|
#, docstring
|
||||||
@@ -164,16 +164,19 @@ msgid "\n"
|
|||||||
" Change the channel where the bot will send announcements.\n\n"
|
" Change the channel where the bot will send announcements.\n\n"
|
||||||
" If channel is left blank it defaults to the current channel.\n"
|
" If channel is left blank it defaults to the current channel.\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr "\n"
|
||||||
|
" 更改机器人发送公告的频道\n\n"
|
||||||
|
" 如果频道留空,则默认设置为当前频道\n"
|
||||||
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:368
|
#: redbot/cogs/admin/admin.py:368
|
||||||
msgid "The announcement channel has been set to {channel.mention}"
|
msgid "The announcement channel has been set to {channel.mention}"
|
||||||
msgstr ""
|
msgstr "公告频道已设置为 {channel.mention}"
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:373
|
#: redbot/cogs/admin/admin.py:373
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Unsets the channel for announcements."
|
msgid "Unsets the channel for announcements."
|
||||||
msgstr ""
|
msgstr "取消公告频道"
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:398
|
#: redbot/cogs/admin/admin.py:398
|
||||||
#, docstring
|
#, docstring
|
||||||
@@ -182,7 +185,11 @@ msgid "\n"
|
|||||||
" Server admins must have configured the role as user settable.\n"
|
" Server admins must have configured the role as user settable.\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr "\n"
|
||||||
|
" 添加或删除自己的角色\n\n"
|
||||||
|
" 服务器管理员必须配置角色为用户设置\n"
|
||||||
|
" 注意:角色是区分大小写的\n"
|
||||||
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:411
|
#: redbot/cogs/admin/admin.py:411
|
||||||
#, docstring
|
#, docstring
|
||||||
@@ -191,7 +198,11 @@ msgid "\n"
|
|||||||
" Server admins must have configured the role as user settable.\n"
|
" Server admins must have configured the role as user settable.\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr "\n"
|
||||||
|
" 为你自己添加一个自身角色\n\n"
|
||||||
|
" 服务器管理员必须配置角色为用户设置\n"
|
||||||
|
" 注意:角色是区分大小写的!\n"
|
||||||
|
" "
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:422
|
#: redbot/cogs/admin/admin.py:422
|
||||||
#, docstring
|
#, docstring
|
||||||
@@ -222,49 +233,57 @@ msgstr ""
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -280,7 +299,7 @@ msgstr ""
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Chinese Traditional, Hong Kong\n"
|
"Language-Team: Chinese Traditional, Hong Kong\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -213,49 +213,57 @@ msgstr ""
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
#: redbot/cogs/admin/admin.py:479
|
||||||
msgid "That role is already a selfrole."
|
msgid "Added {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: redbot/cogs/admin/admin.py:481
|
||||||
|
msgid "Added 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:487
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -271,7 +279,7 @@ msgstr ""
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-05-24 11:04+0000\n"
|
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Chinese Traditional\n"
|
"Language-Team: Chinese Traditional\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -45,7 +45,7 @@ msgstr "我無法讓你編輯 {role.name} 身分組,因為該身分組位階
|
|||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:59
|
#: redbot/cogs/admin/admin.py:59
|
||||||
msgid "I need the \"Manage Roles\" permission to do that."
|
msgid "I need the \"Manage Roles\" permission to do that."
|
||||||
msgstr ""
|
msgstr "我需要管理權限來完成。"
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:61
|
#: 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."
|
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||||
@@ -234,49 +234,57 @@ msgstr ""
|
|||||||
#: redbot/cogs/admin/admin.py:454
|
#: redbot/cogs/admin/admin.py:454
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Add a role to the list of available selfroles.\n\n"
|
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:461
|
#: redbot/cogs/admin/admin.py:463
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:469
|
#: redbot/cogs/admin/admin.py:473
|
||||||
msgid "Added."
|
msgid "The role \"{role.name}\" is already a selfrole."
|
||||||
msgstr "已增加"
|
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:472
|
|
||||||
msgid "That role is already a selfrole."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:476
|
#: 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
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "\n"
|
msgid "\n"
|
||||||
" Remove a role from the list of available selfroles.\n\n"
|
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||||
" NOTE: The role is case sensitive!\n"
|
" NOTE: The role is case sensitive!\n"
|
||||||
" "
|
" "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:483
|
#: redbot/cogs/admin/admin.py:496
|
||||||
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."
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:491
|
#: redbot/cogs/admin/admin.py:506
|
||||||
msgid "Removed."
|
msgid "Removed {count} selfroles."
|
||||||
msgstr "已移除。"
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:496
|
#: redbot/cogs/admin/admin.py:508
|
||||||
|
msgid "Removed 1 selfrole."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: redbot/cogs/admin/admin.py:515
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Lock a bot to its current servers only."
|
msgid "Lock a bot to its current servers only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:501
|
#: redbot/cogs/admin/admin.py:520
|
||||||
msgid "The bot is no longer serverlocked."
|
msgid "The bot is no longer serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/admin.py:503
|
#: redbot/cogs/admin/admin.py:522
|
||||||
msgid "The bot is now serverlocked."
|
msgid "The bot is now serverlocked."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -292,7 +300,7 @@ msgstr ""
|
|||||||
msgid "The Admin cog is not loaded."
|
msgid "The Admin cog is not loaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/admin/converters.py:20
|
#: redbot/cogs/admin/converters.py:21
|
||||||
msgid "The provided role is not a valid selfrole."
|
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ class _TrackingFormatter(Formatter):
|
|||||||
class Alias(commands.Cog):
|
class Alias(commands.Cog):
|
||||||
"""Create aliases for commands.
|
"""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)
|
can act as both a lambda (storing arguments for repeated use)
|
||||||
or as simply a shortcut to saying "x y z".
|
or as simply a shortcut to saying "x y z".
|
||||||
|
|
||||||
@@ -338,6 +338,75 @@ 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")
|
@alias.command(name="help")
|
||||||
async def _help_alias(self, ctx: commands.Context, alias_name: str):
|
async def _help_alias(self, ctx: commands.Context, alias_name: str):
|
||||||
"""Try to execute help for the base command of the alias."""
|
"""Try to execute help for the base command of the alias."""
|
||||||
|
|||||||
@@ -187,9 +187,10 @@ class AliasCache:
|
|||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
async def add_alias(
|
@staticmethod
|
||||||
self, ctx: commands.Context, alias_name: str, command: str, global_: bool = False
|
def format_command_for_alias(command: str) -> str:
|
||||||
) -> AliasEntry:
|
# This was present in add_alias previously
|
||||||
|
# Made this into a separate method so as to reuse the same code in edit_alias
|
||||||
indices = findall(r"{(\d*)}", command)
|
indices = findall(r"{(\d*)}", command)
|
||||||
if indices:
|
if indices:
|
||||||
try:
|
try:
|
||||||
@@ -206,6 +207,12 @@ class AliasCache:
|
|||||||
+ ", ".join(str(i + low) for i in gaps)
|
+ ", ".join(str(i + low) for i in gaps)
|
||||||
)
|
)
|
||||||
command = command.format(*(f"{{{i}}}" for i in range(-low, high + low + 1)))
|
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_:
|
if global_:
|
||||||
alias = AliasEntry(alias_name, command, ctx.author.id, None)
|
alias = AliasEntry(alias_name, command, ctx.author.id, None)
|
||||||
@@ -225,6 +232,32 @@ class AliasCache:
|
|||||||
|
|
||||||
return alias
|
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(
|
async def delete_alias(
|
||||||
self, ctx: commands.Context, alias_name: str, global_: bool = False
|
self, ctx: commands.Context, alias_name: str, global_: bool = False
|
||||||
) -> bool:
|
) -> bool:
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-02-11 12:29+0000\n"
|
"POT-Creation-Date: 2021-09-03 01:50+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Afrikaans\n"
|
"Language-Team: Afrikaans\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -18,7 +18,7 @@ msgstr ""
|
|||||||
#: redbot/cogs/alias/alias.py:35
|
#: redbot/cogs/alias/alias.py:35
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Create aliases for commands.\n\n"
|
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"
|
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||||
" When run, aliases will accept any additional arguments\n"
|
" When run, aliases will accept any additional arguments\n"
|
||||||
@@ -91,73 +91,99 @@ msgstr ""
|
|||||||
msgid "A new global alias with the trigger `{name}` has been created."
|
msgid "A new global alias with the trigger `{name}` has been created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:343
|
#: 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
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Try to execute help for the base command of the alias."
|
msgid "Try to execute help for the base command of the alias."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:348
|
#: redbot/cogs/alias/alias.py:417
|
||||||
msgid "No such alias exists."
|
msgid "No such alias exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:352
|
#: redbot/cogs/alias/alias.py:421
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Show what command the alias executes."
|
msgid "Show what command the alias executes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:357
|
#: redbot/cogs/alias/alias.py:426
|
||||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:362
|
#: redbot/cogs/alias/alias.py:431
|
||||||
msgid "There is no alias with the name `{name}`"
|
msgid "There is no alias with the name `{name}`"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:368
|
#: redbot/cogs/alias/alias.py:437
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing alias on this server."
|
msgid "Delete an existing alias on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:370 redbot/cogs/alias/alias.py:402
|
#: redbot/cogs/alias/alias.py:439 redbot/cogs/alias/alias.py:471
|
||||||
msgid "There are no aliases on this server."
|
msgid "There are no aliases on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:375 redbot/cogs/alias/alias.py:390
|
#: redbot/cogs/alias/alias.py:444 redbot/cogs/alias/alias.py:459
|
||||||
msgid "Alias with the name `{name}` was successfully deleted."
|
msgid "Alias with the name `{name}` was successfully deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:378 redbot/cogs/alias/alias.py:393
|
#: redbot/cogs/alias/alias.py:447 redbot/cogs/alias/alias.py:462
|
||||||
msgid "Alias with name `{name}` was not found."
|
msgid "Alias with name `{name}` was not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:383
|
#: redbot/cogs/alias/alias.py:452
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing global alias."
|
msgid "Delete an existing global alias."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:385
|
#: redbot/cogs/alias/alias.py:454
|
||||||
msgid "There are no global aliases on this bot."
|
msgid "There are no global aliases on this bot."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:399
|
#: redbot/cogs/alias/alias.py:468
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available aliases on this server."
|
msgid "List the available aliases on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:408
|
#: redbot/cogs/alias/alias.py:477
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available global aliases on this bot."
|
msgid "List the available global aliases on this bot."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:411
|
#: redbot/cogs/alias/alias.py:480
|
||||||
msgid "There are no global aliases."
|
msgid "There are no global aliases."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:198
|
#: redbot/cogs/alias/alias_entry.py:199
|
||||||
msgid "Arguments must be specified with a number."
|
msgid "Arguments must be specified with a number."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:205
|
#: redbot/cogs/alias/alias_entry.py:206
|
||||||
msgid "Arguments must be sequential. Missing arguments: "
|
msgid "Arguments must be sequential. Missing arguments: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-02-11 12:29+0000\n"
|
"POT-Creation-Date: 2021-09-03 01:50+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Arabic\n"
|
"Language-Team: Arabic\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -18,13 +18,13 @@ msgstr ""
|
|||||||
#: redbot/cogs/alias/alias.py:35
|
#: redbot/cogs/alias/alias.py:35
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Create aliases for commands.\n\n"
|
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"
|
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||||
" When run, aliases will accept any additional arguments\n"
|
" When run, aliases will accept any additional arguments\n"
|
||||||
" and append them to the stored alias.\n"
|
" and append them to the stored alias.\n"
|
||||||
" "
|
" "
|
||||||
msgstr "إنشاء أسماء مستعارة للأوامر. \\ n \\ n الأسماء المستعارة هي اختصارات أسماء بديلة للأوامر. يمكنهم \\ n العمل كحمل لامدا (تخزين الوسائط للاستخدام المتكرر) \\ n أو ببساطة اختصار للقول \\ \"xyz \". \\ n \\ n عند التشغيل ، ستقبل الأسماء المستعارة أي وسيطات إضافية \\ n وتضيفها إلى الاسم المستعار المخزن. \\ n"
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:203
|
#: redbot/cogs/alias/alias.py:203
|
||||||
msgid "Aliases:\n"
|
msgid "Aliases:\n"
|
||||||
@@ -91,73 +91,99 @@ msgstr "لقد حاولت إنشاء اسم مستعار عالمي جديد ب
|
|||||||
msgid "A new global alias with the trigger `{name}` has been created."
|
msgid "A new global alias with the trigger `{name}` has been created."
|
||||||
msgstr "تم إنشاء اسم مستعار عالمي جديد مع مشغل{name}`."
|
msgstr "تم إنشاء اسم مستعار عالمي جديد مع مشغل{name}`."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:343
|
#: 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
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Try to execute help for the base command of the alias."
|
msgid "Try to execute help for the base command of the alias."
|
||||||
msgstr "حاول تنفيذ المساعدة للقيادة الأساسية للإسم المستعار."
|
msgstr "حاول تنفيذ المساعدة للقيادة الأساسية للإسم المستعار."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:348
|
#: redbot/cogs/alias/alias.py:417
|
||||||
msgid "No such alias exists."
|
msgid "No such alias exists."
|
||||||
msgstr "لا يوجد مثل هذا المستخدم"
|
msgstr "لا يوجد مثل هذا المستخدم"
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:352
|
#: redbot/cogs/alias/alias.py:421
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Show what command the alias executes."
|
msgid "Show what command the alias executes."
|
||||||
msgstr "إظهار ما هو الأمر الذي ينفذه الاسم المستعار."
|
msgstr "إظهار ما هو الأمر الذي ينفذه الاسم المستعار."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:357
|
#: redbot/cogs/alias/alias.py:426
|
||||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||||
msgstr "`{alias_name}` الاسم المستعار سوف ينفذ الأمر `{command}`"
|
msgstr "`{alias_name}` الاسم المستعار سوف ينفذ الأمر `{command}`"
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:362
|
#: redbot/cogs/alias/alias.py:431
|
||||||
msgid "There is no alias with the name `{name}`"
|
msgid "There is no alias with the name `{name}`"
|
||||||
msgstr "لا يوجد اسم مستعار باسم `{name}`"
|
msgstr "لا يوجد اسم مستعار باسم `{name}`"
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:368
|
#: redbot/cogs/alias/alias.py:437
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing alias on this server."
|
msgid "Delete an existing alias on this server."
|
||||||
msgstr "حذف اسم مستعار موجود على هذا السيرفر."
|
msgstr "حذف اسم مستعار موجود على هذا السيرفر."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:370 redbot/cogs/alias/alias.py:402
|
#: redbot/cogs/alias/alias.py:439 redbot/cogs/alias/alias.py:471
|
||||||
msgid "There are no aliases on this server."
|
msgid "There are no aliases on this server."
|
||||||
msgstr "لا توجد أسماء مستعارة على هذا السيرفر."
|
msgstr "لا توجد أسماء مستعارة على هذا السيرفر."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:375 redbot/cogs/alias/alias.py:390
|
#: redbot/cogs/alias/alias.py:444 redbot/cogs/alias/alias.py:459
|
||||||
msgid "Alias with the name `{name}` was successfully deleted."
|
msgid "Alias with the name `{name}` was successfully deleted."
|
||||||
msgstr "تم حذف الاسم المستعار باسم `{name}` بنجاح."
|
msgstr "تم حذف الاسم المستعار باسم `{name}` بنجاح."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:378 redbot/cogs/alias/alias.py:393
|
#: redbot/cogs/alias/alias.py:447 redbot/cogs/alias/alias.py:462
|
||||||
msgid "Alias with name `{name}` was not found."
|
msgid "Alias with name `{name}` was not found."
|
||||||
msgstr "لم يتم العثور على الاسم المستعار `{name}`."
|
msgstr "لم يتم العثور على الاسم المستعار `{name}`."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:383
|
#: redbot/cogs/alias/alias.py:452
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing global alias."
|
msgid "Delete an existing global alias."
|
||||||
msgstr "يحذف اسم مستعار عالمي قائم."
|
msgstr "يحذف اسم مستعار عالمي قائم."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:385
|
#: redbot/cogs/alias/alias.py:454
|
||||||
msgid "There are no global aliases on this bot."
|
msgid "There are no global aliases on this bot."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:399
|
#: redbot/cogs/alias/alias.py:468
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available aliases on this server."
|
msgid "List the available aliases on this server."
|
||||||
msgstr "قائمة الأسماء المستعارة المتوفرة على هذا السيرفر."
|
msgstr "قائمة الأسماء المستعارة المتوفرة على هذا السيرفر."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:408
|
#: redbot/cogs/alias/alias.py:477
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available global aliases on this bot."
|
msgid "List the available global aliases on this bot."
|
||||||
msgstr "قائمة الأسماء المستعارة العامة المتاحة على هذا البوت."
|
msgstr "قائمة الأسماء المستعارة العامة المتاحة على هذا البوت."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:411
|
#: redbot/cogs/alias/alias.py:480
|
||||||
msgid "There are no global aliases."
|
msgid "There are no global aliases."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:198
|
#: redbot/cogs/alias/alias_entry.py:199
|
||||||
msgid "Arguments must be specified with a number."
|
msgid "Arguments must be specified with a number."
|
||||||
msgstr "يجب أن يتم تحديد الحجج برقم."
|
msgstr "يجب أن يتم تحديد الحجج برقم."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:205
|
#: redbot/cogs/alias/alias_entry.py:206
|
||||||
msgid "Arguments must be sequential. Missing arguments: "
|
msgid "Arguments must be sequential. Missing arguments: "
|
||||||
msgstr "يجب أن تكون الحجج متتابعة. الحجج المفقودة: "
|
msgstr "يجب أن تكون الحجج متتابعة. الحجج المفقودة: "
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-02-11 12:29+0000\n"
|
"POT-Creation-Date: 2021-09-03 01:50+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Bulgarian\n"
|
"Language-Team: Bulgarian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -18,7 +18,7 @@ msgstr ""
|
|||||||
#: redbot/cogs/alias/alias.py:35
|
#: redbot/cogs/alias/alias.py:35
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Create aliases for commands.\n\n"
|
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"
|
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||||
" When run, aliases will accept any additional arguments\n"
|
" When run, aliases will accept any additional arguments\n"
|
||||||
@@ -91,73 +91,99 @@ msgstr ""
|
|||||||
msgid "A new global alias with the trigger `{name}` has been created."
|
msgid "A new global alias with the trigger `{name}` has been created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:343
|
#: 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
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Try to execute help for the base command of the alias."
|
msgid "Try to execute help for the base command of the alias."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:348
|
#: redbot/cogs/alias/alias.py:417
|
||||||
msgid "No such alias exists."
|
msgid "No such alias exists."
|
||||||
msgstr "Този псевдоним не съществува."
|
msgstr "Този псевдоним не съществува."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:352
|
#: redbot/cogs/alias/alias.py:421
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Show what command the alias executes."
|
msgid "Show what command the alias executes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:357
|
#: redbot/cogs/alias/alias.py:426
|
||||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:362
|
#: redbot/cogs/alias/alias.py:431
|
||||||
msgid "There is no alias with the name `{name}`"
|
msgid "There is no alias with the name `{name}`"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:368
|
#: redbot/cogs/alias/alias.py:437
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing alias on this server."
|
msgid "Delete an existing alias on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:370 redbot/cogs/alias/alias.py:402
|
#: redbot/cogs/alias/alias.py:439 redbot/cogs/alias/alias.py:471
|
||||||
msgid "There are no aliases on this server."
|
msgid "There are no aliases on this server."
|
||||||
msgstr "Няма използвани псевдоними на този сървър."
|
msgstr "Няма използвани псевдоними на този сървър."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:375 redbot/cogs/alias/alias.py:390
|
#: redbot/cogs/alias/alias.py:444 redbot/cogs/alias/alias.py:459
|
||||||
msgid "Alias with the name `{name}` was successfully deleted."
|
msgid "Alias with the name `{name}` was successfully deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:378 redbot/cogs/alias/alias.py:393
|
#: redbot/cogs/alias/alias.py:447 redbot/cogs/alias/alias.py:462
|
||||||
msgid "Alias with name `{name}` was not found."
|
msgid "Alias with name `{name}` was not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:383
|
#: redbot/cogs/alias/alias.py:452
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing global alias."
|
msgid "Delete an existing global alias."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:385
|
#: redbot/cogs/alias/alias.py:454
|
||||||
msgid "There are no global aliases on this bot."
|
msgid "There are no global aliases on this bot."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:399
|
#: redbot/cogs/alias/alias.py:468
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available aliases on this server."
|
msgid "List the available aliases on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:408
|
#: redbot/cogs/alias/alias.py:477
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available global aliases on this bot."
|
msgid "List the available global aliases on this bot."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:411
|
#: redbot/cogs/alias/alias.py:480
|
||||||
msgid "There are no global aliases."
|
msgid "There are no global aliases."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:198
|
#: redbot/cogs/alias/alias_entry.py:199
|
||||||
msgid "Arguments must be specified with a number."
|
msgid "Arguments must be specified with a number."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:205
|
#: redbot/cogs/alias/alias_entry.py:206
|
||||||
msgid "Arguments must be sequential. Missing arguments: "
|
msgid "Arguments must be sequential. Missing arguments: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-02-11 12:29+0000\n"
|
"POT-Creation-Date: 2021-09-03 01:50+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Bosnian\n"
|
"Language-Team: Bosnian\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -18,7 +18,7 @@ msgstr ""
|
|||||||
#: redbot/cogs/alias/alias.py:35
|
#: redbot/cogs/alias/alias.py:35
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Create aliases for commands.\n\n"
|
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"
|
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||||
" When run, aliases will accept any additional arguments\n"
|
" When run, aliases will accept any additional arguments\n"
|
||||||
@@ -91,73 +91,99 @@ msgstr ""
|
|||||||
msgid "A new global alias with the trigger `{name}` has been created."
|
msgid "A new global alias with the trigger `{name}` has been created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:343
|
#: 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
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Try to execute help for the base command of the alias."
|
msgid "Try to execute help for the base command of the alias."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:348
|
#: redbot/cogs/alias/alias.py:417
|
||||||
msgid "No such alias exists."
|
msgid "No such alias exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:352
|
#: redbot/cogs/alias/alias.py:421
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Show what command the alias executes."
|
msgid "Show what command the alias executes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:357
|
#: redbot/cogs/alias/alias.py:426
|
||||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:362
|
#: redbot/cogs/alias/alias.py:431
|
||||||
msgid "There is no alias with the name `{name}`"
|
msgid "There is no alias with the name `{name}`"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:368
|
#: redbot/cogs/alias/alias.py:437
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing alias on this server."
|
msgid "Delete an existing alias on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:370 redbot/cogs/alias/alias.py:402
|
#: redbot/cogs/alias/alias.py:439 redbot/cogs/alias/alias.py:471
|
||||||
msgid "There are no aliases on this server."
|
msgid "There are no aliases on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:375 redbot/cogs/alias/alias.py:390
|
#: redbot/cogs/alias/alias.py:444 redbot/cogs/alias/alias.py:459
|
||||||
msgid "Alias with the name `{name}` was successfully deleted."
|
msgid "Alias with the name `{name}` was successfully deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:378 redbot/cogs/alias/alias.py:393
|
#: redbot/cogs/alias/alias.py:447 redbot/cogs/alias/alias.py:462
|
||||||
msgid "Alias with name `{name}` was not found."
|
msgid "Alias with name `{name}` was not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:383
|
#: redbot/cogs/alias/alias.py:452
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing global alias."
|
msgid "Delete an existing global alias."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:385
|
#: redbot/cogs/alias/alias.py:454
|
||||||
msgid "There are no global aliases on this bot."
|
msgid "There are no global aliases on this bot."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:399
|
#: redbot/cogs/alias/alias.py:468
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available aliases on this server."
|
msgid "List the available aliases on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:408
|
#: redbot/cogs/alias/alias.py:477
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available global aliases on this bot."
|
msgid "List the available global aliases on this bot."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:411
|
#: redbot/cogs/alias/alias.py:480
|
||||||
msgid "There are no global aliases."
|
msgid "There are no global aliases."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:198
|
#: redbot/cogs/alias/alias_entry.py:199
|
||||||
msgid "Arguments must be specified with a number."
|
msgid "Arguments must be specified with a number."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:205
|
#: redbot/cogs/alias/alias_entry.py:206
|
||||||
msgid "Arguments must be sequential. Missing arguments: "
|
msgid "Arguments must be sequential. Missing arguments: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-02-11 12:29+0000\n"
|
"POT-Creation-Date: 2021-09-03 01:50+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Catalan\n"
|
"Language-Team: Catalan\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -18,7 +18,7 @@ msgstr ""
|
|||||||
#: redbot/cogs/alias/alias.py:35
|
#: redbot/cogs/alias/alias.py:35
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Create aliases for commands.\n\n"
|
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"
|
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||||
" When run, aliases will accept any additional arguments\n"
|
" When run, aliases will accept any additional arguments\n"
|
||||||
@@ -91,73 +91,99 @@ msgstr ""
|
|||||||
msgid "A new global alias with the trigger `{name}` has been created."
|
msgid "A new global alias with the trigger `{name}` has been created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:343
|
#: 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
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Try to execute help for the base command of the alias."
|
msgid "Try to execute help for the base command of the alias."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:348
|
#: redbot/cogs/alias/alias.py:417
|
||||||
msgid "No such alias exists."
|
msgid "No such alias exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:352
|
#: redbot/cogs/alias/alias.py:421
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Show what command the alias executes."
|
msgid "Show what command the alias executes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:357
|
#: redbot/cogs/alias/alias.py:426
|
||||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:362
|
#: redbot/cogs/alias/alias.py:431
|
||||||
msgid "There is no alias with the name `{name}`"
|
msgid "There is no alias with the name `{name}`"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:368
|
#: redbot/cogs/alias/alias.py:437
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing alias on this server."
|
msgid "Delete an existing alias on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:370 redbot/cogs/alias/alias.py:402
|
#: redbot/cogs/alias/alias.py:439 redbot/cogs/alias/alias.py:471
|
||||||
msgid "There are no aliases on this server."
|
msgid "There are no aliases on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:375 redbot/cogs/alias/alias.py:390
|
#: redbot/cogs/alias/alias.py:444 redbot/cogs/alias/alias.py:459
|
||||||
msgid "Alias with the name `{name}` was successfully deleted."
|
msgid "Alias with the name `{name}` was successfully deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:378 redbot/cogs/alias/alias.py:393
|
#: redbot/cogs/alias/alias.py:447 redbot/cogs/alias/alias.py:462
|
||||||
msgid "Alias with name `{name}` was not found."
|
msgid "Alias with name `{name}` was not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:383
|
#: redbot/cogs/alias/alias.py:452
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing global alias."
|
msgid "Delete an existing global alias."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:385
|
#: redbot/cogs/alias/alias.py:454
|
||||||
msgid "There are no global aliases on this bot."
|
msgid "There are no global aliases on this bot."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:399
|
#: redbot/cogs/alias/alias.py:468
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available aliases on this server."
|
msgid "List the available aliases on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:408
|
#: redbot/cogs/alias/alias.py:477
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available global aliases on this bot."
|
msgid "List the available global aliases on this bot."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:411
|
#: redbot/cogs/alias/alias.py:480
|
||||||
msgid "There are no global aliases."
|
msgid "There are no global aliases."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:198
|
#: redbot/cogs/alias/alias_entry.py:199
|
||||||
msgid "Arguments must be specified with a number."
|
msgid "Arguments must be specified with a number."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:205
|
#: redbot/cogs/alias/alias_entry.py:206
|
||||||
msgid "Arguments must be sequential. Missing arguments: "
|
msgid "Arguments must be sequential. Missing arguments: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-02-11 12:29+0000\n"
|
"POT-Creation-Date: 2021-09-03 01:50+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Czech\n"
|
"Language-Team: Czech\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -18,13 +18,13 @@ msgstr ""
|
|||||||
#: redbot/cogs/alias/alias.py:35
|
#: redbot/cogs/alias/alias.py:35
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Create aliases for commands.\n\n"
|
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"
|
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||||
" When run, aliases will accept any additional arguments\n"
|
" When run, aliases will accept any additional arguments\n"
|
||||||
" and append them to the stored alias.\n"
|
" and append them to the stored alias.\n"
|
||||||
" "
|
" "
|
||||||
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 "
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:203
|
#: redbot/cogs/alias/alias.py:203
|
||||||
msgid "Aliases:\n"
|
msgid "Aliases:\n"
|
||||||
@@ -92,73 +92,99 @@ 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."
|
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}."
|
msgstr "Byl vytvořen nový globální alias se spouštěcím mechanismem `{name}."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:343
|
#: 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
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Try to execute help for the base command of the alias."
|
msgid "Try to execute help for the base command of the alias."
|
||||||
msgstr "Zkuste spustit nápovědu pro základní příkaz aliasů."
|
msgstr "Zkuste spustit nápovědu pro základní příkaz aliasů."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:348
|
#: redbot/cogs/alias/alias.py:417
|
||||||
msgid "No such alias exists."
|
msgid "No such alias exists."
|
||||||
msgstr "Žádný takový alias neexistuje."
|
msgstr "Žádný takový alias neexistuje."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:352
|
#: redbot/cogs/alias/alias.py:421
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Show what command the alias executes."
|
msgid "Show what command the alias executes."
|
||||||
msgstr "Zobrazit příkaz ke spustitelnému aliasu."
|
msgstr "Zobrazit příkaz ke spustitelnému aliasu."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:357
|
#: redbot/cogs/alias/alias.py:426
|
||||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||||
msgstr "Alias `{alias_name} provede příkaz `{command}"
|
msgstr "Alias `{alias_name} provede příkaz `{command}"
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:362
|
#: redbot/cogs/alias/alias.py:431
|
||||||
msgid "There is no alias with the name `{name}`"
|
msgid "There is no alias with the name `{name}`"
|
||||||
msgstr "Neexistuje žádný alias s názvem `{name}`"
|
msgstr "Neexistuje žádný alias s názvem `{name}`"
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:368
|
#: redbot/cogs/alias/alias.py:437
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing alias on this server."
|
msgid "Delete an existing alias on this server."
|
||||||
msgstr "Odstraní existující alias na tomto serveru."
|
msgstr "Odstraní existující alias na tomto serveru."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:370 redbot/cogs/alias/alias.py:402
|
#: redbot/cogs/alias/alias.py:439 redbot/cogs/alias/alias.py:471
|
||||||
msgid "There are no aliases on this server."
|
msgid "There are no aliases on this server."
|
||||||
msgstr "Na tomto serveru nejsou žádné aliasy."
|
msgstr "Na tomto serveru nejsou žádné aliasy."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:375 redbot/cogs/alias/alias.py:390
|
#: redbot/cogs/alias/alias.py:444 redbot/cogs/alias/alias.py:459
|
||||||
msgid "Alias with the name `{name}` was successfully deleted."
|
msgid "Alias with the name `{name}` was successfully deleted."
|
||||||
msgstr "Alias s názvem{name}` byl úspěšně smazán."
|
msgstr "Alias s názvem{name}` byl úspěšně smazán."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:378 redbot/cogs/alias/alias.py:393
|
#: redbot/cogs/alias/alias.py:447 redbot/cogs/alias/alias.py:462
|
||||||
msgid "Alias with name `{name}` was not found."
|
msgid "Alias with name `{name}` was not found."
|
||||||
msgstr "Alias s názvem `{name}` nebyl nalezen."
|
msgstr "Alias s názvem `{name}` nebyl nalezen."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:383
|
#: redbot/cogs/alias/alias.py:452
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing global alias."
|
msgid "Delete an existing global alias."
|
||||||
msgstr "Odstranit existující globální alias."
|
msgstr "Odstranit existující globální alias."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:385
|
#: redbot/cogs/alias/alias.py:454
|
||||||
msgid "There are no global aliases on this bot."
|
msgid "There are no global aliases on this bot."
|
||||||
msgstr "Pro tohoto bota neexistují žádné globální aliasy."
|
msgstr "Pro tohoto bota neexistují žádné globální aliasy."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:399
|
#: redbot/cogs/alias/alias.py:468
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available aliases on this server."
|
msgid "List the available aliases on this server."
|
||||||
msgstr "Seznam dostupných aliasů na tomto serveru."
|
msgstr "Seznam dostupných aliasů na tomto serveru."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:408
|
#: redbot/cogs/alias/alias.py:477
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available global aliases on this bot."
|
msgid "List the available global aliases on this bot."
|
||||||
msgstr "Seznam dostupných globálních aliasů pro tohoto bota."
|
msgstr "Seznam dostupných globálních aliasů pro tohoto bota."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:411
|
#: redbot/cogs/alias/alias.py:480
|
||||||
msgid "There are no global aliases."
|
msgid "There are no global aliases."
|
||||||
msgstr "Neexistují žádné globální aliasy."
|
msgstr "Neexistují žádné globální aliasy."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:198
|
#: redbot/cogs/alias/alias_entry.py:199
|
||||||
msgid "Arguments must be specified with a number."
|
msgid "Arguments must be specified with a number."
|
||||||
msgstr "Argumenty musí být zadány s číslem."
|
msgstr "Argumenty musí být zadány s číslem."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:205
|
#: redbot/cogs/alias/alias_entry.py:206
|
||||||
msgid "Arguments must be sequential. Missing arguments: "
|
msgid "Arguments must be sequential. Missing arguments: "
|
||||||
msgstr "Argumenty musí být sekvenční. Chybějící argumenty: "
|
msgstr "Argumenty musí být sekvenční. Chybějící argumenty: "
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-02-11 12:29+0000\n"
|
"POT-Creation-Date: 2021-09-03 01:50+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Danish\n"
|
"Language-Team: Danish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -18,7 +18,7 @@ msgstr ""
|
|||||||
#: redbot/cogs/alias/alias.py:35
|
#: redbot/cogs/alias/alias.py:35
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Create aliases for commands.\n\n"
|
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"
|
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||||
" When run, aliases will accept any additional arguments\n"
|
" When run, aliases will accept any additional arguments\n"
|
||||||
@@ -91,73 +91,99 @@ msgstr ""
|
|||||||
msgid "A new global alias with the trigger `{name}` has been created."
|
msgid "A new global alias with the trigger `{name}` has been created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:343
|
#: 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
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Try to execute help for the base command of the alias."
|
msgid "Try to execute help for the base command of the alias."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:348
|
#: redbot/cogs/alias/alias.py:417
|
||||||
msgid "No such alias exists."
|
msgid "No such alias exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:352
|
#: redbot/cogs/alias/alias.py:421
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Show what command the alias executes."
|
msgid "Show what command the alias executes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:357
|
#: redbot/cogs/alias/alias.py:426
|
||||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:362
|
#: redbot/cogs/alias/alias.py:431
|
||||||
msgid "There is no alias with the name `{name}`"
|
msgid "There is no alias with the name `{name}`"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:368
|
#: redbot/cogs/alias/alias.py:437
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing alias on this server."
|
msgid "Delete an existing alias on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:370 redbot/cogs/alias/alias.py:402
|
#: redbot/cogs/alias/alias.py:439 redbot/cogs/alias/alias.py:471
|
||||||
msgid "There are no aliases on this server."
|
msgid "There are no aliases on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:375 redbot/cogs/alias/alias.py:390
|
#: redbot/cogs/alias/alias.py:444 redbot/cogs/alias/alias.py:459
|
||||||
msgid "Alias with the name `{name}` was successfully deleted."
|
msgid "Alias with the name `{name}` was successfully deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:378 redbot/cogs/alias/alias.py:393
|
#: redbot/cogs/alias/alias.py:447 redbot/cogs/alias/alias.py:462
|
||||||
msgid "Alias with name `{name}` was not found."
|
msgid "Alias with name `{name}` was not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:383
|
#: redbot/cogs/alias/alias.py:452
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing global alias."
|
msgid "Delete an existing global alias."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:385
|
#: redbot/cogs/alias/alias.py:454
|
||||||
msgid "There are no global aliases on this bot."
|
msgid "There are no global aliases on this bot."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:399
|
#: redbot/cogs/alias/alias.py:468
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available aliases on this server."
|
msgid "List the available aliases on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:408
|
#: redbot/cogs/alias/alias.py:477
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available global aliases on this bot."
|
msgid "List the available global aliases on this bot."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:411
|
#: redbot/cogs/alias/alias.py:480
|
||||||
msgid "There are no global aliases."
|
msgid "There are no global aliases."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:198
|
#: redbot/cogs/alias/alias_entry.py:199
|
||||||
msgid "Arguments must be specified with a number."
|
msgid "Arguments must be specified with a number."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:205
|
#: redbot/cogs/alias/alias_entry.py:206
|
||||||
msgid "Arguments must be sequential. Missing arguments: "
|
msgid "Arguments must be sequential. Missing arguments: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-02-11 12:29+0000\n"
|
"POT-Creation-Date: 2021-09-03 01:50+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: German\n"
|
"Language-Team: German\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -18,20 +18,13 @@ msgstr ""
|
|||||||
#: redbot/cogs/alias/alias.py:35
|
#: redbot/cogs/alias/alias.py:35
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Create aliases for commands.\n\n"
|
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"
|
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||||
" When run, aliases will accept any additional arguments\n"
|
" When run, aliases will accept any additional arguments\n"
|
||||||
" and append them to the stored alias.\n"
|
" and append them to the stored alias.\n"
|
||||||
" "
|
" "
|
||||||
msgstr "Erstelle einen Alias für einen Befehl.\n\n"
|
msgstr ""
|
||||||
" Aliases sind alternative Namen für Befehle.\n"
|
|
||||||
" können als Lambda (Speicherung von Argumenten für wiederholte Verwendung)\n"
|
|
||||||
" oder als einfache Verknüpfung zur Angabe von \"x y z\" fungieren.\n\n"
|
|
||||||
" Wenn Sie ausgeführt werden, werden Alias zusätzliche Argumente annehmen\n"
|
|
||||||
" und sie an die gespeicherten Alias anhängen.\n"
|
|
||||||
" \n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:203
|
#: redbot/cogs/alias/alias.py:203
|
||||||
msgid "Aliases:\n"
|
msgid "Aliases:\n"
|
||||||
@@ -99,73 +92,99 @@ msgstr "Du hast versucht, einen neuen globalen Alias mit dem Namen „{name}“
|
|||||||
msgid "A new global alias with the trigger `{name}` has been created."
|
msgid "A new global alias with the trigger `{name}` has been created."
|
||||||
msgstr "Ein neuer globaler Alias mit dem Trigger `{name}` wurde erstellt."
|
msgstr "Ein neuer globaler Alias mit dem Trigger `{name}` wurde erstellt."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:343
|
#: 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
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Try to execute help for the base command of the alias."
|
msgid "Try to execute help for the base command of the alias."
|
||||||
msgstr "Versuche die Hilfe für den Basisbefehl des Alias auszuführen."
|
msgstr "Versuche die Hilfe für den Basisbefehl des Alias auszuführen."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:348
|
#: redbot/cogs/alias/alias.py:417
|
||||||
msgid "No such alias exists."
|
msgid "No such alias exists."
|
||||||
msgstr "So ein Alias ist nicht vorhanden."
|
msgstr "So ein Alias ist nicht vorhanden."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:352
|
#: redbot/cogs/alias/alias.py:421
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Show what command the alias executes."
|
msgid "Show what command the alias executes."
|
||||||
msgstr "Zeige den Befehl, welchen der Alias ausführt."
|
msgstr "Zeige den Befehl, welchen der Alias ausführt."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:357
|
#: redbot/cogs/alias/alias.py:426
|
||||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||||
msgstr "Der Alias '{alias_name}' führt den Befehl '{command}' aus"
|
msgstr "Der Alias '{alias_name}' führt den Befehl '{command}' aus"
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:362
|
#: redbot/cogs/alias/alias.py:431
|
||||||
msgid "There is no alias with the name `{name}`"
|
msgid "There is no alias with the name `{name}`"
|
||||||
msgstr "Kein Alias mit dem Namen '{name}' gefunden"
|
msgstr "Kein Alias mit dem Namen '{name}' gefunden"
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:368
|
#: redbot/cogs/alias/alias.py:437
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing alias on this server."
|
msgid "Delete an existing alias on this server."
|
||||||
msgstr "Lösche einen bereits existierenden Alias auf diesem Server."
|
msgstr "Lösche einen bereits existierenden Alias auf diesem Server."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:370 redbot/cogs/alias/alias.py:402
|
#: redbot/cogs/alias/alias.py:439 redbot/cogs/alias/alias.py:471
|
||||||
msgid "There are no aliases on this server."
|
msgid "There are no aliases on this server."
|
||||||
msgstr "Es gibt keine Aliasse auf diesem Server."
|
msgstr "Es gibt keine Aliasse auf diesem Server."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:375 redbot/cogs/alias/alias.py:390
|
#: redbot/cogs/alias/alias.py:444 redbot/cogs/alias/alias.py:459
|
||||||
msgid "Alias with the name `{name}` was successfully deleted."
|
msgid "Alias with the name `{name}` was successfully deleted."
|
||||||
msgstr "Der Alias mit dem Namen '{name}' wurde erfolgreich gelöscht."
|
msgstr "Der Alias mit dem Namen '{name}' wurde erfolgreich gelöscht."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:378 redbot/cogs/alias/alias.py:393
|
#: redbot/cogs/alias/alias.py:447 redbot/cogs/alias/alias.py:462
|
||||||
msgid "Alias with name `{name}` was not found."
|
msgid "Alias with name `{name}` was not found."
|
||||||
msgstr "Kein Alias mit dem Namen '{name}' gefunden."
|
msgstr "Kein Alias mit dem Namen '{name}' gefunden."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:383
|
#: redbot/cogs/alias/alias.py:452
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing global alias."
|
msgid "Delete an existing global alias."
|
||||||
msgstr "Lösche einen bereits existierenden globalen Alias."
|
msgstr "Lösche einen bereits existierenden globalen Alias."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:385
|
#: redbot/cogs/alias/alias.py:454
|
||||||
msgid "There are no global aliases on this bot."
|
msgid "There are no global aliases on this bot."
|
||||||
msgstr "Ich habe keinen globalen Alias gespeichert."
|
msgstr "Ich habe keinen globalen Alias gespeichert."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:399
|
#: redbot/cogs/alias/alias.py:468
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available aliases on this server."
|
msgid "List the available aliases on this server."
|
||||||
msgstr "Zeige die auf diesem Server verfügbaren Alias."
|
msgstr "Zeige die auf diesem Server verfügbaren Alias."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:408
|
#: redbot/cogs/alias/alias.py:477
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available global aliases on this bot."
|
msgid "List the available global aliases on this bot."
|
||||||
msgstr "Zeige die verfügbaren globalen Alias von diesem Bot."
|
msgstr "Zeige die verfügbaren globalen Alias von diesem Bot."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:411
|
#: redbot/cogs/alias/alias.py:480
|
||||||
msgid "There are no global aliases."
|
msgid "There are no global aliases."
|
||||||
msgstr "Es gibt keine globalen Aliasse."
|
msgstr "Es gibt keine globalen Aliasse."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:198
|
#: redbot/cogs/alias/alias_entry.py:199
|
||||||
msgid "Arguments must be specified with a number."
|
msgid "Arguments must be specified with a number."
|
||||||
msgstr "Die Argumente müssen mit einer Nummer angegeben werden."
|
msgstr "Die Argumente müssen mit einer Nummer angegeben werden."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:205
|
#: redbot/cogs/alias/alias_entry.py:206
|
||||||
msgid "Arguments must be sequential. Missing arguments: "
|
msgid "Arguments must be sequential. Missing arguments: "
|
||||||
msgstr "Argumente müssen sequentiell sein. Fehlende Argumente: "
|
msgstr "Argumente müssen sequentiell sein. Fehlende Argumente: "
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-02-11 12:29+0000\n"
|
"POT-Creation-Date: 2021-09-03 01:50+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Greek\n"
|
"Language-Team: Greek\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -18,7 +18,7 @@ msgstr ""
|
|||||||
#: redbot/cogs/alias/alias.py:35
|
#: redbot/cogs/alias/alias.py:35
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Create aliases for commands.\n\n"
|
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"
|
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||||
" When run, aliases will accept any additional arguments\n"
|
" When run, aliases will accept any additional arguments\n"
|
||||||
@@ -91,73 +91,99 @@ msgstr ""
|
|||||||
msgid "A new global alias with the trigger `{name}` has been created."
|
msgid "A new global alias with the trigger `{name}` has been created."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:343
|
#: 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
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Try to execute help for the base command of the alias."
|
msgid "Try to execute help for the base command of the alias."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:348
|
#: redbot/cogs/alias/alias.py:417
|
||||||
msgid "No such alias exists."
|
msgid "No such alias exists."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:352
|
#: redbot/cogs/alias/alias.py:421
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Show what command the alias executes."
|
msgid "Show what command the alias executes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:357
|
#: redbot/cogs/alias/alias.py:426
|
||||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:362
|
#: redbot/cogs/alias/alias.py:431
|
||||||
msgid "There is no alias with the name `{name}`"
|
msgid "There is no alias with the name `{name}`"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:368
|
#: redbot/cogs/alias/alias.py:437
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing alias on this server."
|
msgid "Delete an existing alias on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:370 redbot/cogs/alias/alias.py:402
|
#: redbot/cogs/alias/alias.py:439 redbot/cogs/alias/alias.py:471
|
||||||
msgid "There are no aliases on this server."
|
msgid "There are no aliases on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:375 redbot/cogs/alias/alias.py:390
|
#: redbot/cogs/alias/alias.py:444 redbot/cogs/alias/alias.py:459
|
||||||
msgid "Alias with the name `{name}` was successfully deleted."
|
msgid "Alias with the name `{name}` was successfully deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:378 redbot/cogs/alias/alias.py:393
|
#: redbot/cogs/alias/alias.py:447 redbot/cogs/alias/alias.py:462
|
||||||
msgid "Alias with name `{name}` was not found."
|
msgid "Alias with name `{name}` was not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:383
|
#: redbot/cogs/alias/alias.py:452
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing global alias."
|
msgid "Delete an existing global alias."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:385
|
#: redbot/cogs/alias/alias.py:454
|
||||||
msgid "There are no global aliases on this bot."
|
msgid "There are no global aliases on this bot."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:399
|
#: redbot/cogs/alias/alias.py:468
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available aliases on this server."
|
msgid "List the available aliases on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:408
|
#: redbot/cogs/alias/alias.py:477
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available global aliases on this bot."
|
msgid "List the available global aliases on this bot."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:411
|
#: redbot/cogs/alias/alias.py:480
|
||||||
msgid "There are no global aliases."
|
msgid "There are no global aliases."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:198
|
#: redbot/cogs/alias/alias_entry.py:199
|
||||||
msgid "Arguments must be specified with a number."
|
msgid "Arguments must be specified with a number."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:205
|
#: redbot/cogs/alias/alias_entry.py:206
|
||||||
msgid "Arguments must be sequential. Missing arguments: "
|
msgid "Arguments must be sequential. Missing arguments: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: red-discordbot\n"
|
"Project-Id-Version: red-discordbot\n"
|
||||||
"POT-Creation-Date: 2021-02-11 12:29+0000\n"
|
"POT-Creation-Date: 2021-09-03 01:50+0000\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: Spanish\n"
|
"Language-Team: Spanish\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -18,19 +18,13 @@ msgstr ""
|
|||||||
#: redbot/cogs/alias/alias.py:35
|
#: redbot/cogs/alias/alias.py:35
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Create aliases for commands.\n\n"
|
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"
|
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||||
" When run, aliases will accept any additional arguments\n"
|
" When run, aliases will accept any additional arguments\n"
|
||||||
" and append them to the stored alias.\n"
|
" and append them to the stored alias.\n"
|
||||||
" "
|
" "
|
||||||
msgstr "Crear alias para comandos.\n\n"
|
msgstr ""
|
||||||
" Los alias son accesos directos de nombres alternativos para comandos.\n"
|
|
||||||
" pueden actuar como un lambda (almacenando argumentos para uso repetido)\n"
|
|
||||||
" o simplemente como un atajo para decir \"x y z\".\n\n"
|
|
||||||
" Cuando se ejecuta, los alias aceptarán cualquier argumento adicional\n"
|
|
||||||
" y los agregarán al alias almacenado.\n"
|
|
||||||
" "
|
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:203
|
#: redbot/cogs/alias/alias.py:203
|
||||||
msgid "Aliases:\n"
|
msgid "Aliases:\n"
|
||||||
@@ -98,73 +92,99 @@ msgstr "Intentaste crear un nuevo alias global con el nombre {name}, pero ese no
|
|||||||
msgid "A new global alias with the trigger `{name}` has been created."
|
msgid "A new global alias with the trigger `{name}` has been created."
|
||||||
msgstr "Un nuevo alias global con el trigger `{name}` ha sido creado."
|
msgstr "Un nuevo alias global con el trigger `{name}` ha sido creado."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:343
|
#: 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
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Try to execute help for the base command of the alias."
|
msgid "Try to execute help for the base command of the alias."
|
||||||
msgstr "Intenta ejecutar help para el comando base del alias."
|
msgstr "Intenta ejecutar help para el comando base del alias."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:348
|
#: redbot/cogs/alias/alias.py:417
|
||||||
msgid "No such alias exists."
|
msgid "No such alias exists."
|
||||||
msgstr "El alias no existe."
|
msgstr "El alias no existe."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:352
|
#: redbot/cogs/alias/alias.py:421
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Show what command the alias executes."
|
msgid "Show what command the alias executes."
|
||||||
msgstr "Muestra qué comando ejecuta el alias."
|
msgstr "Muestra qué comando ejecuta el alias."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:357
|
#: redbot/cogs/alias/alias.py:426
|
||||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||||
msgstr "El alias `{alias_name}` ejecutará el comando `{command}`"
|
msgstr "El alias `{alias_name}` ejecutará el comando `{command}`"
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:362
|
#: redbot/cogs/alias/alias.py:431
|
||||||
msgid "There is no alias with the name `{name}`"
|
msgid "There is no alias with the name `{name}`"
|
||||||
msgstr "No hay alias con el nombre `{name}`"
|
msgstr "No hay alias con el nombre `{name}`"
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:368
|
#: redbot/cogs/alias/alias.py:437
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing alias on this server."
|
msgid "Delete an existing alias on this server."
|
||||||
msgstr "Elimina un alias existente en este servidor."
|
msgstr "Elimina un alias existente en este servidor."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:370 redbot/cogs/alias/alias.py:402
|
#: redbot/cogs/alias/alias.py:439 redbot/cogs/alias/alias.py:471
|
||||||
msgid "There are no aliases on this server."
|
msgid "There are no aliases on this server."
|
||||||
msgstr "No hay alias en este servidor."
|
msgstr "No hay alias en este servidor."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:375 redbot/cogs/alias/alias.py:390
|
#: redbot/cogs/alias/alias.py:444 redbot/cogs/alias/alias.py:459
|
||||||
msgid "Alias with the name `{name}` was successfully deleted."
|
msgid "Alias with the name `{name}` was successfully deleted."
|
||||||
msgstr "El alias con el nombre `{name}` ha eliminado correctamente."
|
msgstr "El alias con el nombre `{name}` ha eliminado correctamente."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:378 redbot/cogs/alias/alias.py:393
|
#: redbot/cogs/alias/alias.py:447 redbot/cogs/alias/alias.py:462
|
||||||
msgid "Alias with name `{name}` was not found."
|
msgid "Alias with name `{name}` was not found."
|
||||||
msgstr "El alias con nombre `{name}` no fue encontrado."
|
msgstr "El alias con nombre `{name}` no fue encontrado."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:383
|
#: redbot/cogs/alias/alias.py:452
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "Delete an existing global alias."
|
msgid "Delete an existing global alias."
|
||||||
msgstr "Elimina un alias global existente."
|
msgstr "Elimina un alias global existente."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:385
|
#: redbot/cogs/alias/alias.py:454
|
||||||
msgid "There are no global aliases on this bot."
|
msgid "There are no global aliases on this bot."
|
||||||
msgstr "Este bot no tiene alias globales."
|
msgstr "Este bot no tiene alias globales."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:399
|
#: redbot/cogs/alias/alias.py:468
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available aliases on this server."
|
msgid "List the available aliases on this server."
|
||||||
msgstr "Lista de los alias disponibles en este servidor."
|
msgstr "Lista de los alias disponibles en este servidor."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:408
|
#: redbot/cogs/alias/alias.py:477
|
||||||
#, docstring
|
#, docstring
|
||||||
msgid "List the available global aliases on this bot."
|
msgid "List the available global aliases on this bot."
|
||||||
msgstr "Lista de los alias globales disponibles en este bot."
|
msgstr "Lista de los alias globales disponibles en este bot."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias.py:411
|
#: redbot/cogs/alias/alias.py:480
|
||||||
msgid "There are no global aliases."
|
msgid "There are no global aliases."
|
||||||
msgstr "No hay alias globales."
|
msgstr "No hay alias globales."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:198
|
#: redbot/cogs/alias/alias_entry.py:199
|
||||||
msgid "Arguments must be specified with a number."
|
msgid "Arguments must be specified with a number."
|
||||||
msgstr "Los argumentos deben especificarse con un número."
|
msgstr "Los argumentos deben especificarse con un número."
|
||||||
|
|
||||||
#: redbot/cogs/alias/alias_entry.py:205
|
#: redbot/cogs/alias/alias_entry.py:206
|
||||||
msgid "Arguments must be sequential. Missing arguments: "
|
msgid "Arguments must be sequential. Missing arguments: "
|
||||||
msgstr "Los argumentos deben ser secuenciales. Faltan argumentos: "
|
msgstr "Los argumentos deben ser secuenciales. Faltan argumentos: "
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user