mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-12-05 08:52:31 -05:00
Compare commits
57 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
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
|
||||
- redbot/*
|
||||
- redbot/core/__init__.py
|
||||
- redbot/core/_diagnoser.py
|
||||
- redbot/core/_sharedlibdeprecation.py
|
||||
- redbot/core/bot.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
|
||||
run: |
|
||||
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
|
||||
# that includes the dependencies
|
||||
echo "CODEQL_PYTHON=$(which python)" >> $GITHUB_ENV
|
||||
|
||||
57
.github/workflows/publish_release.yml
vendored
57
.github/workflows/publish_release.yml
vendored
@@ -5,13 +5,61 @@ on:
|
||||
- "*"
|
||||
|
||||
jobs:
|
||||
release_to_pypi:
|
||||
release_information:
|
||||
if: github.repository == 'Cog-Creators/Red-DiscordBot'
|
||||
name: GO HERE BEFORE APPROVING
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
# Checkout repository and install Python
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: '3.8'
|
||||
|
||||
# Get version to release
|
||||
- name: Get version to release
|
||||
id: version_to_release
|
||||
run: |
|
||||
python .github/workflows/scripts/bump_version.py
|
||||
env:
|
||||
PYTHONPATH: ${{ github.workspace }}:${{ env.PYTHONPATH }}
|
||||
JUST_RETURN_VERSION: '1'
|
||||
|
||||
# Print release information
|
||||
- name: REVIEW OUTPUT OF THIS STEP BEFORE APPROVING
|
||||
env:
|
||||
TAG_BASE_BRANCH: ${{ github.event.base_ref }}
|
||||
TAG_REF_NAME: ${{ github.ref }}
|
||||
RELEASE_VERSION: ${{ steps.version_to_release.outputs.version }}
|
||||
run: |
|
||||
echo 'Release information:'
|
||||
echo "- Branch the tag was based off: ${TAG_BASE_BRANCH#'refs/heads/'}"
|
||||
echo "- Tag name: ${TAG_REF_NAME#'refs/tags/'}"
|
||||
echo "- Release version: $RELEASE_VERSION"
|
||||
|
||||
echo "TAG_NAME=${TAG_REF_NAME#'refs/tags/'}" >> $GITHUB_ENV
|
||||
|
||||
- name: Ensure the tag name corresponds to the released version
|
||||
env:
|
||||
RELEASE_VERSION: ${{ steps.version_to_release.outputs.version }}
|
||||
run: |
|
||||
if [[ "$TAG_NAME" != "$RELEASE_VERSION" ]]; then
|
||||
echo -n "The tag name ($TAG_NAME) is not the same as"
|
||||
echo " the release version ($RELEASE_VERSION)!"
|
||||
exit 1
|
||||
else
|
||||
echo "The tag name and the release version are the same ($TAG_NAME)."
|
||||
echo 'Continuing...'
|
||||
fi
|
||||
|
||||
release_to_pypi:
|
||||
needs: release_information
|
||||
environment: Release
|
||||
name: Release to PyPI
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
ref: V3/develop
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
@@ -33,9 +81,12 @@ jobs:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
needs: release_to_pypi
|
||||
name: Update Red version number to dev
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
ref: ${{ github.event.base_ref }}
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
|
||||
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
|
||||
|
||||
|
||||
if int(os.environ.get("JUST_RETURN_VERSION", 0)):
|
||||
print(f"::set-output name=version::{redbot.__version__}")
|
||||
sys.exit(0)
|
||||
|
||||
|
||||
version_info = None
|
||||
|
||||
|
||||
|
||||
14
.github/workflows/tests.yml
vendored
14
.github/workflows/tests.yml
vendored
@@ -17,12 +17,18 @@ jobs:
|
||||
python_version:
|
||||
- "3.8"
|
||||
tox_env:
|
||||
- py
|
||||
- style
|
||||
- docs
|
||||
include:
|
||||
- tox_env: py
|
||||
friendly_name: Tests
|
||||
- tox_env: py38
|
||||
python_version: "3.8"
|
||||
friendly_name: Python 3.8 - Tests
|
||||
- tox_env: py39
|
||||
python_version: "3.9"
|
||||
friendly_name: Python 3.9 - Tests
|
||||
- tox_env: py310
|
||||
python_version: "3.10-dev"
|
||||
friendly_name: Python 3.10-dev - Tests
|
||||
- tox_env: style
|
||||
friendly_name: Style
|
||||
- tox_env: docs
|
||||
@@ -52,6 +58,8 @@ jobs:
|
||||
matrix:
|
||||
python_version:
|
||||
- "3.8"
|
||||
- "3.9"
|
||||
- "3.10-dev"
|
||||
fail-fast: false
|
||||
name: Tox - Postgres
|
||||
services:
|
||||
|
||||
@@ -56,7 +56,7 @@ Continue to the next section to enable privileged intents.
|
||||
Enabling Privileged Intents
|
||||
-------------------------------
|
||||
.. warning::
|
||||
Due to Discord API changes, Red Bot requires all intents.
|
||||
:ref:`As explained in this page <intents>`, Red Bot requires all intents.
|
||||
\This section is required.
|
||||
|
||||
1. Make sure you're logged on to the `Discord website <https://discord.com>`_.
|
||||
@@ -75,5 +75,6 @@ Enabling Privileged Intents
|
||||
.. warning::
|
||||
|
||||
Red bots with over 100 servers require `bot verification <https://support.discord.com/hc/en-us/articles/360040720412>`_ which is not covered in this guide.
|
||||
Remember that as explained :ref:`here <intents>` we do not support public bots. 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>`_.
|
||||
|
||||
@@ -1,5 +1,156 @@
|
||||
.. 3.4.x Changelogs
|
||||
|
||||
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)
|
||||
==========================
|
||||
|
||||
@@ -77,11 +228,11 @@ Admin
|
||||
*****
|
||||
|
||||
- The cog will now log when it leaves a guild due to the serverlock (:issue:`5008`, :issue:`5073`)
|
||||
- Fixed an issue that made it possible to remove Aikaterna's curated tracks playlist (:issue:`5018`)
|
||||
|
||||
Audio
|
||||
*****
|
||||
|
||||
- Fixed an issue that made it possible to remove Aikaterna's curated tracks playlist (:issue:`5018`)
|
||||
- Fixed auto-resume of auto play after Lavalink restart (:issue:`5051`)
|
||||
- The ``[p]audiostats`` command can now only be used by bot owners (:issue:`5017`)
|
||||
- Fixed an error with ``[p]audiostats`` caused by players not always having their connection time stored (:issue:`5046`)
|
||||
@@ -1053,7 +1204,7 @@ Core Bot
|
||||
|
||||
- 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__``
|
||||
- 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
|
||||
|
||||
@@ -150,7 +150,7 @@ selfroleset add
|
||||
|
||||
**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.
|
||||
Make sure it doesn't give extra perms or anything that can break
|
||||
@@ -174,7 +174,7 @@ selfroleset remove
|
||||
|
||||
**Description**
|
||||
|
||||
Removes a role from the list of selfroles.
|
||||
Remove a role, or a selection of roles, from the list of available selfroles.
|
||||
|
||||
**Arguments**
|
||||
|
||||
@@ -232,7 +232,7 @@ as yourself, the command author.
|
||||
* ``<role>``: The role to remove. |role-input-quotes|
|
||||
|
||||
* ``[user]``: The member to remove the role from. |member-input| Defaults
|
||||
to the command author.
|
||||
to the command author.
|
||||
|
||||
.. _admin-command-editrole:
|
||||
|
||||
|
||||
@@ -294,3 +294,40 @@ Examples:
|
||||
- ``<user>`` The user whose messages are to be cleaned up.
|
||||
- ``<number>`` The max number of messages to cleanup. Must be a positive integer.
|
||||
- ``<delete_pinned>`` Whether to delete pinned messages or not. Defaults to False
|
||||
|
||||
.. _cleanup-command-cleanupset:
|
||||
|
||||
^^^^^^^^^^
|
||||
cleanupset
|
||||
^^^^^^^^^^
|
||||
|
||||
.. note:: |admin-lock|
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]cleanupset
|
||||
|
||||
**Description**
|
||||
|
||||
Manage the settings for the cleanup command.
|
||||
|
||||
.. _cleanup-command-cleanupset-notify:
|
||||
|
||||
"""""""""""""""""
|
||||
cleanupset notify
|
||||
"""""""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]cleanupset notify
|
||||
|
||||
**Description**
|
||||
|
||||
Toggle clean up notification settings.
|
||||
|
||||
When enabled, a message will be sent per cleanup, showing how many messages were deleted.
|
||||
This message will be deleted after 5 seconds.
|
||||
|
||||
@@ -383,7 +383,7 @@ command defaultdisablecog
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]command defaultdisablecog <cogname>
|
||||
[p]command defaultdisablecog <cog>
|
||||
|
||||
**Description**
|
||||
|
||||
@@ -400,7 +400,7 @@ To override it, use ``[p]command enablecog`` on the servers you want to allow us
|
||||
- ``[p]command defaultdisablecog ModLog``
|
||||
|
||||
**Arguments:**
|
||||
- ``<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:
|
||||
|
||||
@@ -414,7 +414,7 @@ command defaultenablecog
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]command defaultenablecog <cogname>
|
||||
[p]command defaultenablecog <cog>
|
||||
|
||||
**Description**
|
||||
|
||||
@@ -431,7 +431,7 @@ To override it, use ``[p]command disablecog`` on the servers you want to disallo
|
||||
- ``[p]command defaultenablecog ModLog``
|
||||
|
||||
**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:
|
||||
|
||||
@@ -519,7 +519,7 @@ command disablecog
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]command disablecog <cogname>
|
||||
[p]command disablecog <cog>
|
||||
|
||||
**Description**
|
||||
|
||||
@@ -533,7 +533,7 @@ Disable a cog in this server.
|
||||
- ``[p]command disablecog ModLog``
|
||||
|
||||
**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:
|
||||
|
||||
@@ -651,7 +651,7 @@ command enablecog
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]command enablecog <cogname>
|
||||
[p]command enablecog <cog>
|
||||
|
||||
**Description**
|
||||
|
||||
@@ -665,7 +665,7 @@ Enable a cog in this server.
|
||||
- ``[p]command enablecog ModLog``
|
||||
|
||||
**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:
|
||||
|
||||
@@ -770,6 +770,33 @@ This is limited to one message every 60 seconds per person.
|
||||
**Arguments:**
|
||||
- ``[message]`` - The message to send to the owner.
|
||||
|
||||
.. _core-command-diagnoseissues:
|
||||
|
||||
^^^^^^^^^^^^^^
|
||||
diagnoseissues
|
||||
^^^^^^^^^^^^^^
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]diagnoseissues [channel] <member> <command_name>
|
||||
|
||||
**Description**
|
||||
|
||||
Diagnose issues with the command checks with ease!
|
||||
|
||||
If you want to diagnose the command from a text channel in a different server,
|
||||
you can do so by using the command in DMs.
|
||||
|
||||
**Example:**
|
||||
- ``[p]diagnoseissues #general @Slime ban`` - Diagnose why @Slime can't use ``[p]ban`` in #general channel.
|
||||
|
||||
**Arguments:**
|
||||
- ``[channel]`` - The text channel that the command should be tested for. Defaults to the current channel.
|
||||
- ``<member>`` - The member that should be considered as the command caller.
|
||||
- ``<command_name>`` - The name of the command to test.
|
||||
|
||||
.. _core-command-dm:
|
||||
|
||||
^^
|
||||
@@ -875,7 +902,7 @@ embedset command
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]embedset command <command_name> [enabled]
|
||||
[p]embedset command <command> [enabled]
|
||||
|
||||
**Description**
|
||||
|
||||
@@ -908,7 +935,7 @@ embedset command global
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]embedset command global <command_name> [enabled]
|
||||
[p]embedset command global <command> [enabled]
|
||||
|
||||
**Description**
|
||||
|
||||
@@ -938,7 +965,7 @@ embedset command server
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]embedset command server <command_name> [enabled]
|
||||
[p]embedset command server <command> [enabled]
|
||||
|
||||
.. tip:: Alias: ``embedset command guild``
|
||||
|
||||
@@ -1030,7 +1057,7 @@ embedset showsettings
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]embedset showsettings [command_name]
|
||||
[p]embedset showsettings [command]
|
||||
|
||||
**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.
|
||||
|
||||
**Arguments:**
|
||||
- ``[command_name]`` - Checks this command for command specific embed settings.
|
||||
- ``[command]`` - Checks this command for command specific embed settings.
|
||||
|
||||
.. _core-command-embedset-user:
|
||||
|
||||
@@ -1190,6 +1217,34 @@ mean some pages will exceed this limit.
|
||||
**Arguments:**
|
||||
- ``<limit>`` - The max amount of characters to show per page in the help message.
|
||||
|
||||
.. _core-command-helpset-reacttimeout:
|
||||
|
||||
""""""""""""""""""""
|
||||
helpset reacttimeout
|
||||
""""""""""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]helpset reacttimeout <seconds>
|
||||
|
||||
**Description**
|
||||
|
||||
Set the timeout for reactions, if menus are enabled.
|
||||
|
||||
The default is 30 seconds.
|
||||
The timeout has to be between 15 and 300 seconds.
|
||||
|
||||
**Examples:**
|
||||
- ``[p]helpset reacttimeout 30`` - The default timeout.
|
||||
- ``[p]helpset reacttimeout 60`` - Timeout of 1 minute.
|
||||
- ``[p]helpset reacttimeout 15`` - Minimum allowed timeout.
|
||||
- ``[p]helpset reacttimeout 300`` - Max allowed timeout (5 mins).
|
||||
|
||||
**Arguments:**
|
||||
- ``<seconds>`` - The timeout, in seconds, of the reactions.
|
||||
|
||||
.. _core-command-helpset-resetformatter:
|
||||
|
||||
""""""""""""""""""""""
|
||||
|
||||
@@ -122,6 +122,22 @@ Examples:
|
||||
|
||||
- ``[words...]`` The words or sentences to filter.
|
||||
|
||||
.. _filter-command-filter-channel-clear:
|
||||
|
||||
""""""""""""""""""""
|
||||
filter channel clear
|
||||
""""""""""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]filter channel clear
|
||||
|
||||
**Description**
|
||||
|
||||
Clears this channel's filter list.
|
||||
|
||||
.. _filter-command-filter-channel-list:
|
||||
|
||||
"""""""""""""""""""
|
||||
@@ -164,6 +180,22 @@ Examples:
|
||||
|
||||
- ``[words...]`` The words or sentences to no longer filter.
|
||||
|
||||
.. _filter-command-filter-clear:
|
||||
|
||||
""""""""""""
|
||||
filter clear
|
||||
""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]filter clear
|
||||
|
||||
**Description**
|
||||
|
||||
Clears this server's filter list.
|
||||
|
||||
.. _filter-command-filter-delete:
|
||||
|
||||
"""""""""""""
|
||||
|
||||
@@ -282,7 +282,7 @@ modset hierarchy
|
||||
|
||||
Toggle role hierarchy check for mods and admins.
|
||||
|
||||
..warning:: Disabling this setting will allow mods to take actions on users above them in the role hierarchy!
|
||||
.. warning:: Disabling this setting will allow mods to take actions on users above them in the role hierarchy!
|
||||
|
||||
This is enabled by default.
|
||||
|
||||
|
||||
@@ -218,6 +218,7 @@ intersphinx_mapping = {
|
||||
"dpy": (f"https://discordpy.readthedocs.io/en/v{dpy_version}/", None),
|
||||
"motor": ("https://motor.readthedocs.io/en/stable/", None),
|
||||
"babel": ("http://babel.pocoo.org/en/stable/", None),
|
||||
"dateutil": ("https://dateutil.readthedocs.io/en/stable/", None),
|
||||
}
|
||||
|
||||
# Extlinks
|
||||
|
||||
@@ -26,8 +26,8 @@ window like this:
|
||||
Invite Red to your server
|
||||
-------------------------
|
||||
|
||||
When started, the console will show you ``Invite URL`` (here at
|
||||
the bottom of the screenshot).
|
||||
When started, the console will show you the ``Invite URL``
|
||||
(visible at the bottom of the screenshot above).
|
||||
Paste the link into your browser and select the server you want
|
||||
to invite the bot in, like any other bot.
|
||||
|
||||
@@ -63,7 +63,7 @@ example, if your prefix is ``!``, you will execute your command like this:
|
||||
The commands
|
||||
~~~~~~~~~~~~
|
||||
|
||||
The command you're going to use the most is help. 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.
|
||||
|
||||
.. code-block:: none
|
||||
@@ -106,8 +106,8 @@ parameters.
|
||||
the syntax ``cleanup messages <number> [delete_pinned=False]``, which means
|
||||
``delete_pinned`` default will be false, unless you specify it as true.
|
||||
|
||||
You can use help to show the **categories** too, generally called cogs.
|
||||
Just do something like this (notice the capitalization):
|
||||
You can use help to show the **categories** too, generally called cogs,
|
||||
by doing the following (notice the capitalization):
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
@@ -122,7 +122,7 @@ To get the description of a subcommand, type this:
|
||||
|
||||
When using subcommands, you also need to specify the command group.
|
||||
As an example, ``cleanup`` has 6 subcommands. If you want
|
||||
to use one, do it like this: ``[p]cleanup messages 10``
|
||||
to use one of them, do: ``[p]cleanup messages 10``
|
||||
|
||||
.. _getting-started-cogs:
|
||||
|
||||
@@ -217,7 +217,7 @@ Server owner
|
||||
~~~~~~~~~~~~
|
||||
|
||||
The server owner can access all commands on his guild, except the global
|
||||
ones or those who can interact with system files (available for the
|
||||
ones or those that can interact with system files (available for the
|
||||
bot owner).
|
||||
|
||||
~~~~~~~~~~~~~
|
||||
@@ -237,12 +237,13 @@ Moderator
|
||||
A moderator is a step above the average users. You can set multiple moderator
|
||||
roles with the ``[p]set addmodrole`` and ``[p]set removemodrole`` commands.
|
||||
|
||||
For example, in the mod cog (again), a mod will be able to mute, kick and ban;
|
||||
but he won't be able to modify the cog settings with the ``[p]modset`` command.
|
||||
For example, in the filter cog, a mod will be able to use the various commands
|
||||
under ``[p]filter`` (such as adding and removing filtered words), but they will
|
||||
not be able to modify the cog settings with the ``[p]filterset`` command.
|
||||
|
||||
.. tip::
|
||||
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.
|
||||
|
||||
.. _getting-started-hosting:
|
||||
@@ -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.
|
||||
|
||||
.. tip:: If the command show something like ``[lavalinkset|llset]``, that means
|
||||
you can invoke the command with ``lavalinkset`` or with ``llset``, this is
|
||||
called an alias.
|
||||
* **Aliases**
|
||||
|
||||
Each command may have one or more aliases, which are alternative command names
|
||||
you can use to invoke the same command. For example, ``[p]set colour`` can also
|
||||
be invoked with ``[p]set color``. If there are aliases for a command, they will
|
||||
appear just under the syntax.
|
||||
|
||||
* **Description**
|
||||
|
||||
|
||||
@@ -145,6 +145,7 @@ Free Hosting
|
||||
Oracle Cloud and Google Cloud offer always free tiers with limited resources.
|
||||
|
||||
| Additionally, new Google Cloud customers get a $300 credit which is valid for 3 months.
|
||||
New Oracle Cloud customers also get $300 of free credit, but only valid for 30 days.
|
||||
|
||||
| Excluding the above, there is no recommended free VPS host. Persuasion of
|
||||
another individual for hosting Red is an option, albeit low in success rate.
|
||||
|
||||
@@ -33,6 +33,7 @@ Welcome to Red - Discord Bot's documentation!
|
||||
:caption: User guides:
|
||||
|
||||
getting_started
|
||||
intents
|
||||
cog_guides/admin
|
||||
cog_guides/alias
|
||||
cog_guides/bank
|
||||
|
||||
@@ -8,7 +8,7 @@ Installing Red on Linux or Mac
|
||||
|
||||
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>`_.
|
||||
<https://www.digitalocean.com/community/tutorials/how-to-create-a-new-sudo-enabled-user-on-ubuntu-20-04-quickstart>`_.
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
@@ -17,7 +17,7 @@ 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!**
|
||||
- Python 3.8.1 or greater
|
||||
- Pip 18.1 or greater
|
||||
- Git 2.11+
|
||||
- Java Runtime Environment 11 (for audio support)
|
||||
@@ -40,11 +40,6 @@ Operating systems
|
||||
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
|
||||
@@ -76,7 +71,7 @@ In order to install Git 2.11 or greater, we recommend adding the IUS repository:
|
||||
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>`.
|
||||
Complete the rest of the installation by `installing Python 3.9 with pyenv <install-python-pyenv>`.
|
||||
|
||||
----
|
||||
|
||||
@@ -94,16 +89,16 @@ CentOS and RHEL 8
|
||||
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>`.
|
||||
Complete the rest of the installation by `installing Python 3.9 with pyenv <install-python-pyenv>`.
|
||||
|
||||
----
|
||||
|
||||
.. _install-debian:
|
||||
.. _install-raspbian:
|
||||
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
Debian and Raspbian Buster
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
Debian 10 Buster and Raspberry Pi OS
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
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:
|
||||
@@ -114,7 +109,25 @@ Debian/Raspbian Buster. This guide will tell you how. First, run the following c
|
||||
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>`.
|
||||
Complete the rest of the installation by `installing Python 3.9 with pyenv <install-python-pyenv>`.
|
||||
|
||||
---
|
||||
|
||||
.. _install-debian11:
|
||||
|
||||
~~~~~~~~~~~~~~~~~~~~
|
||||
Debian 11 Bullseye
|
||||
~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
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
|
||||
|
||||
Continue by `creating-venv-linux`.
|
||||
|
||||
----
|
||||
|
||||
@@ -124,12 +137,12 @@ Complete the rest of the installation by `installing Python 3.8 with pyenv <inst
|
||||
Fedora Linux
|
||||
~~~~~~~~~~~~
|
||||
|
||||
Fedora Linux 32 and above has all required packages available in official repositories. Install
|
||||
Fedora Linux 33 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
|
||||
sudo dnf -y install python39 git java-11-openjdk-headless @development-tools nano
|
||||
|
||||
Continue by `creating-venv-linux`.
|
||||
|
||||
@@ -153,8 +166,8 @@ one-by-one:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
brew install python@3.8
|
||||
echo 'export PATH="/usr/local/opt/python@3.8/bin:$PATH"' >> ~/.profile
|
||||
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
|
||||
@@ -172,7 +185,7 @@ openSUSE
|
||||
openSUSE Leap 15.2+
|
||||
*******************
|
||||
|
||||
We recommend installing a community package to get Python 3.8 on openSUSE Leap 15.2+. This package will
|
||||
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:
|
||||
@@ -187,7 +200,7 @@ 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 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
|
||||
@@ -198,11 +211,16 @@ Since Python is now installed to ``/opt/python``, we should add it to PATH. You
|
||||
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:
|
||||
Now, bootstrap pip with ensurepip:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo /opt/python/bin/easy_install-3.8 pip
|
||||
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.
|
||||
|
||||
Continue by `creating-venv-linux`.
|
||||
|
||||
@@ -214,7 +232,7 @@ with zypper:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo zypper -n install python38-base python38-pip git-core java-11-openjdk-headless nano
|
||||
sudo zypper -n install python39-base python39-pip git-core java-11-openjdk-headless nano
|
||||
sudo zypper -n install -t pattern devel_basis
|
||||
|
||||
Continue by `creating-venv-linux`.
|
||||
@@ -235,7 +253,7 @@ We recommend adding the ``git-core`` ppa to install Git 2.11 or greater:
|
||||
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:
|
||||
We recommend adding the ``deadsnakes`` ppa to install Python 3.9:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
@@ -245,7 +263,7 @@ 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
|
||||
sudo apt -y install python3.9 python3.9-dev python3.9-venv python3-pip git openjdk-11-jre-headless build-essential nano
|
||||
|
||||
Continue by `creating-venv-linux`.
|
||||
|
||||
@@ -269,7 +287,7 @@ 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
|
||||
sudo apt -y install python3.9 python3.9-dev python3.9-venv python3-pip git openjdk-11-jre-headless build-essential nano
|
||||
|
||||
Continue by `creating-venv-linux`.
|
||||
|
||||
@@ -297,7 +315,7 @@ installing pyenv. To do this, first run the following commands:
|
||||
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>`.
|
||||
And then complete the rest of the installation by `installing Python 3.9 with pyenv <install-python-pyenv>`.
|
||||
|
||||
----
|
||||
|
||||
@@ -312,7 +330,7 @@ Installing Python with pyenv
|
||||
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.
|
||||
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.
|
||||
|
||||
@@ -327,7 +345,7 @@ Then run the following command:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
CONFIGURE_OPTS=--enable-optimizations pyenv install 3.8.10 -v
|
||||
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
|
||||
@@ -339,9 +357,9 @@ After that is finished, run:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
pyenv global 3.8.10
|
||||
pyenv global 3.9.7
|
||||
|
||||
Pyenv is now installed and your system should be configured to run Python 3.8.
|
||||
Pyenv is now installed and your system should be configured to run Python 3.9.
|
||||
|
||||
Continue by `creating-venv-linux`.
|
||||
|
||||
@@ -381,7 +399,7 @@ Create your virtual environment with the following command:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
python3.8 -m venv ~/redenv
|
||||
python3.9 -m venv ~/redenv
|
||||
|
||||
And activate it with the following command:
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ Installing the pre-requirements
|
||||
Please install the pre-requirements by following instructions from one of the following subsections.
|
||||
|
||||
The pre-requirements are:
|
||||
- Python 3.8.1 or greater; **Python 3.9 is currently not supported!**
|
||||
- Python 3.8.1 or greater
|
||||
- Pip 18.1 or greater
|
||||
- Git 2.11+
|
||||
- Java Runtime Environment 11 (for audio support)
|
||||
@@ -40,7 +40,7 @@ Then run each of the following commands:
|
||||
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
|
||||
choco upgrade git --params "/GitOnlyOnPath /WindowsTerminal" -y
|
||||
choco upgrade visualstudio2019-workload-vctools -y
|
||||
choco upgrade python3 -y --version 3.8.10
|
||||
choco upgrade python3 -y --version 3.9.7
|
||||
|
||||
For Audio support, you should also run the following command before exiting:
|
||||
|
||||
@@ -64,7 +64,7 @@ Manually installing dependencies
|
||||
|
||||
* `MSVC Build tools <https://www.visualstudio.com/downloads/#build-tools-for-visual-studio-2019>`_
|
||||
|
||||
* `Python 3.8.1 or greater <https://www.python.org/downloads/>`_; **Python 3.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
|
||||
you may run into issues when trying to run Red.
|
||||
@@ -111,7 +111,7 @@ Then create your virtual environment with the following command
|
||||
|
||||
.. prompt:: batch
|
||||
|
||||
py -3.8 -m venv "%userprofile%\redenv"
|
||||
py -3.9 -m venv "%userprofile%\redenv"
|
||||
|
||||
And activate it with the following command
|
||||
|
||||
|
||||
137
docs/intents.rst
Normal file
137
docs/intents.rst
Normal file
@@ -0,0 +1,137 @@
|
||||
.. _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 <https://gist.github.com/spiralw/091714718718379b6efcdbcaf807a024#q-what-usecases-will-be-valid>`_
|
||||
what those even entail 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 <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>`_
|
||||
that they will want your bot to have slash commands when you ask for message intent. |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.
|
||||
@@ -214,7 +214,7 @@ def _early_init():
|
||||
_ensure_no_colorama()
|
||||
|
||||
|
||||
__version__ = "3.4.13.dev1"
|
||||
__version__ = "3.4.13"
|
||||
version_info = VersionInfo.from_str(__version__)
|
||||
|
||||
# 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
|
||||
# DeprecationWarning: an integer is required (got type float). Implicit conversion to integers using __int__ is deprecated, and may be removed in a future version of Python.
|
||||
_warnings.filterwarnings("ignore", category=DeprecationWarning, module="importlib", lineno=219)
|
||||
# DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10
|
||||
# stdin, stdout, stderr = await tasks.gather(stdin, stdout, stderr,
|
||||
# this is a bug in CPython
|
||||
_warnings.filterwarnings(
|
||||
"ignore",
|
||||
category=DeprecationWarning,
|
||||
module="asyncio",
|
||||
message="The loop argument is deprecated since Python 3.8",
|
||||
)
|
||||
|
||||
@@ -18,6 +18,7 @@ from pathlib import Path
|
||||
from typing import NoReturn
|
||||
|
||||
import discord
|
||||
import rich
|
||||
|
||||
# Set the event loop policies here so any subsequent `new_event_loop()`
|
||||
# calls, in particular those as a result of the following imports,
|
||||
@@ -84,8 +85,7 @@ def debug_info():
|
||||
os_info = platform.mac_ver()
|
||||
osver = "Mac OSX {} {}".format(os_info[0], os_info[2])
|
||||
else:
|
||||
os_info = distro.linux_distribution()
|
||||
osver = "{} {}".format(os_info[0], os_info[1]).strip()
|
||||
osver = f"{distro.name()} {distro.version()}".strip()
|
||||
user_who_ran = getpass.getuser()
|
||||
info = (
|
||||
"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(1)
|
||||
except discord.PrivilegedIntentsRequired:
|
||||
print(
|
||||
console = rich.get_console()
|
||||
console.print(
|
||||
"Red requires all Privileged Intents to be enabled.\n"
|
||||
"You can find out how to enable Privileged Intents with this guide:\n"
|
||||
"https://docs.discord.red/en/stable/bot_application_guide.html#enabling-privileged-intents"
|
||||
"https://docs.discord.red/en/stable/bot_application_guide.html#enabling-privileged-intents",
|
||||
style="red",
|
||||
)
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
@@ -450,45 +450,64 @@ class Admin(commands.Cog):
|
||||
pass
|
||||
|
||||
@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!
|
||||
"""
|
||||
if not self.pass_user_hierarchy_check(ctx, role):
|
||||
await ctx.send(
|
||||
_(
|
||||
"I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
).format(role=role)
|
||||
)
|
||||
return
|
||||
async with self.config.guild(ctx.guild).selfroles() as curr_selfroles:
|
||||
if role.id not in curr_selfroles:
|
||||
curr_selfroles.append(role.id)
|
||||
await ctx.send(_("Added."))
|
||||
current_selfroles = await self.config.guild(ctx.guild).selfroles()
|
||||
for role in roles:
|
||||
if not self.pass_user_hierarchy_check(ctx, role):
|
||||
await ctx.send(
|
||||
_(
|
||||
"I cannot let you add {role.name} as a selfrole because that role is"
|
||||
" higher than or equal to your highest role in the Discord hierarchy."
|
||||
).format(role=role)
|
||||
)
|
||||
return
|
||||
if role.id not in current_selfroles:
|
||||
current_selfroles.append(role.id)
|
||||
else:
|
||||
await ctx.send(
|
||||
_('The role "{role.name}" is already a selfrole.').format(role=role)
|
||||
)
|
||||
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")
|
||||
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!
|
||||
"""
|
||||
if not self.pass_user_hierarchy_check(ctx, role):
|
||||
await ctx.send(
|
||||
_(
|
||||
"I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
).format(role=role)
|
||||
)
|
||||
return
|
||||
async with self.config.guild(ctx.guild).selfroles() as curr_selfroles:
|
||||
curr_selfroles.remove(role.id)
|
||||
current_selfroles = await self.config.guild(ctx.guild).selfroles()
|
||||
for role in roles:
|
||||
if not self.pass_user_hierarchy_check(ctx, role):
|
||||
await ctx.send(
|
||||
_(
|
||||
"I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
).format(role=role)
|
||||
)
|
||||
return
|
||||
current_selfroles.remove(role.id)
|
||||
|
||||
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()
|
||||
@checks.is_owner()
|
||||
|
||||
@@ -17,5 +17,7 @@ class SelfRole(commands.Converter):
|
||||
selfroles = await admin.config.guild(ctx.guild).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
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Afrikaans\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -213,49 +213,57 @@ msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
@@ -271,7 +279,7 @@ msgstr ""
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -237,51 +237,57 @@ msgstr "تطبيق الرتبالذاتية."
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" إضافة رتبة إلى قائمة الرتب الذاتية المتوفرة.\n\n"
|
||||
" ملاحظة: الرتبة حساس للحالة!\n"
|
||||
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."
|
||||
msgstr "لا يمكنني السماح لك بإضافة {role.name} لرتبة ذاتي لأن هذا الرتبة أعلى من أو يساوي أعلى رتبةك في التسلسل الهرمي لـ Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
msgstr "لقد قمت بنجاح بإضافة {role.name} إلى {member.display_name}"
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "الرتبة المذكورة ليست على قائمة الرتب الذاتية."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:476
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr "لا يمكنني السماح لك بإزالة {role.name} من كونه رتبةًا ذاتيًا لأن هذا الرتبة أعلى من أو يساوي أعلى رتبة لك في التسلسل الهرمي Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
msgstr "لقد قمت بنجاح بإزالة {role.name} من {member.display_name}"
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "قفل البوت للسيرفر الحالي فقط."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "لم يعد البوت مقفول للسيرفر الحالي فقط."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "لقد تم قفل البوت للسيرفر الحالي فقط."
|
||||
|
||||
@@ -297,7 +303,7 @@ msgstr "لم أستطع أن أعلن للخوادم التالية:"
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr "لم يتم تحميل وحدة الأدمن cog."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "الرتبة المذكورة ليست على قائمة الرتب الذاتية."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -221,49 +221,57 @@ msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
msgstr "Добавено."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "Тази роля вече е самостоятелна роля."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:476
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
msgstr "Премахнато."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Заключете бота само за текущите му сървъри."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Ботът вече не е заключен за сървъри."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Ботът е заключен за сървъри."
|
||||
|
||||
@@ -279,7 +287,7 @@ msgstr "Не можах да обявя в следните сървъри: "
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr "Admin cog не беше зареден."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "Предоставената роля не е валидна самостоятелна роля."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Bosnian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -213,49 +213,57 @@ msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
@@ -271,7 +279,7 @@ msgstr ""
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Catalan\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -252,55 +252,57 @@ msgstr "Gestiona selfroles."
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Afegeix un rol a la llista de selfroles disponibles.\n\n"
|
||||
" NOTA: El rol és sensible a majúscules!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Added."
|
||||
msgstr "Afegit."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "Aquest rol ja és un selfrole."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Treu un rol de la llista de selfroles disponibles.\n\n"
|
||||
" NOTA: El rol és sensible a majúscules!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Removed."
|
||||
msgstr "Esborrat."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr "El cog Admin no s'ha carregat."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "El rol proporcionat no és un selfrole vàlid."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Czech\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -248,55 +248,57 @@ msgstr "Spravovat self-role."
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Přidá roli do seznamu dostupných self-rolí.\n\n"
|
||||
" POZNÁMKA: Role je citlivá na malá a velká písmena!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Added."
|
||||
msgstr "Přidáno."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "Tato role je již self-rolí."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Odstraní roli ze seznamu dostupných self-rolí.\n\n"
|
||||
" POZNÁMKA: Role je citlivá na malá a velká písmena!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Removed."
|
||||
msgstr "Odstraněno."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr "Admin cog není načten."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "Daná role není platná self-role."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Danish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -213,49 +213,57 @@ msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
msgstr "Tilføjet."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
msgstr "Fjernet."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr "Admin cog er ikke indlæst."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "Den vedlagte rolle er ikke en valid selvrolle."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: German\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -252,55 +252,57 @@ msgstr "Selbst hinzufügbare Rollen verwalten."
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Füge eine Rolle zur Liste der selbst hinzufügbaren Rollen hinzu.\n\n"
|
||||
" HINWEIS: Beachte Groß- und Kleinschreibung!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Added."
|
||||
msgstr "Hinzugefügt."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "Diese Rolle ist bereits selbst hinzufügbar."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Entferne eine Rolle von der Liste der selbst hinzufügbaren Rollen.\n\n"
|
||||
" HINWEIS: Beachte Groß- und Kleinschreibung!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Removed."
|
||||
msgstr "Entfernt."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr "Das Admin-Cog ist nicht geladen."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "Die angegebene Rolle ist keine gültige selbst auswählbare Rolle."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Greek\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -213,49 +213,57 @@ msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
@@ -271,7 +279,7 @@ msgstr ""
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -21,7 +21,7 @@ msgstr "Intenté hacer algo que Discord me ha negado el permiso. Su comando no s
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
msgid "I can not give {role.name} to {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
|
||||
msgstr "No puedo dar el rol{role.name} a {member.display_name} porque ese rol es mayor o igual a mi rol más alto en la jerarquía de Discord."
|
||||
msgstr "No puedo dar el rol {role.name} a {member.display_name} porque ese rol es mayor o igual a mi rol más alto en la jerarquía de Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
msgid "I can not remove {role.name} from {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
|
||||
@@ -252,55 +252,57 @@ msgstr "Gestionar selfroles."
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Añade un rol a la lista de selfroles disponibles.\n\n"
|
||||
" NOTA: ¡El rol es sensible a mayúsculas\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Added."
|
||||
msgstr "Añadido."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "Ese rol ya es un selfrole."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Quita un rol de la lista de selfroles disponibles.\n\n"
|
||||
" NOTA: El rol es sensible a mayúsculas\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Removed."
|
||||
msgstr "Eliminado."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr "El cog Admin no está cargado."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "El rol proporcionado no es un selfrole válido."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Finnish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -45,7 +45,7 @@ msgstr "En voi antaa sinun muokata roolia {role.name}, koska rooli on korkeammal
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
msgstr "Tarvitsen \"Muokkaa Rooleja\" oikeudet tehdäkseni tuon."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
@@ -197,7 +197,9 @@ msgid "\n"
|
||||
" Server admins must have configured the role as user settable.\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
|
||||
#, docstring
|
||||
@@ -248,55 +250,57 @@ msgstr "Hallitse selfroleja."
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Lisää rooli saatavilla olevien selfrolien luetteloon.\n\n"
|
||||
" HUOM: Rooli on kirjainkoolla herkkä!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Added."
|
||||
msgstr "Lisätty."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "Tämä rooli on jo selfrole."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Lisää rooli saatavilla olevien selfrolien luetteloon.\n\n"
|
||||
" HUOM: Rooli on kirjainkoolla herkkä!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Removed."
|
||||
msgstr "Poistettu."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
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."
|
||||
msgstr "Botti ei ole enää palvelinlukittu."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Botti on nyt palvelinlukittu."
|
||||
|
||||
@@ -312,7 +316,7 @@ msgstr "En voinut ilmoittaa seuraavalle palvelimelle: "
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr "Admin cog ei ole ladattu."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "Annettu rooli ei ole kelvollinen selfrole."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -252,55 +252,57 @@ msgstr "Gérer les auto-roles."
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
"Ajouter un rôle à la liste des auto-rôles disponibles.\n\n"
|
||||
" NOTE : Le nom du rôle est sensible aux majuscules et minuscules !\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Added."
|
||||
msgstr "Ajouté."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "Ce rôle est déjà un selfrole."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Supprimer un rôle de la liste des auto-rôles.\n\n"
|
||||
" REMARQUE : Le nom du rôle est sensible aux majuscules et minuscules !\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Removed."
|
||||
msgstr "Retiré."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
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."
|
||||
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."
|
||||
msgstr "Le bot est maintenant verrouillé sur ses serveurs actuels."
|
||||
|
||||
@@ -316,7 +318,7 @@ msgstr "Je n'ai pas pu annoncer aux serveurs suivants : "
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr "Le cog Admin n'est pas chargé."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "Le rôle fourni n'est pas un auto-rôle valide."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Hebrew\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -213,49 +213,57 @@ msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
msgstr "נוסף."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
msgstr "הוסר."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
@@ -271,7 +279,7 @@ msgstr ""
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Hindi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -213,49 +213,57 @@ msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
@@ -271,7 +279,7 @@ msgstr ""
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -213,49 +213,57 @@ msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
@@ -271,7 +279,7 @@ msgstr ""
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Indonesian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -245,55 +245,57 @@ msgstr "Kelola Roles diri sendiri."
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Tambahkan role ke daftar role diri sendiri yang tersedia.\n\n"
|
||||
" NOTE: Peran peka huruf besar / kecil!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Added."
|
||||
msgstr "Ditambahkan."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "Role itu sudah menjadi role diri sendiri."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Tambahkan role ke daftar role diri sendiri yang tersedia.\n\n"
|
||||
" NOTE: Role peka huruf besar / kecil!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Removed."
|
||||
msgstr "Dihapus."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
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."
|
||||
msgstr "Bot tidak lagi terkunci server."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Bot sekarang terkunci server."
|
||||
|
||||
@@ -309,7 +311,7 @@ msgstr "Saya tidak dapat mengumumkan ke server berikut: "
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr "Cog Admin belum/tidak dimuat."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "Role yang diberikan bukan role diri sendiri yang valid."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Italian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -243,53 +243,57 @@ msgstr "Gestisci i ruoli assegnabili dall'utente."
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
"Aggiungi un ruolo alla lista dei ruoli assegnabili dall'utente.\n\n"
|
||||
"NOTA: Il ruolo è caso sensitivo! "
|
||||
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."
|
||||
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
|
||||
msgid "Added."
|
||||
msgstr "Aggiunto."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "Quel ruolo è già un ruolo assegnabile dall'utente."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
"Rimuovi un ruolo dalla lista dei ruoli assegnabili dall'utente.\n\n"
|
||||
"NOTA: Il ruolo è caso sensitivo! "
|
||||
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."
|
||||
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
|
||||
msgid "Removed."
|
||||
msgstr "Rimosso."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr "Il cog Admin non è caricato."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "Il ruolo fornito non è un ruolo assegnabile dall'utente valido."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Japanese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -213,52 +213,57 @@ msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
msgstr "追加されました"
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "その役割はすでに自己役割v"
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" 使用可能な自己役割のリストから役割を削除します。\n\n"
|
||||
" 注:役割では大文字と小文字が区別されます!\n"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
msgstr "削除されました"
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Botを現在のサーバーにのみロックします。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Botはもうサーバーロックされていません。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Botはサーバーロックされました。"
|
||||
|
||||
@@ -274,7 +279,7 @@ msgstr "以下のサーバーに通知できませんでした: "
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr "管理者コグがロードされていません。"
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "与えられたロールは有効な自己ロールではありません。"
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Korean\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -17,60 +17,60 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr ""
|
||||
msgstr "제가 사용할 수 없는 기능이 포함되어 당신의 요청을 수행할 수 없었어요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
msgid "I can not give {role.name} to {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
msgstr "{role.name} 역할을 {member.display_name}님에게 지급할 수 없었어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
msgid "I can not remove {role.name} from {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
msgstr "{role.name} 역할을 {member.display_name}님에게서 뺏을 수 없었어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
msgstr "{role.name} 역할을 수정할 수 없었어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
msgid "I can not let you give {role.name} to {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
msgstr "당신은 {role.name} 역할을 {member.display_name}님에게 부여할 수 없어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
msgid "I can not let you remove {role.name} from {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
msgstr "당신은 {role.name} 역할을 {member.display_name}님에게서 뺏을 수 없어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
msgid "I can not let you edit {role.name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
msgstr "당신은 {role.name} 역할을 수정할 수 없어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
msgstr "이 작업을 수행하려면 \"역할 관리\" 권한이 필요해요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr ""
|
||||
msgstr "이미 공지하고 있어요. 다른 공지를 보내고 싶다면 `{prefix}announce cancel`을 사용해주세요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr ""
|
||||
msgstr "서버 관리를 위한 기능 모음"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr ""
|
||||
msgstr "{member.display_name}님은 이미 {role.name} 역할을 가지고 있어요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr ""
|
||||
msgstr "{member.display_name}님에게 {role.name} 역할을 부여했어요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr ""
|
||||
msgstr "{member.display_name}님은 {role.name} 역할을 가지고 있지 않아요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr ""
|
||||
msgstr "{member.display_name}님에게서 {role.name} 역할을 삭제했어요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#, docstring
|
||||
@@ -79,7 +79,11 @@ msgid "\n"
|
||||
" Use double quotes if the role contains spaces.\n"
|
||||
" If user is left blank it defaults to the author of the command.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "\n"
|
||||
" 유저에게 역할을 추가해요.\n\n"
|
||||
" 역할 이름에 띄어쓰기가 있으면 큰따옴표를 사용해주세요.\n"
|
||||
" 유저를 지정하지 않으면 명령어 실행자에게 역할을 지급해요.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#, docstring
|
||||
@@ -88,7 +92,11 @@ msgid "\n"
|
||||
" Use double quotes if the role contains spaces.\n"
|
||||
" If user is left blank it defaults to the author of the command.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "\n"
|
||||
" 유저에게서 역할을 삭제해요.\n\n"
|
||||
" 역할 이름에 띄어쓰기가 있으면 큰따옴표를 사용해주세요.\n"
|
||||
" 유저를 지정하지 않으면 명령어 실행자에게서 역할을 뺏어요.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#, docstring
|
||||
@@ -213,49 +221,57 @@ msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
msgstr "추가됐어요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
msgstr "제거됐어요."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
@@ -271,7 +287,7 @@ msgstr "다음과 같은 서버에 알릴 수 없어요. : "
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr "관리자 cog가 로드되지 않았어요."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Norwegian Bokmal\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -255,55 +255,57 @@ msgstr "Behandle selvroller."
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
"Legg til en rolle i listen over tilgjengelige selvroller.\n\n"
|
||||
"MERKNAD: Rollen er store og små bokstaver!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Added."
|
||||
msgstr "Lagt til."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "Den rollen er allerede en selvrolle."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
"Fjern en rolle fra listen over tilgjengelige selvroller.\n\n"
|
||||
"MERKNAD: Rollen er store og små bokstaver!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Removed."
|
||||
msgstr "Fjernet."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Lås bare en bot til sine nåværende servere."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
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."
|
||||
msgstr "Bot er nå serverlåst."
|
||||
|
||||
@@ -319,7 +321,7 @@ msgstr "Jeg kunne ikke kunngjøre følgende servere: "
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr "Admin cog er ikke lastet."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "Den oppgitte rollen er ikke en gyldig selvrolle."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Dutch\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -248,55 +248,57 @@ msgstr "Beheer zelfrollen."
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Voeg een rol toe aan de lijst van beschikbare zelfrollen.\n\n"
|
||||
" Let op: hoofdlettergevoelig!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Added."
|
||||
msgstr "Toegevoegd."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "Die rol is al een zelfrol."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Verwijder een rol van de lijst van beschikbare zelfrollen.\n\n"
|
||||
" OPMERKING: De rol is hoofdlettergevoelig!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Removed."
|
||||
msgstr "Verwijderd."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
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."
|
||||
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."
|
||||
msgstr "De bot is vergrendeld."
|
||||
|
||||
@@ -312,7 +314,7 @@ msgstr "Ik kon de volgende servers niet aankondigen: "
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr "De admin cog is niet geladen."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "De ingevulde rol is geen beschikbare selfrole."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Polish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -248,55 +248,57 @@ msgstr "Zarządzaj rolami do samodzielnego przypisania."
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Dodaje rolę do listy dostępnych roli do samodzielnego przypisania.\n\n"
|
||||
" UWAGA: Wielkość liter ma znaczenie!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Added."
|
||||
msgstr "Dodano."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "Ta rola jest już rolą do samodzielnego przypisania."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Usuwa rolę z listy roli do samodzielnego przypisania.\n\n"
|
||||
" UWAGA: Wielkość liter ma znaczenie!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Removed."
|
||||
msgstr "Usunięto."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr "Moduł Admin nie jest załadowany."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "Podana rola nie jest poprawną rolą samodzielnego przypisania."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -17,7 +17,7 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Eu tentei fazer algo que o Discord me negou as permissões. 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
|
||||
msgid "I can not give {role.name} to {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
|
||||
@@ -45,7 +45,7 @@ msgstr "Não posso deixar você alterar o cargo {role.name} porque este cargo é
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
msgstr "Eu preciso da permissão \"Gerenciar Funções\" para fazer isso."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
@@ -176,7 +176,10 @@ msgid "\n"
|
||||
" Change the channel where the bot will send announcements.\n\n"
|
||||
" If channel is left blank it defaults to the current channel.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
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
|
||||
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
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
msgstr "Desativa o canal para anúncios."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#, docstring
|
||||
@@ -194,7 +197,11 @@ msgid "\n"
|
||||
" Server admins must have configured the role as user settable.\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
|
||||
#, docstring
|
||||
@@ -245,55 +252,63 @@ msgstr "Gerenciar cargos autoatribuíveis."
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgstr "\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."
|
||||
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
|
||||
msgid "Added."
|
||||
msgstr "Adicionado."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr "O cargo \"{role.name}\" já é um cargo auto atribuível."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "Este cargo já é autoatribuível."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Remove um cargo da lista de cargos autoatribuíveis.\n\n"
|
||||
" NOTA: o nome do cargo diferencia entre maiúsculas e minúsculas!\n"
|
||||
" Remove um cargo, ou um conjunto de cargos, da lista de cargos autoatribuíveis disponíveis.\n\n"
|
||||
" NOTA: o nome do cargo é sensível á letras maiúsculas e minúsculas!\n"
|
||||
" "
|
||||
|
||||
#: 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."
|
||||
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
|
||||
msgid "Removed."
|
||||
msgstr "Removido."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr "O cog 'Admin' não está carregado."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "O cargo fornecido não é um cargo autoatribuível válido."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr "O cargo \"{role_name}\" não é um cargo autoatribuivel valido."
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Portuguese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -29,11 +29,11 @@ msgstr "Não posso remover {role.name} de {member.display_name} porque esse carg
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
msgstr "Não posso editar {role.name} porque esse cargo é igual ou maior à minha hierarquia no Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
msgid "I can not let you give {role.name} to {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
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
|
||||
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
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
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."
|
||||
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."
|
||||
msgstr "O bot está agora bloqueado aos servidores atuais."
|
||||
|
||||
@@ -271,7 +279,7 @@ msgstr ""
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr "O cog 'Admin' não está carregado."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "O cargo indicado não é um cargo definível válido."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Romanian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -213,49 +213,57 @@ msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
@@ -271,7 +279,7 @@ msgstr ""
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Russian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -45,7 +45,7 @@ msgstr "Я не могу позволить вам редактировать р
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
msgstr "Для этого мне нужно разрешение «Управление Ролями»."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
@@ -118,10 +118,10 @@ msgstr "\n"
|
||||
" Изменить цвет роли.\n\n"
|
||||
" Используйте двойные кавычки, если роль содержит пробелы.\n"
|
||||
" Цвет должен быть в шестнадцатеричном формате.\n"
|
||||
" [Онлайн-палитра цветов](http://www.w3schools.com/colors/colors_picker.asp)\n\n"
|
||||
" [Онлайн выбор цвета](http://www.w3schools. om/colors/colors_picker.asp)\n\n"
|
||||
" Примеры:\n"
|
||||
" `[p]editrole colour \"The Transistor\" #ff0000`\n"
|
||||
" `[p]editrole colour Test #ff9900`\n"
|
||||
" `[p]edit role color \"The Transistor\" #ff00`\n"
|
||||
" `[p]edit role color Test #ff9900`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
@@ -139,8 +139,8 @@ msgid "\n"
|
||||
msgstr "\n"
|
||||
" Изменить название роли.\n\n"
|
||||
" Используйте двойные кавычки, если роль или имя содержат пробелы.\n\n"
|
||||
" Примеры:\n"
|
||||
" `[p]editrole name \"The Transistor\" Test`\n"
|
||||
" Пример:\n"
|
||||
" `[p]edit role name \"The Transistor\" Test`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
@@ -200,7 +200,7 @@ msgid "\n"
|
||||
msgstr "\n"
|
||||
" Удалить свою роль у себя.\n\n"
|
||||
" Администраторы сервера должны настроить роль как устанавливаемую пользователем.\n"
|
||||
" ПРИМЕЧАНИЕ: Роль чувствительна к размерчикам!\n"
|
||||
" ПРИМЕЧАНИЕ: Роль чувствительна к размером!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
@@ -252,55 +252,63 @@ msgstr "Управление своими ролями."
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgstr "\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."
|
||||
msgstr "Нельзя добавить {role.name} в качестве собственной роли, потому что эта роль выше или равна вашей самой высшей роли в иерархии Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
msgstr "Добавлено."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr "Роль \"{role.name}\" уже является саморолью."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "У вас уже имеется эта роль."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr "Добавлена {count} саморолей."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:476
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr "Добавлена 1 самороль."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Удалить роль из списка доступных собственных ролей.\n\n"
|
||||
" Удалить роль или выбор ролей из списка доступных ролей.\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."
|
||||
msgstr "Вы не можете забрать у себя роль {role.name}, потому что эта роль выше или равна вашей самой высокой роли в иерархии Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
msgstr "Удалено."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr "Удалены {count} саморолей."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr "Удалена 1 самороль."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Зафиксировать бота только на его текущих серверах."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Бот больше не зафиксирован на сервере."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Бот теперь зафиксирован на сервере."
|
||||
|
||||
@@ -316,7 +324,7 @@ msgstr "Я не могу объявить на следующих сервера
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr "Модуль Admin не загружен."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "Предоставленная роль не является допустимой ролью."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr "Роль \"{role_name}\" не является допустимой саморолью."
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Slovak\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -253,55 +253,57 @@ msgstr "Spravovať self-role."
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Pridať rolu do zoznamu dostupných self-rolí.\n\n"
|
||||
" POZNÁMKA: Rola je citlivá na malé a veľké písmena!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Added."
|
||||
msgstr "Pridané."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "Táto rola je už self-rola."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Odstráni rolu zo zoznamu dostupných self-rolí.\n\n"
|
||||
" POZNÁMKA: Rola je citlivá na malé a veľké písmena!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Removed."
|
||||
msgstr "Odstránené."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr "Admin cog nie je načítaný."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "Daná rola nie je platná self-role."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Slovenian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -45,7 +45,7 @@ msgstr "Ne morem ti dovoliti urejati role {role.name} ker je ta rola višja ali
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
msgstr "Potrebujem dovoljenje \"Manage Roles\" za izvršitev tega ukaza."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
@@ -252,55 +252,57 @@ msgstr "Upravlja lastne role."
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Doda rolo na seznam razpoložljivih lastnih rol.\n\n"
|
||||
" POMNI: Rola razlikuje med velikimi in malimi črkami!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Added."
|
||||
msgstr "Dodano."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "Ta rola je že lastna rola."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Odstrani rolo iz seznama razpoložljivih lastnih rol.\n\n"
|
||||
" POMNI: Rola razlikuje med velikimi in malimi črkami!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Removed."
|
||||
msgstr "Odstranjeno."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr "Modul Admin ni naložen."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "Naveden rola ni veljavna lastna rola."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Serbian (Latin)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -213,49 +213,57 @@ msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
@@ -271,7 +279,7 @@ msgstr ""
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Serbian (Cyrillic)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -213,49 +213,57 @@ msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
@@ -271,7 +279,7 @@ msgstr ""
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Swedish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -220,49 +220,57 @@ msgstr "Hantera självroller."
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
msgstr "Tillagd."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "Den rollen är redan en självroll."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
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."
|
||||
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."
|
||||
msgstr "Botten är nu serverlåst."
|
||||
|
||||
@@ -278,7 +286,7 @@ msgstr ""
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr "Admin cog är inte laddad."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "Den angivna rollen är inte en giltig självroll."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Turkish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -250,55 +250,57 @@ msgstr "Kişisel rolleri düzenle."
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Kullanılabilir selfroleler listesine bir rol ekle.\n\n"
|
||||
" NOT: Rol büyük küçük harf duyarlıdır!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Added."
|
||||
msgstr "Eklendi."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
msgstr "Bu rol zaten bir kişisel rol."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Kullanılabilir selfroleler listesinden rol siler.\n\n"
|
||||
" NOT: Rol büyük küçük harf duyarlıdır!\n"
|
||||
" "
|
||||
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."
|
||||
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
|
||||
msgid "Removed."
|
||||
msgstr "Kaldırıldı."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
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."
|
||||
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."
|
||||
msgstr "Botun sunucu kilidi aktif."
|
||||
|
||||
@@ -314,7 +316,7 @@ msgstr "Bu sunuculara duyuru yapamıyorum: "
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr "The Admin eklentisi yüklenmedi."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
msgstr "Girilen kişisel rol geçerli bir kişisel rol değil."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -213,49 +213,57 @@ msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
@@ -271,7 +279,7 @@ msgstr ""
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -216,49 +216,57 @@ msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Khóa lệnh bot cho server hiện tại."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
@@ -274,7 +282,7 @@ msgstr ""
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -17,23 +17,23 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "我试了做一件事情Discord不让我做。你的命令没有完成。"
|
||||
msgstr "我试图做一些Discord没有允许我做的事情。你的命令无法完成"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
msgid "I can not give {role.name} to {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
|
||||
msgstr "我不能加{role.name}到{member.display_name} 应为这个role比我的最高的role高或者一样高"
|
||||
msgstr "我不能将 {role.name} 给 {member.display_name} ,因为这个角色高于或等于我在Discord等级中的最高角色"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
msgid "I can not remove {role.name} from {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
|
||||
msgstr "我不能加{role.name}到{member.display_name} 应为这个role比我的最高的role高或者一样高"
|
||||
msgstr "我不能将 {role.name} 从 {member.display_name} 中移除,因为这个角色高于或等于我在Discord等级中的最高角色"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "我不能能改变{role.name}应为这个role比我的最高的role高或者一样高"
|
||||
msgstr "我不能编辑 {role.name} ,因为该角色高于或等于我在Discord等级中的最高角色"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
msgid "I can not let you give {role.name} to {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "我不能让你加{role.name}到{member.display_name} 应为这个role比你的最高的role高或者一样高"
|
||||
msgstr "我不能让你把 {role.name} 给 {member.display_name} ,因为这个角色高于或等于你在 Discord 等级中的最高角色"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
msgid "I can not let you remove {role.name} from {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
@@ -102,7 +102,7 @@ msgstr "\n"
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "改变角色设定"
|
||||
msgstr "编辑角色设置"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#, docstring
|
||||
@@ -138,7 +138,7 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
msgid "The announcement has begun."
|
||||
msgstr "我开始报告消息了"
|
||||
msgstr "公告开始了"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#, docstring
|
||||
@@ -147,11 +147,11 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr ""
|
||||
msgstr "目前没有正在运行的公告"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr ""
|
||||
msgstr "目前公告已被取消"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#, docstring
|
||||
@@ -164,16 +164,19 @@ msgid "\n"
|
||||
" Change the channel where the bot will send announcements.\n\n"
|
||||
" If channel is left blank it defaults to the current channel.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "\n"
|
||||
" 更改机器人发送公告的频道\n\n"
|
||||
" 如果频道留空,则默认设置为当前频道\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr ""
|
||||
msgstr "公告频道已设置为 {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
msgstr "取消公告频道"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#, docstring
|
||||
@@ -182,7 +185,11 @@ msgid "\n"
|
||||
" Server admins must have configured the role as user settable.\n"
|
||||
" NOTE: The role is case sensitive!\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "\n"
|
||||
" 添加或删除自己的角色\n\n"
|
||||
" 服务器管理员必须配置角色为用户设置\n"
|
||||
" 注意:角色是区分大小写的\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#, docstring
|
||||
@@ -191,7 +198,11 @@ msgid "\n"
|
||||
" Server admins must have configured the role as user settable.\n"
|
||||
" NOTE: The role is case sensitive!\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "\n"
|
||||
" 为你自己添加一个自身角色\n\n"
|
||||
" 服务器管理员必须配置角色为用户设置\n"
|
||||
" 注意:角色是区分大小写的!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#, docstring
|
||||
@@ -222,49 +233,57 @@ msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
@@ -280,7 +299,7 @@ msgstr ""
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Chinese Traditional, Hong Kong\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -213,49 +213,57 @@ msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
msgid "Added {count} selfroles."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
@@ -271,7 +279,7 @@ msgstr ""
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -45,7 +45,7 @@ msgstr "我無法讓你編輯 {role.name} 身分組,因為該身分組位階
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
msgstr "我需要管理權限來完成。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
@@ -234,49 +234,57 @@ msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added."
|
||||
msgstr "已增加"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:472
|
||||
msgid "That role is already a selfrole."
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
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
|
||||
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"
|
||||
" "
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:491
|
||||
msgid "Removed."
|
||||
msgstr "已移除。"
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
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
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:501
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:503
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
@@ -292,7 +300,7 @@ msgstr ""
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/converters.py:20
|
||||
msgid "The provided role is not a valid selfrole."
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ class _TrackingFormatter(Formatter):
|
||||
class Alias(commands.Cog):
|
||||
"""Create aliases for commands.
|
||||
|
||||
Aliases are alternative names shortcuts for commands. They
|
||||
Aliases are alternative names/shortcuts for commands. They
|
||||
can act as both a lambda (storing arguments for repeated use)
|
||||
or as simply a shortcut to saying "x y z".
|
||||
|
||||
@@ -338,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")
|
||||
async def _help_alias(self, ctx: commands.Context, alias_name: str):
|
||||
"""Try to execute help for the base command of the alias."""
|
||||
|
||||
@@ -187,9 +187,10 @@ class AliasCache:
|
||||
|
||||
return None
|
||||
|
||||
async def add_alias(
|
||||
self, ctx: commands.Context, alias_name: str, command: str, global_: bool = False
|
||||
) -> AliasEntry:
|
||||
@staticmethod
|
||||
def format_command_for_alias(command: str) -> str:
|
||||
# This was present in add_alias previously
|
||||
# Made this into a separate method so as to reuse the same code in edit_alias
|
||||
indices = findall(r"{(\d*)}", command)
|
||||
if indices:
|
||||
try:
|
||||
@@ -206,6 +207,12 @@ class AliasCache:
|
||||
+ ", ".join(str(i + low) for i in gaps)
|
||||
)
|
||||
command = command.format(*(f"{{{i}}}" for i in range(-low, high + low + 1)))
|
||||
return command
|
||||
|
||||
async def add_alias(
|
||||
self, ctx: commands.Context, alias_name: str, command: str, global_: bool = False
|
||||
) -> AliasEntry:
|
||||
command = self.format_command_for_alias(command)
|
||||
|
||||
if global_:
|
||||
alias = AliasEntry(alias_name, command, ctx.author.id, None)
|
||||
@@ -225,6 +232,32 @@ class AliasCache:
|
||||
|
||||
return alias
|
||||
|
||||
async def edit_alias(
|
||||
self, ctx: commands.Context, alias_name: str, command: str, global_: bool = False
|
||||
) -> bool:
|
||||
command = self.format_command_for_alias(command)
|
||||
|
||||
if global_:
|
||||
settings = self.config
|
||||
else:
|
||||
settings = self.config.guild(ctx.guild)
|
||||
|
||||
async with settings.entries() as aliases:
|
||||
for index, alias in enumerate(aliases):
|
||||
if alias["name"] == alias_name:
|
||||
alias_edited = AliasEntry.from_json(alias)
|
||||
alias_edited.command = command
|
||||
aliases[index] = alias_edited.to_json()
|
||||
|
||||
if self._cache_enabled:
|
||||
if global_:
|
||||
self._aliases[None][alias_edited.name] = alias_edited
|
||||
else:
|
||||
self._aliases[ctx.guild.id][alias_edited.name] = alias_edited
|
||||
return True
|
||||
|
||||
return False
|
||||
|
||||
async def delete_alias(
|
||||
self, ctx: commands.Context, alias_name: str, global_: bool = False
|
||||
) -> bool:
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Afrikaans\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,13 +18,13 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
" and append them to the stored alias.\n"
|
||||
" "
|
||||
msgstr "إنشاء أسماء مستعارة للأوامر. \\ n \\ n الأسماء المستعارة هي اختصارات أسماء بديلة للأوامر. يمكنهم \\ n العمل كحمل لامدا (تخزين الوسائط للاستخدام المتكرر) \\ n أو ببساطة اختصار للقول \\ \"xyz \". \\ n \\ n عند التشغيل ، ستقبل الأسماء المستعارة أي وسيطات إضافية \\ n وتضيفها إلى الاسم المستعار المخزن. \\ n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:203
|
||||
msgid "Aliases:\n"
|
||||
@@ -91,73 +91,99 @@ msgstr "لقد حاولت إنشاء اسم مستعار عالمي جديد ب
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr "حاول تنفيذ المساعدة للقيادة الأساسية للإسم المستعار."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr "لا يوجد مثل هذا المستخدم"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr "إظهار ما هو الأمر الذي ينفذه الاسم المستعار."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{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}`"
|
||||
msgstr "لا يوجد اسم مستعار باسم `{name}`"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr "لم يتم العثور على الاسم المستعار `{name}`."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr "يحذف اسم مستعار عالمي قائم."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr "قائمة الأسماء المستعارة المتوفرة على هذا السيرفر."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr "قائمة الأسماء المستعارة العامة المتاحة على هذا البوت."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr "يجب أن يتم تحديد الحجج برقم."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr "يجب أن تكون الحجج متتابعة. الحجج المفقودة: "
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr "Този псевдоним не съществува."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Bosnian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Catalan\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Czech\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,13 +18,13 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
" and append them to the stored alias.\n"
|
||||
" "
|
||||
msgstr "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
|
||||
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."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr "Zkuste spustit nápovědu pro základní příkaz aliasů."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr "Žádný takový alias neexistuje."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
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}`"
|
||||
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}`"
|
||||
msgstr "Neexistuje žádný alias s názvem `{name}`"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr "Alias s názvem `{name}` nebyl nalezen."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global 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."
|
||||
msgstr "Pro tohoto bota neexistují žádné globální aliasy."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr "Seznam dostupných aliasů na tomto serveru."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr "Seznam dostupných globálních aliasů pro tohoto bota."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
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."
|
||||
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: "
|
||||
msgstr "Argumenty musí být sekvenční. Chybějící argumenty: "
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Danish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: German\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,20 +18,13 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
" and append them to the stored alias.\n"
|
||||
" "
|
||||
msgstr "Erstelle einen Alias für einen Befehl.\n\n"
|
||||
" 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"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:203
|
||||
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."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
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."
|
||||
msgstr "So ein Alias ist nicht vorhanden."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
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}`"
|
||||
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}`"
|
||||
msgstr "Kein Alias mit dem Namen '{name}' gefunden"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this 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."
|
||||
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."
|
||||
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."
|
||||
msgstr "Kein Alias mit dem Namen '{name}' gefunden."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global 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."
|
||||
msgstr "Ich habe keinen globalen Alias gespeichert."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr "Zeige die auf diesem Server verfügbaren Alias."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this 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."
|
||||
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."
|
||||
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: "
|
||||
msgstr "Argumente müssen sequentiell sein. Fehlende Argumente: "
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Greek\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,19 +18,13 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
" and append them to the stored alias.\n"
|
||||
" "
|
||||
msgstr "Crear alias para comandos.\n\n"
|
||||
" 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"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:203
|
||||
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."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the 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."
|
||||
msgstr "El alias no existe."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
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}`"
|
||||
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}`"
|
||||
msgstr "No hay alias con el nombre `{name}`"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr "El alias con nombre `{name}` no fue encontrado."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
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."
|
||||
msgstr "Este bot no tiene alias globales."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr "Lista de los alias disponibles en este servidor."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this 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."
|
||||
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."
|
||||
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: "
|
||||
msgstr "Los argumentos deben ser secuenciales. Faltan argumentos: "
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Finnish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -28,7 +28,7 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:203
|
||||
msgid "Aliases:\n"
|
||||
msgstr ""
|
||||
msgstr "Aliakset:\n"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:205
|
||||
msgid "\n\n"
|
||||
@@ -39,126 +39,152 @@ msgstr "\n\n"
|
||||
#: redbot/cogs/alias/alias.py:215
|
||||
#, docstring
|
||||
msgid "Manage command aliases."
|
||||
msgstr ""
|
||||
msgstr "Hallinnoi komentojen aliaksia."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:220
|
||||
#, docstring
|
||||
msgid "Manage global aliases."
|
||||
msgstr ""
|
||||
msgstr "Hallitse globaaleja aliaksia."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:227
|
||||
#, docstring
|
||||
msgid "Add an alias for a command."
|
||||
msgstr ""
|
||||
msgstr "Lisää alias komennolle."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:232
|
||||
msgid "You attempted to create a new alias with the name {name} but that name is already a command on this bot."
|
||||
msgstr ""
|
||||
msgstr "Yritit luoda uuden aliaksen nimellä {name}, mutta tämä nimi on käytössä toisella komennolla."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:243
|
||||
msgid "You attempted to create a new alias with the name {name} but that alias already exists."
|
||||
msgstr ""
|
||||
msgstr "Yritit luoda uuden aliaksen nimellä {name}, mutta se on jo olemassa."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:254
|
||||
msgid "You attempted to create a new alias with the name {name} but that name is an invalid alias name. Alias names may not contain spaces."
|
||||
msgstr ""
|
||||
msgstr "Yritit luoda uuden aliaksen nimellä {name}, mutta tämä nimi on virheellinen nimi aliakselle. Alias-nimet eivät saa sisältää välilyöntejä."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:266 redbot/cogs/alias/alias.py:325
|
||||
msgid "You attempted to create a new alias for a command that doesn't exist."
|
||||
msgstr ""
|
||||
msgstr "Yritit luoda uuden aliaksen komennolle, jota ei ole olemassa."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:280
|
||||
msgid "A new alias with the trigger `{name}` has been created."
|
||||
msgstr ""
|
||||
msgstr "Uusi alias käynnistimellä `{name}` on luotu."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:286
|
||||
#, docstring
|
||||
msgid "Add a global alias for a command."
|
||||
msgstr ""
|
||||
msgstr "Lisää globaali alias komennolle."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:291
|
||||
msgid "You attempted to create a new global alias with the name {name} but that name is already a command on this bot."
|
||||
msgstr ""
|
||||
msgstr "Yritit luoda uuden aliaksen nimellä {name}, mutta tämä nimi on käytössä toisella komennolla."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:302
|
||||
msgid "You attempted to create a new global alias with the name {name} but that alias already exists."
|
||||
msgstr ""
|
||||
msgstr "Yritit luoda uuden aliaksen nimellä {name}, mutta se on jo olemassa."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:313
|
||||
msgid "You attempted to create a new global alias with the name {name} but that name is an invalid alias name. Alias names may not contain spaces."
|
||||
msgstr ""
|
||||
msgstr "Yritit luoda uuden aliaksen nimellä {name}, mutta tämä nimi on virheellinen nimi aliakselle. Alias-nimet eivät saa sisältää välilyöntejä."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:336
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
msgstr "Uusi globaali alias käynnistimellä `{name}` on luotu."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:345
|
||||
#, docstring
|
||||
msgid "Edit an existing alias in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:343
|
||||
#: 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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
msgstr "Yritä suorittaa apua aliaksen peruskomentoa varten."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr ""
|
||||
msgstr "Tällaista aliasta ei ole olemassa."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
msgstr "Näytä minkä komennon alias suorittaa."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
msgstr "`{alias_name}` alias suorittaa komennon `{command}`"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
msgstr "Nimellä `{name} ` ei ole aliasta"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
msgstr ""
|
||||
msgstr "Poista olemassa oleva alias tällä palvelimella."
|
||||
|
||||
#: 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."
|
||||
msgstr ""
|
||||
msgstr "Tällä palvelimella ei ole aliaksia."
|
||||
|
||||
#: 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."
|
||||
msgstr ""
|
||||
msgstr "Alias nimellä `{name}` poistettiin onnistuneesti."
|
||||
|
||||
#: 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."
|
||||
msgstr ""
|
||||
msgstr "Aliasta nimellä `{name}` ei löytynyt."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
msgstr "Poista olemassa oleva globaali alias."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
msgstr "Tässä botissa ei ole globaaleja aliaksia."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
msgstr "Listaa saatavilla olevat aliakset tällä palvelimella."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
msgstr "Listaa saatavilla olevat globaalit aliakset tässä botissa."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
msgstr "Tässä botissa ei ole globaaleja aliaksia."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
msgstr "Argumentit on määriteltävä numerolla."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
msgstr "Argumenttien on oltava peräkkäisiä. Puuttuvia argumentteja: "
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,19 +18,13 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
" and append them to the stored alias.\n"
|
||||
" "
|
||||
msgstr "Créée des alias pour les commandes\n\n"
|
||||
" Les alias sont des raccourcis de noms alternatifs pour les commandes. Ils\n"
|
||||
" peuvent agir comme un lambda (stocker des arguments pour un usage répété)\n"
|
||||
" ou comme simplement un raccourci pour dire \"x y z\".\n\n"
|
||||
" Lors de leur exécution, les alias accepteront tous les arguments supplémentaires\n"
|
||||
" et seront exécutés en plus des arguments stockés dans l'alias.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:203
|
||||
msgid "Aliases:\n"
|
||||
@@ -98,73 +92,99 @@ msgstr "Vous avez tenté de créer un nouvel alias global nommé {name}, mais ce
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
msgstr "Un nouvel alias global avec le déclencheur `{name}` a bien été créé."
|
||||
|
||||
#: 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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr "Tente d'exécuter l'aide pour la commande de base de l'alias."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr "Cet alias n'existe pas."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr "Affiche la commande que l'alias exécute."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr "L'alias `{alias_name}` exécute la commande `{command}`"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr "Il n'y a pas d'alias nommé `{name}`"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
msgstr "Supprime un alias de ce serveur."
|
||||
|
||||
#: 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."
|
||||
msgstr "Il n'y a pas d'alias sur ce serveur."
|
||||
|
||||
#: 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."
|
||||
msgstr "L'alias nommé `{name}` a bien été supprimé."
|
||||
|
||||
#: 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."
|
||||
msgstr "L'alias nommé `{name}` n'a pas été trouvé."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr "Supprime un alias global existant."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr "Il n'y a aucun alias global sur ce bot."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr "Liste les alias disponibles sur ce serveur."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr "Liste les alias globaux disponibles sur ce bot."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr "Il n'y a aucun alias global."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr "Les arguments doivent être spécifiés avec un nombre."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr "Les arguments doivent être séquentiels. Arguments manquants : "
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Hebrew\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Hindi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -92,73 +92,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr "Nem létezik ilyen aliasz."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
msgstr "Nincsenek aliaszok ezen a szerveren."
|
||||
|
||||
#: 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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr "Létező globális alias törlése."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr "Nincsenek globális aliaszok ezen a boton."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr "A szerveren elérhető aliaszok listázása."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr "A boton elérhető globális aliaszok listázása."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr "Nincsenek globális aliaszok."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Indonesian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,19 +18,13 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
" and append them to the stored alias.\n"
|
||||
" "
|
||||
msgstr "Buat alias untuk perintah.\n\n"
|
||||
" Alias adalah pintasan nama alternatif untuk perintah. Mereka\n"
|
||||
" dapat bertindak sebagai lambda (menyimpan argumen untuk penggunaan berulang)\n"
|
||||
" atau hanya sebagai pintasan untuk mengatakan \"xyz\".\n\n"
|
||||
" Saat dijalankan, alias akan menerima argumen tambahan apa pun \n"
|
||||
" dan menambahkannya ke alias yang disimpan. \n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:203
|
||||
msgid "Aliases:\n"
|
||||
@@ -98,73 +92,99 @@ msgstr "Anda mencoba membuat alias global baru dengan nama {name} tetapi nama it
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
msgstr "Alias global baru dengan pemicu `{name}` telah dibuat."
|
||||
|
||||
#: 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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr "Cobalah untuk menjalankan bantuan untuk perintah dasar alias."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr "Alias tersebut tidak ditemukan."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr "Tunjukkan perintah apa yang dijalankan alias."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr "Alias `{alias_name}` akan menjalankan perintah `{command}`"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr "Tidak ada alias dengan nama `{name}`"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
msgstr "Hapus alias yang ada di server ini."
|
||||
|
||||
#: 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."
|
||||
msgstr "Tidak ada alias pada server ini."
|
||||
|
||||
#: 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."
|
||||
msgstr "Alias dengan nama `{name}` berhasil dihapus."
|
||||
|
||||
#: 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."
|
||||
msgstr "Alias dengan nama `{name}` tidak ditemukan."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr "Hapus alias global yang ada."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr "Tidak ada alias global di bot ini."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr "Buat daftar alias yang tersedia di server ini."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr "Buat daftar alias global yang tersedia di bot ini."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr "Tidak ada alias global."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr "Argumen harus ditentukan dengan angka."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr "Argumen harus berurutan. Argumen yang hilang: "
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Italian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,15 +18,13 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
" and append them to the stored alias.\n"
|
||||
" "
|
||||
msgstr "Crea degli pseudonimi per i comandi.\n\n"
|
||||
"Gli pseudonimi sono scorciatoie alternative per i comandi. Possono essere impiegati come lambda (salvare gli argomenti per un uso ripetuto) o semplicemente come una scorciatoia per dire \"x y z\".\n\n"
|
||||
"Quando eseguiti, gli pseudonimi accetteranno eventuali argomenti e li aggiungeranno agli altri pseudonimi memorizzati. "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:203
|
||||
msgid "Aliases:\n"
|
||||
@@ -94,73 +92,99 @@ msgstr "Hai cercato di creare un nuovo pseudonimo globale con il nome {name} ma
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
msgstr "Un nuovo pseudonimo globale con il comando '{name}' è stato creato."
|
||||
|
||||
#: 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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr "Prova a eseguire l'aiuto per il comando di base degli pseudonimi."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr "Non esiste nessun alias con questo nome."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr "Mostra quale comando viene eseguito dallo pseudonimo."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr "Lo pseudonimo `{alias_name}` eseguirà il comando `{command}`"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr "Non c'è alcun pseudonimo con il nome `{name}`"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
msgstr "Elimina uno pseudonimo esistente su questo 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."
|
||||
msgstr "Non ci sono alias su questo 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."
|
||||
msgstr "Lo pseudonimo con il nome `{name}` è stato eliminato con successo."
|
||||
|
||||
#: 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."
|
||||
msgstr "Lo pseudonimo con il nome `{name}` non è stato trovato."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr "Elimina uno pseudonimo globale esistente."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr "Non ci sono pseudonimi globali su questo bot."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr "Elenca gli pseudonimi disponibili su questo server."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr "Elenca gli pseudonimi globali disponibili su questo server."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr "Non ci sono pseudonimi globali."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr "Gli argomenti devono essere specificati con un numero."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr "Gli argomenti devono essere consecutivi. Argomenti mancanti: "
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Japanese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr "そのようなエイリアスはありません。"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Korean\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,18 +18,13 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
" and append them to the stored alias.\n"
|
||||
" "
|
||||
msgstr "명령어에 대한 별칭을 만들어주세요.\n\n"
|
||||
" 별칭들은 해당 명령어들을 바로 실행할 수 있는 대체적인 이름들이에요. 그것들은\n"
|
||||
" 람다(반복되어 사용되는 인수를 저장)\n"
|
||||
" 또는 단순히 \"x y z\"라고 말하는 바로가기 역할을 할 수 있어요.\n\n"
|
||||
" 실행할 시, 별칭들은 추가된 인수들을 승인할거예요.\n"
|
||||
" 그리고 저장된 별칭들에 추가할거예요. "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:203
|
||||
msgid "Aliases:\n"
|
||||
@@ -97,73 +92,99 @@ msgstr "이름이 {name}인 새 글로벌 별칭을 생성하려고 했지만,
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr "별칭의 기본 명령어에 대한 도움말을 실행해 보세요."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr "그런 별칭은 등록되어 있지 않아요."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr "별칭이 실행하는 명령어를 표시해주세요."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{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}`"
|
||||
msgstr "이름이 `{name}`인 별칭이 없어요."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr "이름이 `{name}`인 별칭을 찾을 수 없어요."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr "기존 글로벌 별칭들을 삭제해주세요."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr "이 봇에 등록된 별칭이 없어요."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr "이 서버에서 사용할 수 있는 별칭들을 나열해주세요."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr "이 봇에서 사용할 수 있는 글로벌 별칭들을 나열해주세요."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr "전역적인 별칭이 없어요."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr "인수는 숫자로 지정해줘야해요."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr "인수는 순차적이어야해요. 미확인된 인수: "
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Norwegian Bokmal\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,19 +18,13 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
" and append them to the stored alias.\n"
|
||||
" "
|
||||
msgstr "Lag aliaser for kommandoer.\n\n"
|
||||
"Aliaser er alternative navne-snarveier for kommandoer. De\n"
|
||||
"kan fungere som både lambda (lagre argumenter for gjentatt bruk)\n"
|
||||
"eller bare som en snarvei for å si \"x y z\".\n\n"
|
||||
"Når startet, aliaser vil akseptere andre argumenter\n"
|
||||
"og legge dem til de lagrede alias.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:203
|
||||
msgid "Aliases:\n"
|
||||
@@ -98,73 +92,99 @@ msgstr "Du forsøkte å opprette et nytt globalt alias med navnet {name} men nav
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
msgstr "Et nytt globalt alias med utløseren '{name}' har blitt opprettet."
|
||||
|
||||
#: 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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr "Prøv å bruke hjelp på basis kommandoen aliaset bruker."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr "Ingen slike alias finnes."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr "Vis hvilken kommando aliaset kjører."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr "Aliaset `{alias_name}` vil kjøre kommandoen `{command}`"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr "Det er ingen alias med navnet `{name}`"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
msgstr "Slett et eksisterende alias på denne serveren."
|
||||
|
||||
#: 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."
|
||||
msgstr "Det er ingen aliaser på denne serveren."
|
||||
|
||||
#: 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."
|
||||
msgstr "Alias med navnet `{name}` ble slettet."
|
||||
|
||||
#: 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."
|
||||
msgstr "Aliaset med navn `{name}` ble ikke funnet."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr "Slett et eksisterende globalt alias."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr "Det er ingen globale aliaser på denne boten."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr "Liste over tilgjengelige aliaser på denne serveren."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr "Liste over tilgjengelige globale aliaser på denne botten."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr "Det er ingen globale aliaser på denne boten."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr "Argumenter må spesifiseres med et nummer."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr "Argumenter må være sekvensielle. Manglende argumenter: "
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Dutch\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,19 +18,13 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
" and append them to the stored alias.\n"
|
||||
" "
|
||||
msgstr "Maak aliassen voor commando's.\n\n"
|
||||
" Aliassen zijn alternatieve namen of snelkoppelingen voor commando's. Ze\n"
|
||||
" kunnen fungeren als een lambda (argumenten opslaan voor herhaald gebruik)\n"
|
||||
" of als een snelkoppeling om \"x y z\" te zeggen.\n\n"
|
||||
" Aliassen accepteren extra argumenten wanneer ze zijn gebruikt\n"
|
||||
" en voegen deze toe aan de opgeslagen alias.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:203
|
||||
msgid "Aliases:\n"
|
||||
@@ -98,73 +92,99 @@ msgstr "Je hebt geprobeerd een nieuwe algemene alias te maken met de naam {name}
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
msgstr "Er is een nieuwe globale alias gemaakt met de trigger `{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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr "Probeer hulp uit te voeren voor de basisopdracht van de alias."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr "Deze alias bestaat niet."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr "Laat zien welk commando de alias uitvoert."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr "De `{alias_name}` alias voert het commando `{command}` uit"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr "Er is geen alias met de naam'{name}'"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
msgstr "Verwijder een bestaande alias op deze 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."
|
||||
msgstr "Er zijn geen aliases in deze 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."
|
||||
msgstr "Alias met de naam `{name}` is succesvol verwijderd."
|
||||
|
||||
#: 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."
|
||||
msgstr "Alias met naam `{name}` is niet gevonden."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr "Een bestaande globale alias verwijderen."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr "Er zijn geen globale aliassen op deze bot."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr "Maak een lijst van de beschikbare aliassen op deze server."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr "Maak een lijst van de beschikbare globale aliassen op deze bot."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr "Er zijn geen globale aliassen."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr "Argumenten moeten worden gespecificeerd met een getal."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr "Argumenten moeten sequentieel zijn. Ontbrekende argumenten: "
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Polish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,20 +18,13 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
" and append them to the stored alias.\n"
|
||||
" "
|
||||
msgstr "Utwórz aliasy dla poleceń.\n\n"
|
||||
" Aliasy są alternatywnymi nazwami skróconych poleceń. Mogą\n"
|
||||
" działać zarówno jako lambda (przechowywanie argumentów do wielokrotnego użycia)\n"
|
||||
" lub po prostu jako skrót do powiedzenia \"xyz \".\n\n"
|
||||
" \n"
|
||||
"Po uruchomieniu aliasy przyjmą wszelkie dodatkowe argumenty\n"
|
||||
" i dołączą je do przechowywanego aliasu.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:203
|
||||
msgid "Aliases:\n"
|
||||
@@ -99,73 +92,99 @@ msgstr "Próbowałeś/aś utworzyć nowy globalny alias o nazwie {name}, ale ta
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
msgstr "Utworzono nowy globalny alias z wyzwalaczem '{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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr "Spróbuj wykonać pomoc dla podstawowej komendy dla aliasu."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr "Taki alias nie istnieje."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr "Pokazuje jaką komendę wykonuje alias."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr "Alias '{alias_name}' spowoduje wykonanie komendy '{command}'"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr "Nie istnieje alias o nazwie `{name}`"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
msgstr "Usuwa istniejący alias na tym serwerze."
|
||||
|
||||
#: 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."
|
||||
msgstr "Nie ma aliasów na tym serwerze."
|
||||
|
||||
#: 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."
|
||||
msgstr "Alias o nazwie `{name}` został pomyślnie usunięty."
|
||||
|
||||
#: 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."
|
||||
msgstr "Alias o nazwie `{name}` nie został znaleziony."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr "Usuwa istniejący globalny alias."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr "Ten bot nie ma globalnych aliasów."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr "Wyświetla dostępne aliasy dla tego serwera."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr "Wyświetla dostępne globalne aliasy dla tego bota."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr "Brak globalnych aliasów."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr "Argumenty należy określić liczbą."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr "Argumenty muszą być sekwencyjne. Brakujące argumenty: "
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -28,136 +28,163 @@ msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:203
|
||||
msgid "Aliases:\n"
|
||||
msgstr ""
|
||||
msgstr "Atalhos:\n"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:205
|
||||
msgid "\n\n"
|
||||
"Page {page}/{total}"
|
||||
msgstr ""
|
||||
msgstr "\n\n"
|
||||
"Página {page}/{total}"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:215
|
||||
#, docstring
|
||||
msgid "Manage command aliases."
|
||||
msgstr ""
|
||||
msgstr "Gerenciar atalhos de comandos."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:220
|
||||
#, docstring
|
||||
msgid "Manage global aliases."
|
||||
msgstr ""
|
||||
msgstr "Gerenciar atalhos globais."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:227
|
||||
#, docstring
|
||||
msgid "Add an alias for a command."
|
||||
msgstr ""
|
||||
msgstr "Adicione um atalho para um comando."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:232
|
||||
msgid "You attempted to create a new alias with the name {name} but that name is already a command on this bot."
|
||||
msgstr "Você tentou criar um novo alias com o nome {} mas o alias já existe no servidor."
|
||||
msgstr "Você tentou criar um novo atalho com o nome {name} mas o atalho já existe no servidor."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:243
|
||||
msgid "You attempted to create a new alias with the name {name} but that alias already exists."
|
||||
msgstr ""
|
||||
msgstr "Você tentou criar um novo atalho com o nome {name} mas o atalho já existe."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:254
|
||||
msgid "You attempted to create a new alias with the name {name} but that name is an invalid alias name. Alias names may not contain spaces."
|
||||
msgstr ""
|
||||
msgstr "Você tentou criar um novo atalho com o nome {name}, mas esse nome é inválido. Os nomes de atalhos não podem conter espaços."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:266 redbot/cogs/alias/alias.py:325
|
||||
msgid "You attempted to create a new alias for a command that doesn't exist."
|
||||
msgstr ""
|
||||
msgstr "Você tentou criar um novo atalho para um comando que não existe."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:280
|
||||
msgid "A new alias with the trigger `{name}` has been created."
|
||||
msgstr ""
|
||||
msgstr "Um novo atalho com o gatilho `{name}` foi criado."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:286
|
||||
#, docstring
|
||||
msgid "Add a global alias for a command."
|
||||
msgstr ""
|
||||
msgstr "Adicione um atalho global para um comando."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:291
|
||||
msgid "You attempted to create a new global alias with the name {name} but that name is already a command on this bot."
|
||||
msgstr ""
|
||||
msgstr "Você tentou criar um novo atalho global com o nome {name}, mas esse nome já é um comando neste bot."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:302
|
||||
msgid "You attempted to create a new global alias with the name {name} but that alias already exists."
|
||||
msgstr ""
|
||||
msgstr "Você tentou criar um novo atalho global com o nome {name} mas este atalho já existe."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:313
|
||||
msgid "You attempted to create a new global alias with the name {name} but that name is an invalid alias name. Alias names may not contain spaces."
|
||||
msgstr ""
|
||||
msgstr "Você tentou criar um novo atalho global com o nome {name}, mas esse nome é inválido para atalhos. Nomes de atalho não podem conter espaços."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:336
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
msgstr "Um novo atalho global com o gatilho `{name}` foi criado."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:345
|
||||
#, docstring
|
||||
msgid "Edit an existing alias in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:343
|
||||
#: 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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
msgstr "Tente executar 'help' para o comando base do atalho."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr "Alias inexistente."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
msgstr "Mostrar qual comando o atalho executa."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
msgstr "O atalho `{alias_name}` irá executar o comando `{command}`"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
msgstr "Não há atalhos com o nome `{name}`"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
msgstr ""
|
||||
msgstr "Deletar um atalho existente neste 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."
|
||||
msgstr "Não há nenhum alias neste servidor."
|
||||
msgstr "Não há nenhum atalho neste 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."
|
||||
msgstr ""
|
||||
msgstr "O atalho com o nome `{name}` foi deletado com sucesso."
|
||||
|
||||
#: 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."
|
||||
msgstr ""
|
||||
msgstr "O atalho com o nome `{name}` não foi encontrado."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
msgstr "Deleta um atalho global existente."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
msgstr "Não há atalhos globais neste bot."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
msgstr "Liste os atalhos disponíveis neste servidor."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
msgstr "Liste os atalhos globais disponíveis neste bot."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
msgstr "Não há atalhos globais."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
msgstr "Os argumentos devem ser especificados por um número."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
msgstr "Os argumentos devem ser sequenciais. Argumentos faltando: "
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Portuguese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Romanian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Russian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,23 +18,23 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
" and append them to the stored alias.\n"
|
||||
" "
|
||||
msgstr "Создать синонимы для команд.\n\n"
|
||||
" Синонимы - это альтернативные сокращения имен для команд.\n"
|
||||
" Они могут действовать как лямбда (хранение аргументов для\n"
|
||||
" многократного использования) или просто как сокращение \"а б в\".\n\n"
|
||||
" При запуске синонимы принимают любые дополнительные\n"
|
||||
" аргументы и добавляют их к сохраненному синониму.\n"
|
||||
msgstr "Создание псевдонимов для команд.\n\n"
|
||||
" Псевдонимы — это альтернативные имена/ярлыки для команд. Они\n"
|
||||
" могут выполнять функции и как лямбда (сохранение аргументов для повторного использования)\n"
|
||||
" или как просто ярлык, чтобы сказать \"x y z\".\n\n"
|
||||
" При запуске псевдонимы примут любые дополнительные аргументы\n"
|
||||
" и добавят их в сохраненные псевдонимы.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/alias/alias.py:203
|
||||
msgid "Aliases:\n"
|
||||
msgstr "Синонимы:\n"
|
||||
msgstr "Псевдонимы:\n"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:205
|
||||
msgid "\n\n"
|
||||
@@ -63,7 +63,7 @@ msgstr "Вы попытались создать новый псевдоним {
|
||||
|
||||
#: redbot/cogs/alias/alias.py:243
|
||||
msgid "You attempted to create a new alias with the name {name} but that alias already exists."
|
||||
msgstr "Синоним {name} уже существует."
|
||||
msgstr "Вы попытались создать псевдоним с именем {name}, но этот псевдоним уже существует."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:254
|
||||
msgid "You attempted to create a new alias with the name {name} but that name is an invalid alias name. Alias names may not contain spaces."
|
||||
@@ -88,7 +88,7 @@ msgstr "Вы попытались создать новый глобальный
|
||||
|
||||
#: redbot/cogs/alias/alias.py:302
|
||||
msgid "You attempted to create a new global alias with the name {name} but that alias already exists."
|
||||
msgstr "Общий синоним {name} уже существует."
|
||||
msgstr "Вы попытались создать новый глобальный псевдоним с именем {name}, но этот псевдоним уже существует."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:313
|
||||
msgid "You attempted to create a new global alias with the name {name} but that name is an invalid alias name. Alias names may not contain spaces."
|
||||
@@ -98,73 +98,99 @@ msgstr "Вы попытались создать новый глобальный
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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 "Псевдоним с именем {name} не существует."
|
||||
|
||||
#: 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 "Псевдоним с триггером{name}` был успешно отредактирован."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:372 redbot/cogs/alias/alias.py:405
|
||||
msgid "Alias with the name `{name}` was not found."
|
||||
msgstr "Псевдоним с именем `{name} не найден."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:380
|
||||
#, docstring
|
||||
msgid "Edit an existing global alias."
|
||||
msgstr "Редактирование существующего глобального псевдонима."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:412
|
||||
#, docstring
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr "Попробуйте вызвать справку для базовой команды псевдонима."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr "Псевдоним не существует."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr "Показать, какую команду выполняет псевдоним."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{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}`"
|
||||
msgstr "Нет псевдонима с именем `{name}`"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr "Псевдоним с именем `{name}` не найден."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr "Удалить существующий глобальный псевдоним."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr "У этого бота нет всеобщих синонимов."
|
||||
msgstr "В этом боте нет глобальных псевдонимов."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr "Список доступных псевдонимов на этом сервере."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr "Список доступных глобальных псевдонимов для этого бота."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr "Нет всеобщих синонимов."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr "Аргументы должны быть указаны с числом."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr "Аргументы должны быть последовательными. Отсутствующие аргументы: "
|
||||
msgstr "Аргументы должны быть последовательными. Отсутствуют аргументы: "
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Slovak\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Slovenian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,19 +18,13 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
" and append them to the stored alias.\n"
|
||||
" "
|
||||
msgstr "Ustvarite vzdevke za ukaze.\n\n"
|
||||
" Vzdevki so bližnjice nadomestnih imen za ukaze.\n"
|
||||
" Lahko deluje kot lambda (shranjevanje argumentov za večkratno uporabo),\n"
|
||||
" ali preprosto kot bližnjica do izgovora \"x y z\".\n\n"
|
||||
" Ob uporabi bodo vzdevki sprejeli dodatne argumente\n"
|
||||
" in jih dodali na shranjeni vzdevek.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:203
|
||||
msgid "Aliases:\n"
|
||||
@@ -98,73 +92,99 @@ msgstr "Poskušali ste ustvari nov globalni vzdevek z imenom {name} vendar je to
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
msgstr "Globalni vzdevek z imenom `{name}` je bil uspešno kreiran."
|
||||
|
||||
#: 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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr "Poskusite izvesti pomoč za osnovni ukaz vzdevka."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr "Tak vzdevek ne obstaja."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr "Pokažite, kateri ukaz vzdevek izvrši."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr "Vzdevek z imenom `{alias_name}` izvršuje ukaz `{command}`"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr "Vzdevek z imenom `{name}` ne obstaja"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
msgstr "Odstrani vzdevek na tem strežniku."
|
||||
|
||||
#: 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."
|
||||
msgstr "Na tem strežniku ni vzdevkov."
|
||||
|
||||
#: 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."
|
||||
msgstr "Vzdevek `{name}` je bil uspešno odstranjen."
|
||||
|
||||
#: 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."
|
||||
msgstr "Vzdevek z imenom `{name}` ne obstaja."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr "Odstrani globalni vzdevek."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr "Na tem botu ni globalnih vzdevkov."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr "Seznam razpoložljivih vzdevkov na tem strežniku."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr "Seznam razpoložljivih globalnih vzdevkov na tem strežniku."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr "Globalnih vzdevkov ni."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr "Argumente je treba navesti s številko."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr "Argumenti morajo biti zaporedni. Manjkajoči argumenti: "
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Serbian (Latin)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Serbian (Cyrillic)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Swedish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr "Detta alias existerar inte."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
msgstr "Det finns inga alias på denna 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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Turkish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,20 +18,13 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
" and append them to the stored alias.\n"
|
||||
" "
|
||||
msgstr "Komutlar için takma adlar oluştur.\n\n"
|
||||
" Takma adlar komutlar için kısa yol olarak kullanılabilen alternatif\n"
|
||||
" isimlerdir. Hem bir komut için seçenekler depolamak\n"
|
||||
" (daha sonra tekrar yazmadan kullanmak için) hem de \"x y z\" demek\n"
|
||||
" gibi basit bir şey için kısa yol olarak kullanılabilirler.\n\n"
|
||||
" Kullanıldıkları zaman takma adlar önlerine yazılanları alıp\n"
|
||||
" depoladıkları komuta eklerler.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:203
|
||||
msgid "Aliases:\n"
|
||||
@@ -99,73 +92,99 @@ msgstr "{name} ile yeni bir global kısaltma oluşturmaya çalıştınız ancak
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
msgstr "Yeni bir global kısaltma '{name}' ismi ile oluşturuldu."
|
||||
|
||||
#: 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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr "Kısaltma komutlarını detaylıca öğrenmek için yardım komutunu kullanmayı deneyiniz."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr "Böyle bir kısaltma mevcut değil."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr "Kısaltmanın hangi komutu uyguladığını gösterir."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr "'{alias_name}' kısaltması '{command} ' komutunu uygulayacak"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr "{name} adında bir kısaltma mevcut değil"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
msgstr "Bu sunucuda mevcut bir kısaltmayı silin."
|
||||
|
||||
#: 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."
|
||||
msgstr "Bu sunucuda herhangi bir kısaltma mevcut değil."
|
||||
|
||||
#: 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."
|
||||
msgstr "`{name}`adlı kısaltma başarıyla silindi."
|
||||
|
||||
#: 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."
|
||||
msgstr "{name} adlı kısaltma bulunamadı."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr "Mevcut bir global kısaltmayı silin."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr "Bu botta herhangi bir global kısaltma bulunmuyor."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr "Bu sunucudaki kullanılabilir kısaltmaları listeleyin."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr "Bot üzerindeki global kullanılabilir kısaltmaları listeleyin."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr "Herhangi bir global kısaltma mevcut değil."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr "Değişkenler numara içermelidir."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr "Değişkenler sıralı olmalıdır. Eksik değişkenler: "
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr "您试图使用名称{name}创建新的全局别名,但该名称是无
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr "不存在该别名。"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{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}`"
|
||||
msgstr "没有名为`{name}`的别名"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr "找不到名为`{name}`的别名。"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Chinese Traditional, Hong Kong\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"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"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
#: redbot/cogs/alias/alias.py:35
|
||||
#, docstring
|
||||
msgid "Create aliases for commands.\n\n"
|
||||
" Aliases are alternative names shortcuts for commands. They\n"
|
||||
" Aliases are alternative names/shortcuts for commands. They\n"
|
||||
" can act as both a lambda (storing arguments for repeated use)\n"
|
||||
" or as simply a shortcut to saying \"x y z\".\n\n"
|
||||
" When run, aliases will accept any additional arguments\n"
|
||||
@@ -91,73 +91,99 @@ msgstr ""
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
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
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:348
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
msgid "No such alias exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:352
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:362
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:368
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
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."
|
||||
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."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:383
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:399
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:411
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:198
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:205
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user