mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-12-06 09:22:31 -05:00
Compare commits
110 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cad381cc78 | ||
|
|
d7e7a39a96 | ||
|
|
4be15c9832 | ||
|
|
e9a9b22d0f | ||
|
|
f9b6f05415 | ||
|
|
b4af4f650c | ||
|
|
c4637aa02b | ||
|
|
c7ba118e7c | ||
|
|
be8df25ecf | ||
|
|
f1d359f816 | ||
|
|
25019d562b | ||
|
|
1e95063859 | ||
|
|
a34bab9881 | ||
|
|
842096171e | ||
|
|
f436998625 | ||
|
|
6f58ddd520 | ||
|
|
33f6193bcb | ||
|
|
032fe6906b | ||
|
|
95fe193871 | ||
|
|
9ff2085b94 | ||
|
|
d8bbf1c4c7 | ||
|
|
d88bdba092 | ||
|
|
e92a25a1b5 | ||
|
|
bc9404e9b2 | ||
|
|
9d81cdf4ea | ||
|
|
17f7bd15bf | ||
|
|
3fbf426003 | ||
|
|
aa2214f13f | ||
|
|
432de5cca8 | ||
|
|
bbd71cf6e3 | ||
|
|
e09f9a4914 | ||
|
|
aee9961dba | ||
|
|
ff21429f2b | ||
|
|
afaa1e2846 | ||
|
|
e71415c7cd | ||
|
|
65779cf70b | ||
|
|
a3a6e5cbaf | ||
|
|
dce0b713fe | ||
|
|
07d165aeb7 | ||
|
|
1ffdefc922 | ||
|
|
ef43cc53bc | ||
|
|
95583f03ee | ||
|
|
35e54b8e82 | ||
|
|
2a25d7e7c1 | ||
|
|
e8245d5075 | ||
|
|
9982ec93be | ||
|
|
b1159555e1 | ||
|
|
eba691f234 | ||
|
|
7f7ab1ccc7 | ||
|
|
7e9e596141 | ||
|
|
23b3144c84 | ||
|
|
3e8b51e117 | ||
|
|
7245c778e4 | ||
|
|
3045989a5f | ||
|
|
f500062979 | ||
|
|
1027d95092 | ||
|
|
fb08cd0520 | ||
|
|
11cb5e3414 | ||
|
|
bbfe0d24ad | ||
|
|
730c650bb4 | ||
|
|
cb4058ef10 | ||
|
|
09f19b0cf7 | ||
|
|
93d47c1192 | ||
|
|
44f4cb70de | ||
|
|
19c710e63c | ||
|
|
2a23da302e | ||
|
|
5dfd4cf998 | ||
|
|
5356cca6ec | ||
|
|
c26a603c8d | ||
|
|
a52356c031 | ||
|
|
09adae5213 | ||
|
|
f59b7fce37 | ||
|
|
ee513731be | ||
|
|
5dd0c3b579 | ||
|
|
4afa4f77e0 | ||
|
|
8c2d589c17 | ||
|
|
c7a4a0feaf | ||
|
|
cb5eafb9e3 | ||
|
|
de3ec3f26a | ||
|
|
5987f9aabc | ||
|
|
ea6eeedadf | ||
|
|
9f359dda26 | ||
|
|
1040883913 | ||
|
|
7268a8e774 | ||
|
|
86edf0de53 | ||
|
|
59c92041fc | ||
|
|
3cf0d5ebe9 | ||
|
|
65344378f6 | ||
|
|
bd010fdae5 | ||
|
|
33ed1085ab | ||
|
|
41fa3f0310 | ||
|
|
542a7b3cb2 | ||
|
|
b8cf464355 | ||
|
|
4dc509c18f | ||
|
|
cda70a0c6a | ||
|
|
9ca977ba81 | ||
|
|
4331004dc1 | ||
|
|
042731a7ed | ||
|
|
bf5e2a4424 | ||
|
|
029a7fffcb | ||
|
|
0096f874a4 | ||
|
|
07e7594308 | ||
|
|
6a4a0b4bb3 | ||
|
|
dca082f20e | ||
|
|
dfe03b9cad | ||
|
|
3865449d3b | ||
|
|
39169703a7 | ||
|
|
55d748147d | ||
|
|
7bf8bd5a93 | ||
|
|
931eb312b2 |
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 .[all]
|
||||
python -m pip install -e .[all]
|
||||
# Set the `CODEQL-PYTHON` environment variable to the Python executable
|
||||
# that includes the dependencies
|
||||
echo "CODEQL_PYTHON=$(which python)" >> $GITHUB_ENV
|
||||
|
||||
10
.github/workflows/publish_release.yml
vendored
10
.github/workflows/publish_release.yml
vendored
@@ -84,9 +84,15 @@ jobs:
|
||||
name: Update Red version number to dev
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Get base branch
|
||||
env:
|
||||
TAG_BASE_BRANCH: ${{ github.event.base_ref }}
|
||||
run: |
|
||||
echo "BASE_BRANCH=${TAG_BASE_BRANCH#'refs/heads/'}" >> $GITHUB_ENV
|
||||
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
ref: ${{ github.event.base_ref }}
|
||||
ref: ${{ env.BASE_BRANCH }}
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
@@ -128,7 +134,7 @@ jobs:
|
||||
branch: "automated/pr_bumps/${{ steps.bump_version_dev.outputs.new_version }}"
|
||||
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
||||
milestone: ${{ steps.get_milestone_number.outputs.result }}
|
||||
base: V3/develop
|
||||
base: ${{ env.BASE_BRANCH }}
|
||||
|
||||
- name: Close and reopen the PR with different token to trigger CI
|
||||
uses: actions/github-script@v3
|
||||
|
||||
6
docs/_html/robots.txt
Normal file
6
docs/_html/robots.txt
Normal file
@@ -0,0 +1,6 @@
|
||||
User-agent: *
|
||||
Disallow: /
|
||||
Allow: /en/stable
|
||||
Allow: /en/latest
|
||||
|
||||
Sitemap: https://docs.discord.red/sitemap.xml
|
||||
@@ -20,11 +20,12 @@ Now run :code:`sudo nano /Library/LaunchDaemons/red.plist`
|
||||
|
||||
Paste the following and replace the following:
|
||||
|
||||
- all instances of :code:`username` with your Mac username
|
||||
- :code:`username` (but not :code:`UserName`) with your Mac username
|
||||
- :code:`path` with the path you copied earlier
|
||||
- :code:`instance-name` with your instance name:
|
||||
|
||||
.. code-block:: none
|
||||
:emphasize-lines: 9, 13, 28
|
||||
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
|
||||
@@ -26,7 +26,7 @@ Next, your python :code:`path` can be fetched with the following commands:
|
||||
|
||||
# If redbot is installed in a venv
|
||||
$ source ~/redenv/bin/activate
|
||||
(redenv) $ which python
|
||||
(redenv) $ /usr/bin/which python
|
||||
|
||||
# If redbot is installed in a pyenv virtualenv
|
||||
$ pyenv shell <virtualenv_name>
|
||||
@@ -39,6 +39,7 @@ Then create the new service file:
|
||||
Paste the following in the file, and replace all instances of :code:`username` with the Linux username you retrieved above, and :code:`path` with the python path you retrieved above.
|
||||
|
||||
.. code-block:: none
|
||||
:emphasize-lines: 8-10
|
||||
|
||||
[Unit]
|
||||
Description=%I redbot
|
||||
|
||||
@@ -56,7 +56,7 @@ Continue to the next section to enable privileged intents.
|
||||
Enabling Privileged Intents
|
||||
-------------------------------
|
||||
.. warning::
|
||||
:ref:`As explained in this page <intents>`, Red Bot requires all intents.
|
||||
:ref:`Red Bot requires all intents. <intents>`
|
||||
\This section is required.
|
||||
|
||||
1. Make sure you're logged on to the `Discord website <https://discord.com>`_.
|
||||
@@ -75,6 +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.
|
||||
Remember that :ref:`we do not support public bots <intents>`. We encourage you to read that page before scaling up your bot.
|
||||
|
||||
*Parts of this guide have been adapted from* `discord.py intro <https://discordpy.readthedocs.io/en/stable/discord.html#discord-intro>`_ *and* `discord.py privileged intents <https://discordpy.readthedocs.io/en/stable/intents.html#privileged-intents>`_.
|
||||
|
||||
@@ -650,7 +650,7 @@ Dev Cog
|
||||
Documentation changes
|
||||
---------------------
|
||||
|
||||
- Fixed install instructions for Mac in `install_linux_mac` (:issue:`3675`, :issue:`3436`)
|
||||
- Fixed install instructions for Mac (:issue:`3675`, :issue:`3436`)
|
||||
- Windows install instructions now use ``choco upgrade`` commands instead of ``choco install`` to ensure up-to-date packages (:issue:`3684`)
|
||||
|
||||
|
||||
|
||||
@@ -1,5 +1,302 @@
|
||||
.. 3.4.x Changelogs
|
||||
|
||||
Redbot 3.4.17 (2022-06-07)
|
||||
==========================
|
||||
|
||||
| Thanks to all these amazing people that contributed to this release:
|
||||
| :ghuser:`aikaterna`, :ghuser:`Drapersniper`, :ghuser:`Flame442`, :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`Kreusada`, :ghuser:`ltzmax`, :ghuser:`matcha19`, :ghuser:`mina9999`, :ghuser:`ponte-vecchio`, :ghuser:`PredaaA`, :ghuser:`TrustyJAID`, :ghuser:`untir-l`, :ghuser:`Vexed01`
|
||||
|
||||
Read before updating
|
||||
--------------------
|
||||
|
||||
#. Fedora 34 is no longer supported as it has already reached its end of life.
|
||||
#. 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.17 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.4.0_1347>`__.
|
||||
|
||||
|
||||
End-user changelog
|
||||
------------------
|
||||
|
||||
Core Bot
|
||||
********
|
||||
|
||||
- Fedora 33 is no longer supported as it has already reached its its end of life (:issue:`5701`)
|
||||
- Added instructions on how to respond to the message received from ``[p]contact`` in the embed footer of the message sent to the bot owner (:issue:`5528`, :issue:`5529`)
|
||||
- Updated ``[p]servers`` command to escape Discord markdown in server names (:issue:`5696`, :issue:`5744`)
|
||||
- Fixed a bug that prevented users from changing the name and data location with ``redbot --edit`` command (:issue:`5545`, :issue:`5540`, :issue:`5541`)
|
||||
- Fixed grammar in the ``[p]uptime`` command (:issue:`5596`)
|
||||
|
||||
Audio
|
||||
*****
|
||||
|
||||
- Added timestamps to all embeds sent by Audio cog (:issue:`5632`)
|
||||
- Improved handling of voice connection close codes received from Discord (:issue:`5712`)
|
||||
- Fixed plain word YT searching with ``[p]play`` and ``[p]search`` commands (:issue:`5712`)
|
||||
- Fixed YT age-restricted track playback (:issue:`5712`)
|
||||
- Fixed the cog not sending any Track Error message on track decoding errors (:issue:`5716`)
|
||||
- Fixed the ``UnboundLocalError`` exception happening when using ``[p]playlist list`` with an empty playlist (:issue:`5378`, :issue:`5394`)
|
||||
|
||||
Downloader
|
||||
**********
|
||||
|
||||
- Added information about the commit hash at which the cog is pinned in the output of ``[p]cog listpinned`` command (:issue:`5551`, :issue:`5563`)
|
||||
|
||||
Filter
|
||||
******
|
||||
|
||||
- Fixed a potential memory leak in Filter cog (:issue:`5578`)
|
||||
|
||||
General
|
||||
*******
|
||||
|
||||
- Updated features list in ``[p]serverinfo`` with the latest changes from Discord (:issue:`5655`)
|
||||
|
||||
Mod
|
||||
***
|
||||
|
||||
- Updated Red's ban commands to address the breaking change that Discord made in their ban list API endpoint (:issue:`5656`)
|
||||
|
||||
Modlog
|
||||
******
|
||||
|
||||
- Modlog's automated case creation for bans now properly checks that the guild is available before further processing (:issue:`5647`)
|
||||
|
||||
Mutes
|
||||
*****
|
||||
|
||||
- Added proper error handling for VERY long durations in mute commands (:issue:`5605`)
|
||||
|
||||
Permissions
|
||||
***********
|
||||
|
||||
- Updated ``[p]permissions acl setglobal`` and ``[p]permissions acl setserver`` to allow sending the file in a follow-up message (:issue:`5473`, :issue:`5685`)
|
||||
- ``[p]permissions canrun`` now prepends an emoji to the response to better differentiate between the positive and negative results (:issue:`5711`)
|
||||
|
||||
Trivia
|
||||
******
|
||||
|
||||
- Allowed passing ``use_spoilers`` setting in the CONFIG section of the trivia list file (:issue:`5566`)
|
||||
|
||||
Trivia Lists
|
||||
************
|
||||
|
||||
- Added a trivia list for the FIFA World Cup with questions based on hosts, placements, venues, continental confederations, number of participants, top goal scorers, qualification shocks, and more (:issue:`5639`)
|
||||
- Updated ``geography`` trivia list with up-to-date answers and removed questions that lack sources for their claimed answers (:issue:`5638`)
|
||||
- Updated Kazakhstan's capital city in the ``worldcapitals`` trivia list (:issue:`5598`, :issue:`5599`)
|
||||
- Fixed spelling error in the answer to one of the questions in ``computers`` trivia list (:issue:`5587`, :issue:`5588`)
|
||||
|
||||
|
||||
Developer changelog
|
||||
-------------------
|
||||
|
||||
- Updated ``discord.ext.menus`` vendor (:issue:`5579`)
|
||||
|
||||
|
||||
Documentation changes
|
||||
---------------------
|
||||
|
||||
- Added CentOS Stream 9, RHEL 9, Alma Linux 9, Oracle Linux 9, and Rocky Linux 9 install guides (:issue:`5537`, :issue:`5721`)
|
||||
- Added Ubuntu 22.04 install guide (:issue:`5720`)
|
||||
- Changed the recommended operating system for hosting Red from Ubuntu 20.04 LTS to Ubuntu 22.04 LTS (:issue:`5720`)
|
||||
- Updated Python version in ``pyenv`` and Windows instructions (:issue:`5719`)
|
||||
- Replaced install instructions for discontinued AdoptOpenJDK package with Temurin 11 package in the macOS install guide (:issue:`5718`)
|
||||
- Updated Visual Studio Build Tools version in Windows install guide (:issue:`5702`)
|
||||
- Updated systemd guide to use the absolute path to ``which`` command to avoid triggering shell aliases on some OSes (:issue:`5547`)
|
||||
- Emphasized lines that contain text that needs to be replaced by the user (:issue:`5548`)
|
||||
- Prevented Google and other search engines from indexing versioned documentation (:issue:`5549`)
|
||||
- Pinned Temurin version on Windows until a fixed version becomes available (:issue:`5717`)
|
||||
- Fixed git installation instructions in CentOS 7 install guide (:issue:`5700`)
|
||||
|
||||
|
||||
Redbot 3.4.16 (2021-12-31)
|
||||
==========================
|
||||
|
||||
| Thanks to all these amazing people that contributed to this release:
|
||||
| :ghuser:`jack1142`, :ghuser:`PredaaA`
|
||||
|
||||
This is a hotfix release fixing issues with invite URL API that caused
|
||||
``[p]invite`` command and ``CORE__INVITE_URL`` RPC method to not work.
|
||||
|
||||
End-user changelog
|
||||
------------------
|
||||
|
||||
- **Core Bot** - Fixed ``[p]invite`` command (:issue:`5517`)
|
||||
|
||||
|
||||
Developer changelog
|
||||
-------------------
|
||||
|
||||
- Fixed ``CORE__INVITE_URL`` RPC method (:issue:`5517`)
|
||||
|
||||
|
||||
Documentation changes
|
||||
---------------------
|
||||
|
||||
- Changed Arch install guide to temporarily use ``python39`` AUR package instead of ``python`` package as Red does not currently support Python 3.10 (:issue:`5518`)
|
||||
|
||||
|
||||
Redbot 3.4.15 (2021-12-31)
|
||||
==========================
|
||||
|
||||
| Thanks to all these amazing people that contributed to this release:
|
||||
| :ghuser:`aikaterna`, :ghuser:`aleclol`, :ghuser:`Arman0334`, :ghuser:`Crossedfall`, :ghuser:`Dav-Git`, :ghuser:`fixator10`, :ghuser:`Flame442`, :ghuser:`jack1142`, :ghuser:`Jan200101`, :ghuser:`Just-Jojo`, :ghuser:`Kowlin`, :ghuser:`Kreusada`, :ghuser:`laggron42`, :ghuser:`ltzmax`, :ghuser:`Parnassius`, :ghuser:`PredaaA`, :ghuser:`Predeactor`, :ghuser:`RasmusWL`, :ghuser:`sravan1946`, :ghuser:`Stonedestroyer`, :ghuser:`the-krak3n`, :ghuser:`Tobotimus`, :ghuser:`vertyco`, :ghuser:`Vexed01`, :ghuser:`WreckRox`, :ghuser:`yamikaitou`
|
||||
|
||||
Read before updating
|
||||
--------------------
|
||||
|
||||
#. Fedora 33 and CentOS 8 are no longer supported as they have already reached end of life.
|
||||
#. 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.15 uses a new Lavalink jar that you MUST manually update from `our GitHub <https://github.com/Cog-Creators/Lavalink-Jars/releases/tag/3.4.0_1275>`__ to be able to continue using Audio.
|
||||
|
||||
|
||||
End-user changelog
|
||||
------------------
|
||||
|
||||
Core Bot
|
||||
********
|
||||
|
||||
- Added new CLI options for non-interactive usage of ``redbot-setup`` (:issue:`2396`, :issue:`5448`)
|
||||
|
||||
See output of ``redbot-setup --help`` for more information.
|
||||
|
||||
- JSON is now more strongly recommended and is used by default for new instances in ``redbot-setup`` (:issue:`5448`)
|
||||
- The embed setting for ``[p]help`` command set with ``[p]embedset command`` will now affect all help messages, not just the ones sent when invoking ``[p]help`` command directly (:issue:`5452`)
|
||||
- ``[p]traceback`` command now indicates that it DMed the command caller with a tick reaction (:issue:`5353`)
|
||||
- Improved ``[p]helpset showaliases`` responses (:issue:`5376`)
|
||||
- Added plural forms to the responses of ``[p]leave`` command (:issue:`5391`)
|
||||
- Fedora 33 and CentOS 8 are no longer supported as they have already reached end of life (:issue:`5440`)
|
||||
- Corrected usage examples in help of ``[p]set api`` and ``[p]set api remove`` (:issue:`5444`)
|
||||
- Updated prefix length limit to ``25`` to allow setting bot mention as a prefix (:issue:`5476`)
|
||||
- Confirmation prompts (accepting "yes/no" or "I agree" as the answer) no longer wrongfully translate the answer that needs to be sent when only English answers are accepted by the bot (:issue:`5363`, :issue:`5364`, :issue:`5404`)
|
||||
- Fixed short help for some of the commands in Core Red (:issue:`5502`)
|
||||
- Fixed issues with rendering of modlog cases with usernames written in a right-to-left language (:issue:`5422`)
|
||||
- Fixed an issue with instance backup failing for non-JSON storage backends (:issue:`5315`)
|
||||
- Running Red with ``--no-instance`` CLI flag no longer fails when no instance was ever created by the user (:issue:`5415`, :issue:`5416`)
|
||||
- ``[p]command enable guild`` and ``[p]command disable guild`` commands no longer error out for commands that *only* check for user permissions, not caller's roles (:issue:`5477`)
|
||||
|
||||
Admin
|
||||
*****
|
||||
|
||||
- Added ``[p]selfroleset clear`` command which can be used to clear the list of available selfroles in the server (:issue:`5387`)
|
||||
|
||||
Audio
|
||||
*****
|
||||
|
||||
- Added native Mac M1 support for Java runtimes supporting Mac M1 (:issue:`5474`)
|
||||
- Enabled JDA-NAS on all system architectures which should limit stuttering/buffering issues on some machines (:issue:`5474`)
|
||||
- The bot will now disconnect from the voice channel when all members are bots if the auto-disconnect setting is enabled (:issue:`5421`)
|
||||
- Fixed an issue with resuming playback after changing voice channels (:issue:`5170`)
|
||||
- Fixed issues with Soundcloud private playlists and mobile links (:issue:`5474`)
|
||||
- Fixed searching music with some of the queries containing quotes or backslashes (:issue:`5474`)
|
||||
- Fixed an exception caused by unavailable YT tracks in Mix playlists (:issue:`5474`)
|
||||
- Fixed ``IndexError`` in ``[p]queue`` command which occurred when the user provides negative integer as the page number (:issue:`5429`)
|
||||
|
||||
Cleanup
|
||||
*******
|
||||
|
||||
- Restricted ``[p]cleanupset notify`` to only be invokable in server channels (:issue:`5466`)
|
||||
|
||||
Custom Commands
|
||||
***************
|
||||
|
||||
- Added 2000 character limit for custom command responses to prevent Nitro users from adding longer responses than a Discord bot can send (:issue:`5499`)
|
||||
|
||||
Dev Cog
|
||||
*******
|
||||
|
||||
- ``[p]mockmsg`` now allows mocking attachment-only messages (:issue:`5446`)
|
||||
|
||||
Downloader
|
||||
**********
|
||||
|
||||
- Added repo name to the response of ``[p]findcog`` command (:issue:`5382`, :issue:`5383`)
|
||||
|
||||
Economy
|
||||
*******
|
||||
|
||||
- ``[p]economyset showsettings`` now includes configured role payday amounts (:issue:`5455`, :issue:`5457`)
|
||||
|
||||
General
|
||||
*******
|
||||
|
||||
- Removed voice region field from ``[p]serverinfo`` command as Discord no longer provides this setting for servers (:issue:`5449`)
|
||||
|
||||
Mod
|
||||
***
|
||||
|
||||
- ``[p]voicekick`` now sends a response when the action succeeds (:issue:`5367`)
|
||||
- Fixed an error with ``[p]tempban`` failing to send an invite link when a server has an unset vanity URL (:issue:`5472`)
|
||||
- Fixed explanations of example usage for ``[p]ban``, ``[p]kick``, and ``[p]tempban`` commands (:issue:`5372`)
|
||||
- Fixed a typo in one of ``[p]unban``'s error messages (:issue:`5470`)
|
||||
|
||||
Modlog
|
||||
******
|
||||
|
||||
- Added the new native Discord timestamps in ``[p]case``, ``[p]casesfor``, and ``[p]listcases`` commands (:issue:`5395`)
|
||||
|
||||
Warnings
|
||||
********
|
||||
|
||||
- Warning actions no longer error out when the action is set to use a command that *only* checks for user permissions, not caller's roles (:issue:`5477`)
|
||||
|
||||
|
||||
Developer changelog
|
||||
-------------------
|
||||
|
||||
- Added optional ``message`` argument to `Context.tick()` and `Context.react_quietly()` which is used if adding the reaction doesn't succeed (:issue:`3359`, :issue:`4092`)
|
||||
- Added optional ``check_permissions`` keyword-only argument to `RedBase.embed_requested()` which, if ``True``, will make the method also check whether the bot can send embeds in the given channel (:issue:`5452`)
|
||||
- Added `RedBase.get_invite_url()` and `RedBase.is_invite_url_public()` that expose the functionality of ``[p]invite`` programmatically (:issue:`5152`, :issue:`5424`)
|
||||
- Changed the output of ``CORE__LOAD``, ``CORE__RELOAD``, and ``CORE__UNLOAD`` RPC methods to a dictionary (:issue:`5451`, :issue:`5453`)
|
||||
|
||||
|
||||
Documentation changes
|
||||
---------------------
|
||||
|
||||
- Added install guide for Alma Linux 8.4-8.x and Raspberry Pi OS 11 Bullseye (:issue:`5440`)
|
||||
- Updated the Java distribution used in the Windows install guide to Temurin - rebranded AdoptOpenJDK (:issue:`5403`)
|
||||
- Improved Mac and pyenv instructions to address common issues with load path configuration (:issue:`5356`)
|
||||
- Updated the server locations for Hetzner and Contabo in :ref:`host-list` document (:issue:`5475`)
|
||||
- Updated Python version in ``pyenv`` and Windows instructions (:issue:`5447`)
|
||||
- Removed inaccurate note from Unix install guides about install commands also being used for updating Red (:issue:`5439`)
|
||||
- Removed LXC from unsupported hosting platforms as many VPS providers utilize that technology (:issue:`5351`)
|
||||
- Specified that Red currently requires Python 3.8.1 - 3.9.x (:issue:`5403`)
|
||||
|
||||
|
||||
Redbot 3.4.14 (2021-09-23)
|
||||
==========================
|
||||
|
||||
| Thanks to all these amazing people that contributed to this release:
|
||||
| :ghuser:`aikaterna`, :ghuser:`jack1142`, :ghuser:`Kowlin`, :ghuser:`L33Tech`, :ghuser:`maxbooiii`, :ghuser:`RheingoldRiver`
|
||||
|
||||
Read before updating
|
||||
--------------------
|
||||
|
||||
#. Versions of RHEL older than 8.4 (including 7) and versions of CentOS older than 8.4 (excluding 7) are no longer supported.
|
||||
#. Information for Audio users that are using an external Lavalink instance (if you don't know what that is, you should skip this point):
|
||||
|
||||
Red 3.4.14 uses a new Lavalink jar that you will need to manually update from `our GitHub <https://github.com/Cog-Creators/Lavalink-Jars/releases/tag/3.3.2.3_1239>`__.
|
||||
|
||||
|
||||
End-user changelog
|
||||
------------------
|
||||
|
||||
- **Core Bot** - Added the new native Discord timestamp in the ``[p]uptime`` command (:issue:`5323`)
|
||||
- **Core Bot** - ``redbot-setup delete`` command no longer requires database connection if the data deletion was not requested (:issue:`5312`, :issue:`5313`)
|
||||
- **Audio** - Fixed intermittent 403 Forbidden errors (:issue:`5329`)
|
||||
- **Modlog** - Fixed formatting of **Last modified at** field in Modlog cases (:issue:`5317`)
|
||||
|
||||
|
||||
Documentation changes
|
||||
---------------------
|
||||
|
||||
- Each operating system now has a dedicated install guide (:issue:`5328`)
|
||||
- Fixed Raspberry Pi OS install guide (:issue:`5314`, :issue:`5328`)
|
||||
- Added install guide for CentOS Stream 8, Oracle Linux 8.4-8.x, and Rocky Linux 8 (:issue:`5328`)
|
||||
- Install guides for RHEL derivatives no longer require the use of pyenv (:issue:`5328`)
|
||||
|
||||
|
||||
Redbot 3.4.13 (2021-09-09)
|
||||
==========================
|
||||
|
||||
@@ -653,7 +950,7 @@ Documentation changes
|
||||
- Added information about the Red Index to `guide_publish_cogs` (:issue:`4778`)
|
||||
- Restructured the host list (:issue:`4710`)
|
||||
- Clarified how to use pm2 with ``pyenv virtualenv`` (:issue:`4709`)
|
||||
- Updated the pip command for Red with the postgres extra in `install_linux_mac` document to work on zsh shell (:issue:`4697`)
|
||||
- Updated the pip command for Red with the postgres extra in Linux/macOS install guide to work on zsh shell (:issue:`4697`)
|
||||
- Updated Python version in ``pyenv`` and Windows instructions (:issue:`4770`)
|
||||
|
||||
|
||||
@@ -873,7 +1170,7 @@ Documentation changes
|
||||
---------------------
|
||||
|
||||
- Added `cog guide for Cleanup cog <cleanup>` (:issue:`4488`)
|
||||
- Removed multi-line commands from `install_linux_mac` to avoid confusing readers (:issue:`4550`)
|
||||
- Removed multi-line commands from Linux install guides to avoid confusing readers (:issue:`4550`)
|
||||
|
||||
|
||||
Redbot 3.4.1 (2020-10-27)
|
||||
|
||||
@@ -160,6 +160,22 @@ Add a role, or a selection of roles, to the list of available selfroles.
|
||||
|
||||
* ``<role>``: The role to add to the list. |role-input|
|
||||
|
||||
.. _admin-command-selfroleset-clear:
|
||||
|
||||
"""""""""""""""""
|
||||
selfroleset clear
|
||||
"""""""""""""""""
|
||||
|
||||
**Syntax**
|
||||
|
||||
.. code-block:: none
|
||||
|
||||
[p]selfroleset clear
|
||||
|
||||
**Description**
|
||||
|
||||
Clear the list of available selfroles for this server.
|
||||
|
||||
.. _admin-command-selfroleset-remove:
|
||||
|
||||
""""""""""""""""""
|
||||
|
||||
@@ -238,8 +238,10 @@ installpath
|
||||
|
||||
**Description**
|
||||
|
||||
Shows the install path, or sets a new one. If you want to set a new path, the
|
||||
same rules as for :ref:`addpath <cogmanagerui-command-addpath>` applies.
|
||||
Shows the install path, or sets a new one.
|
||||
|
||||
If you want to set a new path, the same rules as for
|
||||
:ref:`addpath <cogmanagerui-command-addpath>` apply
|
||||
|
||||
.. warning:: If you edit the install path, the cogs won't be transfered.
|
||||
|
||||
|
||||
@@ -2455,7 +2455,7 @@ list of key,values as described by the cog requesting this command.
|
||||
|
||||
|
||||
**Examples:**
|
||||
- ``[p]set api Spotify redirect_uri localhost``
|
||||
- ``[p]set api spotify redirect_uri localhost``
|
||||
- ``[p]set api github client_id,whoops client_secret,whoops``
|
||||
|
||||
**Arguments:**
|
||||
@@ -2500,8 +2500,8 @@ set api remove
|
||||
Remove the given services with all their keys and tokens.
|
||||
|
||||
**Examples:**
|
||||
- ``[p]set api remove Spotify``
|
||||
- ``[p]set api remove github audiodb``
|
||||
- ``[p]set api remove spotify``
|
||||
- ``[p]set api remove github youtube``
|
||||
|
||||
**Arguments:**
|
||||
- ``<services...>`` - The services to remove.
|
||||
@@ -3229,7 +3229,7 @@ Sets Red's server prefix(es).
|
||||
|
||||
This is not additive. It will replace all current server prefixes.
|
||||
|
||||
You cannot have a prefix with more than 20 characters.
|
||||
You cannot have a prefix with more than 25 characters.
|
||||
|
||||
**Examples:**
|
||||
- ``[p]set serverprefix !``
|
||||
|
||||
@@ -354,7 +354,9 @@ economyset rolepaydayamount
|
||||
|
||||
**Description**
|
||||
|
||||
Set the amount earned each payday for a role. Setting to 0 will remove the custom payday for that role instead.
|
||||
Set the amount earned each payday for a role.
|
||||
|
||||
Set to 0 will remove the custom payday for that role instead.
|
||||
|
||||
Only available when not using a global bank.
|
||||
|
||||
|
||||
@@ -58,7 +58,7 @@ Ban a user from this server and optionally delete days of messages.
|
||||
**Example Usage**
|
||||
|
||||
* ``[p]ban 428675506947227648 7 Continued to spam after told to stop.``
|
||||
This will ban Twentysix and it will delete 7 days worth of messages.
|
||||
This will ban the user with ID 428675506947227648 and it will delete 7 days worth of messages.
|
||||
* ``[p]ban @Twentysix 7 Continued to spam after told to stop.``
|
||||
This will ban Twentysix and it will delete 7 days worth of messages.
|
||||
|
||||
@@ -92,7 +92,7 @@ Kick a user.
|
||||
**Example Usage**
|
||||
|
||||
* ``[p]kick 428675506947227648 wanted to be kicked.``
|
||||
This will kick Twentysix from the server.
|
||||
This will kick the user with ID 428675506947227648 from the server.
|
||||
* ``[p]kick @Twentysix wanted to be kicked.``
|
||||
This will kick Twentysix from the server.
|
||||
|
||||
@@ -642,7 +642,7 @@ Temporarily ban a user from this server.
|
||||
* ``[p]tempban @Twentysix 15m You need a timeout``
|
||||
This will ban Twentysix for 15 minutes.
|
||||
* ``[p]tempban 428675506947227648 1d2h15m 5 Evil person``
|
||||
This will ban the user for 1 day 2 hours 15 minutes and will delete the last 5 days of their messages.
|
||||
This will ban the user with ID 428675506947227648 for 1 day 2 hours 15 minutes and will delete the last 5 days of their messages.
|
||||
|
||||
.. _mod-command-unban:
|
||||
|
||||
|
||||
16
docs/conf.py
16
docs/conf.py
@@ -86,10 +86,16 @@ language = None
|
||||
# List of patterns, relative to source directory, that match files and
|
||||
# directories to ignore when looking for source files.
|
||||
# This patterns also effect to html_static_path and html_extra_path
|
||||
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
|
||||
exclude_patterns = [
|
||||
"_build",
|
||||
"Thumbs.db",
|
||||
".DS_Store",
|
||||
# to ensure that include files (partial pages) aren't built, exclude them
|
||||
"**/_includes/**",
|
||||
]
|
||||
|
||||
# The name of the Pygments (syntax highlighting) style to use.
|
||||
pygments_style = "sphinx"
|
||||
pygments_style = "default"
|
||||
|
||||
# If true, `todo` and `todoList` produce output, else they produce nothing.
|
||||
todo_include_todos = False
|
||||
@@ -111,6 +117,12 @@ rst_prolog += f"\n.. |DPY_VERSION| replace:: {dpy_version}"
|
||||
#
|
||||
html_theme = "sphinx_rtd_theme"
|
||||
|
||||
# Add any extra paths that contain custom files (such as robots.txt or
|
||||
# .htaccess) here, relative to this directory. These files are copied
|
||||
# directly to the root of the documentation.
|
||||
#
|
||||
html_extra_path = ["_html"]
|
||||
|
||||
# Theme options are theme-specific and customize the look and feel of a theme
|
||||
# further. For a list of options available for each theme, see the
|
||||
# documentation.
|
||||
|
||||
@@ -13,7 +13,7 @@ This is a quick start guide for a general usage.
|
||||
.. note::
|
||||
|
||||
If you haven't installed Red, please do it by following
|
||||
the :ref:`installation guides <main>`.
|
||||
one of the `installation guides <install_guides/index>`.
|
||||
|
||||
Assuming you correctly installed Red, you should have a
|
||||
window like this:
|
||||
@@ -266,14 +266,14 @@ If you want to do it, follow these steps.
|
||||
basics of the Unix commands, such as navigating the system files or use
|
||||
a terminal text editor.
|
||||
|
||||
You should follow `this guide
|
||||
You should read `DigitalOcean's tutorial: An Introduction to Linux Basics
|
||||
<https://www.digitalocean.com/community/tutorials/an-introduction-to-linux-basics>`_
|
||||
from DigitalOcean which will introduce you to the Linux basics.
|
||||
if you have not used Linux before.
|
||||
|
||||
1. **Find a host**
|
||||
|
||||
You need to find a server to host Red. You can rent a VPS (it can be free)
|
||||
on an online service. Please check :ref:`this page <host-list>` for
|
||||
on an online service. Please check :ref:`this list of hosts <host-list>` for
|
||||
more information.
|
||||
|
||||
You can also buy a Raspberry Pi (~$20), which is a micro-computer that will
|
||||
@@ -282,7 +282,7 @@ If you want to do it, follow these steps.
|
||||
2. **Install Linux**
|
||||
|
||||
Most of the VPS providers have tools for installing Linux automatically. If
|
||||
you're a beginner, we recommend **Ubuntu 20.04 LTS**.
|
||||
you're a beginner, we recommend **Ubuntu 22.04 LTS**.
|
||||
|
||||
For Raspberry Pi users, just install `Raspbian
|
||||
<https://www.raspberrypi.org/software/>`_ on a micro-SD card.
|
||||
@@ -307,8 +307,8 @@ If you want to do it, follow these steps.
|
||||
|
||||
3. **Install and set up Red**
|
||||
|
||||
Just follow one of the Linux installation guide. We provide guides for the
|
||||
most used distributions. Check the :ref:`home page <main>` and search for
|
||||
Follow one of the Linux installation guides. We provide guides for the
|
||||
most used distributions. Check the `list of install guides <install_guides/index>` and search for
|
||||
your distribution.
|
||||
|
||||
4. **Set up an auto-restart**
|
||||
@@ -318,7 +318,7 @@ If you want to do it, follow these steps.
|
||||
side task and handle fatal errors, so you can just leave your server running
|
||||
and enjoy Red!
|
||||
|
||||
For that, just follow :ref:`this guide <systemd-service-guide>`.
|
||||
For that, follow :ref:`the systemd service guide <systemd-service-guide>`.
|
||||
|
||||
.. _getting-started-userdocs:
|
||||
|
||||
|
||||
@@ -118,7 +118,7 @@ As you've added more questions, your file should look something like this:
|
||||
- $25000
|
||||
|
||||
You can keep adding questions until you are satisfied, and then you can upload and
|
||||
play your very own trivia! See :ref:`here <trivia-command-triviaset-custom>` for more details.
|
||||
play your very own trivia! See :ref:`[p]triviaset custom <trivia-command-triviaset-custom>` for more information.
|
||||
|
||||
Still stuck? Take a look at
|
||||
`the core trivia lists <https://github.com/Cog-Creators/Red-DiscordBot/tree/V3/develop/redbot/cogs/trivia/data/lists>`_
|
||||
|
||||
@@ -8,7 +8,7 @@ Hosting Information
|
||||
|
||||
.. note::
|
||||
This doc is written for the :ref:`hosting section <getting-started-hosting>`
|
||||
of the :ref:`getting started <getting-started>` guide. Please take a look
|
||||
of the :ref:`getting started guide <getting-started>`. Please take a look
|
||||
if you don't know how to host Red.
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ First, we would like to make something clear:
|
||||
.. warning::
|
||||
Due to their inability to handle Red's data structure and meet the
|
||||
conditions of being a supported platform; platforms such as Heroku,
|
||||
Pterodactyl, repl.it, Termux, LXC and alike are **NOT** officially supported.
|
||||
Pterodactyl, repl.it, Termux and alike are **NOT** officially supported.
|
||||
Docker support found in GitHub is also a work in progress and not ready
|
||||
for daily use. Workarounds for getting Red running on those platforms
|
||||
are imperfect due to Red's nature. You will not be able to receive
|
||||
@@ -41,9 +41,9 @@ Hosting on a VPS or Dedicated Server
|
||||
|
||||
.. warning::
|
||||
Please be aware that a Linux server is controlled through a command line.
|
||||
If you don't know Unix basics, please take a look at `this guide
|
||||
<https://www.digitalocean.com/community/tutorials/an-introduction-to-linux-basics>`_
|
||||
from DigitalOcean which will introduce you to the Linux basics.
|
||||
If you don't know Unix basics, please take a look at
|
||||
`DigitalOcean's tutorial: An Introduction to Linux Basics
|
||||
<https://www.digitalocean.com/community/tutorials/an-introduction-to-linux-basics>`_.
|
||||
|
||||
|
||||
------------
|
||||
@@ -103,10 +103,10 @@ Average Providers
|
||||
with locations available worldwide.
|
||||
|
||||
| `Hetzner Online <https://www.hetzner.com/>`_ is a German VPS and dedicated server
|
||||
provider with locations in Germany and Finland.
|
||||
provider with locations in Germany, US and Finland.
|
||||
|
||||
| `Contabo <https://contabo.com/>`_ is also a German VPS and dedicated server provider
|
||||
with locations in Germany and the United States.
|
||||
with locations in Germany, Asia and the United States.
|
||||
|
||||
| `Ramnode <https://www.ramnode.com/>`_ is a US based VPS provider focused on
|
||||
low to middle end VPS with locations in the US and Netherlands.
|
||||
|
||||
@@ -12,8 +12,7 @@ Welcome to Red - Discord Bot's documentation!
|
||||
:maxdepth: 1
|
||||
:caption: Installation Guides:
|
||||
|
||||
install_windows
|
||||
install_linux_mac
|
||||
install_guides/index
|
||||
bot_application_guide
|
||||
update_red
|
||||
about_venv
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
To install/update pyenv, run the following command:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
command -v pyenv && pyenv update || curl https://pyenv.run | bash
|
||||
|
||||
After this command, you will see a warning about 'pyenv' not being in the load path. To address this,
|
||||
you should run these commands:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
profile=$([ -n "$ZSH_VERSION" ] && echo ~/.zprofile || ([ -f ~/.bash_profile ] && echo ~/.bash_profile || echo ~/.profile))
|
||||
rcfile=$([ -n "$ZSH_VERSION" ] && echo ~/.zshrc || echo ~/.bashrc)
|
||||
printf '%s\n%s\n%s\n' 'export PYENV_ROOT="$HOME/.pyenv"' 'export PATH="$PYENV_ROOT/bin:$PATH"' "$([ -f "$profile" ] && cat "$profile")" > "$profile"
|
||||
echo 'eval "$(pyenv init --path)"' >> "$profile"
|
||||
echo 'eval "$(pyenv init -)"' >> "$rcfile"
|
||||
echo 'eval "$(pyenv virtualenv-init -)"' >> "$rcfile"
|
||||
|
||||
Then **log out and log back in** and run the following command:
|
||||
@@ -0,0 +1,44 @@
|
||||
------------------------------
|
||||
Creating a Virtual Environment
|
||||
------------------------------
|
||||
|
||||
.. tip::
|
||||
|
||||
If you want to learn more about virtual environments, see page: `about-venvs`
|
||||
|
||||
We require installing Red into a virtual environment. Don't be scared, it's very
|
||||
straightforward.
|
||||
|
||||
**************************
|
||||
Using ``pyenv virtualenv``
|
||||
**************************
|
||||
|
||||
Using ``pyenv virtualenv`` saves you the headache of remembering where you installed your virtual
|
||||
environments. This option is only available if you installed Python with pyenv.
|
||||
|
||||
First, ensure your pyenv interpreter is set to python 3.8.1 or greater with the following command:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
pyenv version
|
||||
|
||||
Now, create a virtual environment with the following command:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
pyenv virtualenv <name>
|
||||
|
||||
Replace ``<name>`` with whatever you like. If you ever forget what you named it,
|
||||
you can always use the command ``pyenv versions`` to list all virtual environments.
|
||||
|
||||
Now activate your virtualenv with the following command:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
pyenv shell <name>
|
||||
|
||||
.. important::
|
||||
|
||||
You must activate the virtual environment with the above command every time you open a new
|
||||
shell to run, install or update Red. You can check out other commands like ``pyenv local`` and
|
||||
``pyenv global`` if you wish to keep the virtualenv activated all the time.
|
||||
38
docs/install_guides/_includes/create-env-with-venv.rst
Normal file
38
docs/install_guides/_includes/create-env-with-venv.rst
Normal file
@@ -0,0 +1,38 @@
|
||||
------------------------------
|
||||
Creating a Virtual Environment
|
||||
------------------------------
|
||||
|
||||
.. tip::
|
||||
|
||||
If you want to learn more about virtual environments, see page: `about-venvs`
|
||||
|
||||
We require installing Red into a virtual environment. Don't be scared, it's very
|
||||
straightforward.
|
||||
|
||||
**************
|
||||
Using ``venv``
|
||||
**************
|
||||
|
||||
This is the quickest way to get your virtual environment up and running, as `venv` is shipped with
|
||||
python.
|
||||
|
||||
First, choose a directory where you would like to create your virtual environment. It's a good idea
|
||||
to keep it in a location which is easy to type out the path to. From now, we'll call it
|
||||
``redenv`` and it will be located in your home directory.
|
||||
|
||||
Create your virtual environment with the following command:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
python3.9 -m venv ~/redenv
|
||||
|
||||
And activate it with the following command:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
source ~/redenv/bin/activate
|
||||
|
||||
.. important::
|
||||
|
||||
You must activate the virtual environment with the above command every time you open a new
|
||||
shell to run, install or update Red.
|
||||
52
docs/install_guides/_includes/install-and-setup-red-unix.rst
Normal file
52
docs/install_guides/_includes/install-and-setup-red-unix.rst
Normal file
@@ -0,0 +1,52 @@
|
||||
--------------
|
||||
Installing Red
|
||||
--------------
|
||||
|
||||
Choose one of the following commands to install Red.
|
||||
|
||||
To install without additional config backend support:
|
||||
|
||||
.. prompt:: bash
|
||||
:prompts: (redenv) $
|
||||
|
||||
python -m pip install -U pip setuptools wheel
|
||||
python -m pip install -U Red-DiscordBot
|
||||
|
||||
Or, to install with PostgreSQL support:
|
||||
|
||||
.. prompt:: bash
|
||||
:prompts: (redenv) $
|
||||
|
||||
python -m pip install -U pip setuptools wheel
|
||||
python -m pip install -U "Red-DiscordBot[postgres]"
|
||||
|
||||
|
||||
--------------------------
|
||||
Setting Up and Running Red
|
||||
--------------------------
|
||||
|
||||
After installation, set up your instance with the following command:
|
||||
|
||||
.. prompt:: bash
|
||||
:prompts: (redenv) $
|
||||
|
||||
redbot-setup
|
||||
|
||||
This will set the location where data will be stored, as well as your
|
||||
storage backend and the name of the instance (which will be used for
|
||||
running the bot).
|
||||
|
||||
Once done setting up the instance, run the following command to run Red:
|
||||
|
||||
.. prompt:: bash
|
||||
:prompts: (redenv) $
|
||||
|
||||
redbot <your instance name>
|
||||
|
||||
It will walk through the initial setup, asking for your token and a prefix.
|
||||
You can find out how to obtain a token with
|
||||
`this guide <../bot_application_guide>`.
|
||||
|
||||
.. tip::
|
||||
If it's the first time you're using Red, you should check our `getting-started` guide
|
||||
that will walk you through all essential information on how to interact with Red.
|
||||
@@ -0,0 +1,26 @@
|
||||
.. include:: _includes/linux-preamble.rst
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
Red Hat Enterprise Linux (RHEL) 8.4-8.x and its derivatives have all required packages available in official repositories.
|
||||
Install them with dnf:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo dnf -y update
|
||||
sudo dnf -y group install development
|
||||
sudo dnf -y install python39 python39-pip python39-devel java-11-openjdk-headless nano git
|
||||
|
||||
Set ``java`` executable to point to Java 11:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo alternatives --set java "java-11-openjdk.$(uname -i)"
|
||||
|
||||
.. Include common instructions:
|
||||
|
||||
.. include:: _includes/create-env-with-venv.rst
|
||||
|
||||
.. include:: _includes/install-and-setup-red-unix.rst
|
||||
@@ -0,0 +1,18 @@
|
||||
.. include:: _includes/linux-preamble.rst
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
Red Hat Enterprise Linux (RHEL) 9 and its derivatives have all required packages available in official repositories.
|
||||
Install them with dnf:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo dnf -y install python39 git java-11-openjdk-headless @development nano
|
||||
|
||||
.. Include common instructions:
|
||||
|
||||
.. include:: _includes/create-env-with-venv.rst
|
||||
|
||||
.. include:: _includes/install-and-setup-red-unix.rst
|
||||
27
docs/install_guides/_includes/install-python-pyenv.rst
Normal file
27
docs/install_guides/_includes/install-python-pyenv.rst
Normal file
@@ -0,0 +1,27 @@
|
||||
----------------------------
|
||||
Installing Python with pyenv
|
||||
----------------------------
|
||||
|
||||
On distributions where Python 3.9 needs to be compiled from source, we recommend the use of pyenv.
|
||||
This simplifies the compilation process and has the added bonus of simplifying setting up Red in a
|
||||
virtual environment.
|
||||
|
||||
.. include:: _includes/_install-pyenv-and-setup-path.rst
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
CONFIGURE_OPTS=--enable-optimizations pyenv install 3.9.13 -v
|
||||
|
||||
This may take a long time to complete, depending on your hardware. For some machines (such as
|
||||
Raspberry Pis and micro-tier VPSes), it may take over an hour; in this case, you may wish to remove
|
||||
the ``CONFIGURE_OPTS=--enable-optimizations`` part from the front of the command, which will
|
||||
drastically reduce the install time. However, be aware that this will make Python run about 10%
|
||||
slower.
|
||||
|
||||
After that is finished, run:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
pyenv global 3.9.13
|
||||
|
||||
Pyenv is now installed and your system should be configured to run Python 3.9.
|
||||
27
docs/install_guides/_includes/install-python38-pyenv.rst
Normal file
27
docs/install_guides/_includes/install-python38-pyenv.rst
Normal file
@@ -0,0 +1,27 @@
|
||||
----------------------------
|
||||
Installing Python with pyenv
|
||||
----------------------------
|
||||
|
||||
On distributions where Python 3.8 needs to be compiled from source, we recommend the use of pyenv.
|
||||
This simplifies the compilation process and has the added bonus of simplifying setting up Red in a
|
||||
virtual environment.
|
||||
|
||||
.. include:: _includes/_install-pyenv-and-setup-path.rst
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
CONFIGURE_OPTS=--enable-optimizations pyenv install 3.8.12 -v
|
||||
|
||||
This may take a long time to complete, depending on your hardware. For some machines (such as
|
||||
Raspberry Pis and micro-tier VPSes), it may take over an hour; in this case, you may wish to remove
|
||||
the ``CONFIGURE_OPTS=--enable-optimizations`` part from the front of the command, which will
|
||||
drastically reduce the install time. However, be aware that this will make Python run about 10%
|
||||
slower.
|
||||
|
||||
After that is finished, run:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
pyenv global 3.8.12
|
||||
|
||||
Pyenv is now installed and your system should be configured to run Python 3.8.
|
||||
5
docs/install_guides/_includes/linux-preamble.rst
Normal file
5
docs/install_guides/_includes/linux-preamble.rst
Normal file
@@ -0,0 +1,5 @@
|
||||
.. warning::
|
||||
|
||||
For safety reasons, DO NOT install Red with a root user. If you are unsure how to create
|
||||
a new user on Linux, see `DigitalOcean's tutorial: How To Create a New Sudo-enabled User
|
||||
<https://www.digitalocean.com/community/tutorials/how-to-create-a-new-sudo-enabled-user-on-ubuntu-20-04-quickstart>`_.
|
||||
7
docs/install_guides/alma-linux-8.rst
Normal file
7
docs/install_guides/alma-linux-8.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
.. _install-alma-linux-8:
|
||||
|
||||
====================================
|
||||
Installing Red on Alma Linux 8.4-8.x
|
||||
====================================
|
||||
|
||||
.. include:: _includes/install-guide-rhel8-derivatives.rst
|
||||
7
docs/install_guides/alma-linux-9.rst
Normal file
7
docs/install_guides/alma-linux-9.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
.. _install-alma-linux-9:
|
||||
|
||||
==============================
|
||||
Installing Red on Alma Linux 9
|
||||
==============================
|
||||
|
||||
.. include:: _includes/install-guide-rhel9-derivatives.rst
|
||||
35
docs/install_guides/arch.rst
Normal file
35
docs/install_guides/arch.rst
Normal file
@@ -0,0 +1,35 @@
|
||||
.. _install-arch:
|
||||
|
||||
============================
|
||||
Installing Red on Arch Linux
|
||||
============================
|
||||
|
||||
.. include:: _includes/linux-preamble.rst
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
Install the pre-requirements with pacman:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo pacman -Syu git jre11-openjdk-headless base-devel nano
|
||||
|
||||
On Arch Linux, Python 3.9 can be installed from the Arch User Repository (AUR) from the ``python39`` package.
|
||||
|
||||
The manual build process is the Arch-supported install method for AUR packages. You can install ``python39`` package with the following commands:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
git clone https://aur.archlinux.org/python39.git /tmp/python39
|
||||
cd /tmp/python39
|
||||
makepkg -sicL
|
||||
cd -
|
||||
rm -rf /tmp/python39
|
||||
|
||||
.. Include common instructions:
|
||||
|
||||
.. include:: _includes/create-env-with-venv.rst
|
||||
|
||||
.. include:: _includes/install-and-setup-red-unix.rst
|
||||
42
docs/install_guides/centos-7.rst
Normal file
42
docs/install_guides/centos-7.rst
Normal file
@@ -0,0 +1,42 @@
|
||||
.. _install-centos-7:
|
||||
|
||||
==========================
|
||||
Installing Red on CentOS 7
|
||||
==========================
|
||||
|
||||
.. include:: _includes/linux-preamble.rst
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
Install the pre-requirements with yum:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo yum -y groupinstall development
|
||||
sudo yum -y install gcc zlib-devel bzip2 bzip2-devel readline-devel sqlite sqlite-devel openssl-devel tk-devel libffi-devel xz-devel java-11-openjdk-headless nano git
|
||||
|
||||
In order to install gcc 8, we'll use SCL repository:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo yum -y install centos-release-scl
|
||||
sudo yum -y install devtoolset-8-gcc devtoolset-8-gcc-c++
|
||||
echo "source scl_source enable devtoolset-8" >> ~/.bashrc
|
||||
source ~/.bashrc
|
||||
|
||||
In order to install Git 2.11 or greater, we recommend adding the IUS repository:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo yum -y install https://repo.ius.io/ius-release-el7.rpm
|
||||
sudo yum -y swap git git236
|
||||
|
||||
.. Include common instructions:
|
||||
|
||||
.. include:: _includes/install-python-pyenv.rst
|
||||
|
||||
.. include:: _includes/create-env-with-pyenv-virtualenv.rst
|
||||
|
||||
.. include:: _includes/install-and-setup-red-unix.rst
|
||||
7
docs/install_guides/centos-stream-8.rst
Normal file
7
docs/install_guides/centos-stream-8.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
.. _install-centos-stream-8:
|
||||
|
||||
=================================
|
||||
Installing Red on CentOS Stream 8
|
||||
=================================
|
||||
|
||||
.. include:: _includes/install-guide-rhel8-derivatives.rst
|
||||
7
docs/install_guides/centos-stream-9.rst
Normal file
7
docs/install_guides/centos-stream-9.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
.. _install-centos-stream-9:
|
||||
|
||||
=================================
|
||||
Installing Red on CentOS Stream 9
|
||||
=================================
|
||||
|
||||
.. include:: _includes/install-guide-rhel9-derivatives.rst
|
||||
28
docs/install_guides/debian-10.rst
Normal file
28
docs/install_guides/debian-10.rst
Normal file
@@ -0,0 +1,28 @@
|
||||
.. _install-debian-10:
|
||||
|
||||
==================================
|
||||
Installing Red on Debian 10 Buster
|
||||
==================================
|
||||
|
||||
.. include:: _includes/linux-preamble.rst
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
We recommend installing pyenv as a method of installing non-native versions of Python on
|
||||
Debian Buster. This guide will tell you how. First, run the following commands:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt update
|
||||
sudo apt -y install make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev libgdbm-dev uuid-dev python3-openssl git openjdk-11-jre-headless nano
|
||||
CXX=/usr/bin/g++
|
||||
|
||||
.. Include common instructions:
|
||||
|
||||
.. include:: _includes/install-python-pyenv.rst
|
||||
|
||||
.. include:: _includes/create-env-with-pyenv-virtualenv.rst
|
||||
|
||||
.. include:: _includes/install-and-setup-red-unix.rst
|
||||
25
docs/install_guides/debian-11.rst
Normal file
25
docs/install_guides/debian-11.rst
Normal file
@@ -0,0 +1,25 @@
|
||||
.. _install-debian-11:
|
||||
|
||||
====================================
|
||||
Installing Red on Debian 11 Bullseye
|
||||
====================================
|
||||
|
||||
.. include:: _includes/linux-preamble.rst
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
Debian 11 "Bullseye" has all required packages available in official repositories. Install them
|
||||
with apt:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt update
|
||||
sudo apt -y install python3 python3-dev python3-venv python3-pip git openjdk-11-jre-headless build-essential nano
|
||||
|
||||
.. Include common instructions:
|
||||
|
||||
.. include:: _includes/create-env-with-venv.rst
|
||||
|
||||
.. include:: _includes/install-and-setup-red-unix.rst
|
||||
24
docs/install_guides/fedora.rst
Normal file
24
docs/install_guides/fedora.rst
Normal file
@@ -0,0 +1,24 @@
|
||||
.. _install-fedora:
|
||||
|
||||
==============================
|
||||
Installing Red on Fedora Linux
|
||||
==============================
|
||||
|
||||
.. include:: _includes/linux-preamble.rst
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
Fedora Linux 35 and above has all required packages available in official repositories. Install
|
||||
them with dnf:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo dnf -y install python39 git java-11-openjdk-headless @development-tools nano
|
||||
|
||||
.. Include common instructions:
|
||||
|
||||
.. include:: _includes/create-env-with-venv.rst
|
||||
|
||||
.. include:: _includes/install-and-setup-red-unix.rst
|
||||
38
docs/install_guides/index.rst
Normal file
38
docs/install_guides/index.rst
Normal file
@@ -0,0 +1,38 @@
|
||||
.. _install-guides:
|
||||
|
||||
Installing Red
|
||||
==============
|
||||
|
||||
The list below shows the installation guides available based on the operating system being used.
|
||||
|
||||
If you want to host Red on a VPS and are unsure what operating system you should choose,
|
||||
we recommend **Ubuntu 22.04 LTS**.
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
windows
|
||||
mac
|
||||
alma-linux-8
|
||||
alma-linux-9
|
||||
arch
|
||||
centos-7
|
||||
centos-stream-8
|
||||
centos-stream-9
|
||||
debian-10
|
||||
debian-11
|
||||
fedora
|
||||
opensuse-leap-15
|
||||
opensuse-tumbleweed
|
||||
oracle-linux-8
|
||||
oracle-linux-9
|
||||
raspberry-pi-os-10
|
||||
raspberry-pi-os-11
|
||||
rhel-8
|
||||
rhel-9
|
||||
rocky-linux-8
|
||||
rocky-linux-9
|
||||
ubuntu-1804
|
||||
ubuntu-2004
|
||||
ubuntu-2204
|
||||
ubuntu-non-lts
|
||||
42
docs/install_guides/mac.rst
Normal file
42
docs/install_guides/mac.rst
Normal file
@@ -0,0 +1,42 @@
|
||||
.. _install-mac:
|
||||
|
||||
=======================
|
||||
Installing Red on macOS
|
||||
=======================
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
To install pre-requirements, we first have to install Brew.
|
||||
In Finder or Spotlight, search for and open *Terminal*. In the terminal, paste the
|
||||
following, then press Enter:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
|
||||
|
||||
After the installation, install the required packages by pasting the commands and pressing enter,
|
||||
one-by-one:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
brew install python@3.9
|
||||
brew install git
|
||||
brew tap homebrew/cask-versions
|
||||
brew install --cask temurin11
|
||||
|
||||
By default, Python installed through Homebrew is not added to the load path.
|
||||
To fix this, you should run these commands:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
profile=$([ -n "$ZSH_VERSION" ] && echo ~/.zprofile || ([ -f ~/.bash_profile ] && echo ~/.bash_profile || echo ~/.profile))
|
||||
echo 'export PATH="$(brew --prefix)/opt/python@3.9/bin:$PATH"' >> "$profile"
|
||||
source "$profile"
|
||||
|
||||
.. Include common instructions:
|
||||
|
||||
.. include:: _includes/create-env-with-venv.rst
|
||||
|
||||
.. include:: _includes/install-and-setup-red-unix.rst
|
||||
54
docs/install_guides/opensuse-leap-15.rst
Normal file
54
docs/install_guides/opensuse-leap-15.rst
Normal file
@@ -0,0 +1,54 @@
|
||||
.. _install-opensuse-leap-15:
|
||||
|
||||
=====================================
|
||||
Installing Red on openSUSE Leap 15.2+
|
||||
=====================================
|
||||
|
||||
.. include:: _includes/linux-preamble.rst
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
We recommend installing a community package to get Python 3.9 on openSUSE Leap 15.2+. This package will
|
||||
be installed to the ``/opt`` directory.
|
||||
|
||||
First, add the Opt-Python community repository:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
source /etc/os-release
|
||||
sudo zypper -n ar -f https://download.opensuse.org/repositories/home:/Rotkraut:/Opt-Python/openSUSE_Leap_${VERSION_ID}/ Opt-Python
|
||||
sudo zypper -n --gpg-auto-import-keys ref
|
||||
|
||||
Now install the pre-requirements with zypper:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo zypper -n install opt-python39 opt-python39-setuptools git-core java-11-openjdk-headless nano
|
||||
sudo zypper -n install -t pattern devel_basis
|
||||
|
||||
Since Python is now installed to ``/opt/python``, we should add it to PATH. You can add a file in
|
||||
``/etc/profile.d/`` to do this:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
echo 'export PATH="/opt/python/bin:$PATH"' | sudo tee /etc/profile.d/opt-python.sh
|
||||
source /etc/profile.d/opt-python.sh
|
||||
|
||||
Now, bootstrap pip with ensurepip:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo /opt/python/bin/python3.9 -m ensurepip --altinstall
|
||||
|
||||
.. note::
|
||||
|
||||
After this command, a warning about running pip as root might be printed.
|
||||
For this specific command, this warning can be safely ignored.
|
||||
|
||||
.. Include common instructions:
|
||||
|
||||
.. include:: _includes/create-env-with-venv.rst
|
||||
|
||||
.. include:: _includes/install-and-setup-red-unix.rst
|
||||
25
docs/install_guides/opensuse-tumbleweed.rst
Normal file
25
docs/install_guides/opensuse-tumbleweed.rst
Normal file
@@ -0,0 +1,25 @@
|
||||
.. _install-opensuse-tumbleweed:
|
||||
|
||||
=====================================
|
||||
Installing Red on openSUSE Tumbleweed
|
||||
=====================================
|
||||
|
||||
.. include:: _includes/linux-preamble.rst
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
openSUSE Tumbleweed has all required dependencies available in official repositories. Install them
|
||||
with zypper:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo zypper -n install python39-base python39-pip git-core java-11-openjdk-headless nano
|
||||
sudo zypper -n install -t pattern devel_basis
|
||||
|
||||
.. Include common instructions:
|
||||
|
||||
.. include:: _includes/create-env-with-venv.rst
|
||||
|
||||
.. include:: _includes/install-and-setup-red-unix.rst
|
||||
7
docs/install_guides/oracle-linux-8.rst
Normal file
7
docs/install_guides/oracle-linux-8.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
.. _install-oracle-linux-8:
|
||||
|
||||
======================================
|
||||
Installing Red on Oracle Linux 8.4-8.x
|
||||
======================================
|
||||
|
||||
.. include:: _includes/install-guide-rhel8-derivatives.rst
|
||||
7
docs/install_guides/oracle-linux-9.rst
Normal file
7
docs/install_guides/oracle-linux-9.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
.. _install-oracle-linux-9:
|
||||
|
||||
================================
|
||||
Installing Red on Oracle Linux 9
|
||||
================================
|
||||
|
||||
.. include:: _includes/install-guide-rhel9-derivatives.rst
|
||||
48
docs/install_guides/raspberry-pi-os-10.rst
Normal file
48
docs/install_guides/raspberry-pi-os-10.rst
Normal file
@@ -0,0 +1,48 @@
|
||||
.. _install-raspberry-pi-os-10:
|
||||
|
||||
====================================================
|
||||
Installing Red on Raspberry Pi OS (Legacy) 10 Buster
|
||||
====================================================
|
||||
|
||||
.. note::
|
||||
|
||||
While we do provide support and install instructions for running Red
|
||||
on Raspberry Pi OS (Legacy) 10 Buster, we highly recommend installing/upgrading to
|
||||
the new version - Raspberry Pi OS 11 Bullseye.
|
||||
|
||||
If you're not sure what version you are using,
|
||||
you can check your version of Raspberry Pi OS by running:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
lsb_release -a
|
||||
|
||||
If you're running Bullseye already, read `install-raspberry-pi-os-11` document instead.
|
||||
|
||||
If you're using Buster, please consider upgrading to Bullseye if possible.
|
||||
You can read
|
||||
`the post about Bullseye release from Raspberry Pi Foundation <https://www.raspberrypi.com/news/raspberry-pi-os-debian-bullseye/>`__
|
||||
to learn how you can install/upgrade to the new version.
|
||||
|
||||
.. include:: _includes/linux-preamble.rst
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
We recommend installing pyenv as a method of installing non-native versions of Python on
|
||||
Raspberry Pi OS. This guide will tell you how. First, run the following commands:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt update
|
||||
sudo apt -y install make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev libgdbm-dev uuid-dev python3-openssl git openjdk-11-jre-headless nano
|
||||
CXX=/usr/bin/g++
|
||||
|
||||
.. Include common instructions:
|
||||
|
||||
.. include:: _includes/install-python38-pyenv.rst
|
||||
|
||||
.. include:: _includes/create-env-with-pyenv-virtualenv.rst
|
||||
|
||||
.. include:: _includes/install-and-setup-red-unix.rst
|
||||
40
docs/install_guides/raspberry-pi-os-11.rst
Normal file
40
docs/install_guides/raspberry-pi-os-11.rst
Normal file
@@ -0,0 +1,40 @@
|
||||
.. _install-raspberry-pi-os-11:
|
||||
|
||||
=============================================
|
||||
Installing Red on Raspberry Pi OS 11 Bullseye
|
||||
=============================================
|
||||
|
||||
.. note::
|
||||
|
||||
This guide can only be used with Raspberry Pi OS 11 Bullseye,
|
||||
it will not work with any older (e.g. Raspberry Pi OS 10 Buster)
|
||||
or newer (e.g. Raspberry Pi OS 12 Bookworm) releases.
|
||||
You can check your version of Raspberry Pi OS by running:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
lsb_release -a
|
||||
|
||||
If you're not running Bullseye, you should read
|
||||
`the post about Bullseye release from Raspberry Pi Foundation <https://www.raspberrypi.com/news/raspberry-pi-os-debian-bullseye/>`__
|
||||
to learn how you can install/upgrade to the new version.
|
||||
|
||||
.. include:: _includes/linux-preamble.rst
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
Raspberry Pi OS "Bullseye" has all required packages available in official repositories. Install them
|
||||
with apt:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt update
|
||||
sudo apt -y install python3 python3-dev python3-venv python3-pip git openjdk-11-jre-headless build-essential nano
|
||||
|
||||
.. Include common instructions:
|
||||
|
||||
.. include:: _includes/create-env-with-venv.rst
|
||||
|
||||
.. include:: _includes/install-and-setup-red-unix.rst
|
||||
7
docs/install_guides/rhel-8.rst
Normal file
7
docs/install_guides/rhel-8.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
.. _install-rhel-8:
|
||||
|
||||
=========================================================
|
||||
Installing Red on Red Hat Enterprise Linux (RHEL) 8.4-8.x
|
||||
=========================================================
|
||||
|
||||
.. include:: _includes/install-guide-rhel8-derivatives.rst
|
||||
7
docs/install_guides/rhel-9.rst
Normal file
7
docs/install_guides/rhel-9.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
.. _install-rhel-9:
|
||||
|
||||
===================================================
|
||||
Installing Red on Red Hat Enterprise Linux (RHEL) 9
|
||||
===================================================
|
||||
|
||||
.. include:: _includes/install-guide-rhel9-derivatives.rst
|
||||
7
docs/install_guides/rocky-linux-8.rst
Normal file
7
docs/install_guides/rocky-linux-8.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
.. _install-rocky-linux-8:
|
||||
|
||||
===============================
|
||||
Installing Red on Rocky Linux 8
|
||||
===============================
|
||||
|
||||
.. include:: _includes/install-guide-rhel8-derivatives.rst
|
||||
7
docs/install_guides/rocky-linux-9.rst
Normal file
7
docs/install_guides/rocky-linux-9.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
.. _install-rocky-linux-9:
|
||||
|
||||
===============================
|
||||
Installing Red on Rocky Linux 9
|
||||
===============================
|
||||
|
||||
.. include:: _includes/install-guide-rhel9-derivatives.rst
|
||||
37
docs/install_guides/ubuntu-1804.rst
Normal file
37
docs/install_guides/ubuntu-1804.rst
Normal file
@@ -0,0 +1,37 @@
|
||||
.. _install-ubuntu-1804:
|
||||
|
||||
==================================
|
||||
Installing Red on Ubuntu 18.04 LTS
|
||||
==================================
|
||||
|
||||
.. include:: _includes/linux-preamble.rst
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
We recommend adding the ``git-core`` ppa to install Git 2.11 or greater:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt update
|
||||
sudo apt -y install software-properties-common
|
||||
sudo add-apt-repository -y ppa:git-core/ppa
|
||||
|
||||
We recommend adding the ``deadsnakes`` ppa to install Python 3.9:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo add-apt-repository -y ppa:deadsnakes/ppa
|
||||
|
||||
Now install the pre-requirements with apt:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt -y install python3.9 python3.9-dev python3.9-venv python3-pip git openjdk-11-jre-headless build-essential nano
|
||||
|
||||
.. Include common instructions:
|
||||
|
||||
.. include:: _includes/create-env-with-venv.rst
|
||||
|
||||
.. include:: _includes/install-and-setup-red-unix.rst
|
||||
31
docs/install_guides/ubuntu-2004.rst
Normal file
31
docs/install_guides/ubuntu-2004.rst
Normal file
@@ -0,0 +1,31 @@
|
||||
.. _install-ubuntu-2004:
|
||||
|
||||
==================================
|
||||
Installing Red on Ubuntu 20.04 LTS
|
||||
==================================
|
||||
|
||||
.. include:: _includes/linux-preamble.rst
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
We recommend adding the ``git-core`` ppa to install Git 2.11 or greater:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt update
|
||||
sudo apt -y install software-properties-common
|
||||
sudo add-apt-repository -y ppa:git-core/ppa
|
||||
|
||||
Now install the pre-requirements with apt:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt -y install python3.9 python3.9-dev python3.9-venv python3-pip git openjdk-11-jre-headless build-essential nano
|
||||
|
||||
.. Include common instructions:
|
||||
|
||||
.. include:: _includes/create-env-with-venv.rst
|
||||
|
||||
.. include:: _includes/install-and-setup-red-unix.rst
|
||||
31
docs/install_guides/ubuntu-2204.rst
Normal file
31
docs/install_guides/ubuntu-2204.rst
Normal file
@@ -0,0 +1,31 @@
|
||||
.. _install-ubuntu-2204:
|
||||
|
||||
==================================
|
||||
Installing Red on Ubuntu 22.04 LTS
|
||||
==================================
|
||||
|
||||
.. include:: _includes/linux-preamble.rst
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
We recommend adding the ``deadsnakes`` ppa to install Python 3.9:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt update
|
||||
sudo apt -y install software-properties-common
|
||||
sudo add-apt-repository -y ppa:deadsnakes/ppa
|
||||
|
||||
Now install the pre-requirements with apt:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt -y install python3.9 python3.9-dev python3.9-venv python3-pip git openjdk-11-jre-headless build-essential nano
|
||||
|
||||
.. Include common instructions:
|
||||
|
||||
.. include:: _includes/create-env-with-venv.rst
|
||||
|
||||
.. include:: _includes/install-and-setup-red-unix.rst
|
||||
35
docs/install_guides/ubuntu-non-lts.rst
Normal file
35
docs/install_guides/ubuntu-non-lts.rst
Normal file
@@ -0,0 +1,35 @@
|
||||
.. _install-ubuntu-non-lts:
|
||||
|
||||
=========================================
|
||||
Installing Red on Ubuntu non-LTS versions
|
||||
=========================================
|
||||
|
||||
.. include:: _includes/linux-preamble.rst
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
We recommend adding the ``git-core`` ppa to install Git 2.11 or greater:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt update
|
||||
sudo apt -y install software-properties-common
|
||||
sudo add-apt-repository -yu ppa:git-core/ppa
|
||||
|
||||
Now, to install non-native version of python on non-LTS versions of Ubuntu, we recommend
|
||||
installing pyenv. To do this, first run the following commands:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt -y install make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev libgdbm-dev uuid-dev python3-openssl git openjdk-11-jre-headless nano
|
||||
CXX=/usr/bin/g++
|
||||
|
||||
.. Include common instructions:
|
||||
|
||||
.. include:: _includes/install-python-pyenv.rst
|
||||
|
||||
.. include:: _includes/create-env-with-pyenv-virtualenv.rst
|
||||
|
||||
.. include:: _includes/install-and-setup-red-unix.rst
|
||||
@@ -10,15 +10,6 @@ Installing the pre-requirements
|
||||
|
||||
Please install the pre-requirements by following instructions from one of the following subsections.
|
||||
|
||||
The pre-requirements are:
|
||||
- Python 3.8.1 or greater
|
||||
- Pip 18.1 or greater
|
||||
- Git 2.11+
|
||||
- Java Runtime Environment 11 (for audio support)
|
||||
|
||||
We also recommend installing some basic compiler tools, in case our dependencies don't provide
|
||||
pre-built "wheels" for your architecture.
|
||||
|
||||
.. contents:: Choose a method of installing pre-requirements:
|
||||
:local:
|
||||
|
||||
@@ -39,14 +30,14 @@ Then run each of the following commands:
|
||||
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072
|
||||
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
|
||||
choco upgrade git --params "/GitOnlyOnPath /WindowsTerminal" -y
|
||||
choco upgrade visualstudio2019-workload-vctools -y
|
||||
choco upgrade python3 -y --version 3.9.7
|
||||
choco upgrade visualstudio2022-workload-vctools -y
|
||||
choco upgrade python3 -y --version 3.9.13
|
||||
|
||||
For Audio support, you should also run the following command before exiting:
|
||||
|
||||
.. prompt:: powershell
|
||||
|
||||
choco upgrade adoptopenjdk11jre -y
|
||||
choco upgrade temurin11 -y --version 11.0.14.10100
|
||||
|
||||
|
||||
From here, exit the prompt then continue onto `creating-venv-windows`.
|
||||
@@ -64,7 +55,7 @@ Manually installing dependencies
|
||||
|
||||
* `MSVC Build tools <https://www.visualstudio.com/downloads/#build-tools-for-visual-studio-2019>`_
|
||||
|
||||
* `Python 3.8.1 or greater <https://www.python.org/downloads/>`_
|
||||
* `Python 3.8.1 - 3.9.x <https://www.python.org/downloads/windows/>`_
|
||||
|
||||
.. 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.
|
||||
@@ -73,7 +64,7 @@ Manually installing dependencies
|
||||
|
||||
.. attention:: Please choose the option to "Git from the command line and also from 3rd-party software" in Git's setup.
|
||||
|
||||
* `Java 11 <https://adoptopenjdk.net/?variant=openjdk11&jvmVariant=hotspot>`_ - needed for Audio
|
||||
* `Java 11 <https://adoptium.net/?variant=openjdk11>`_ - needed for Audio
|
||||
|
||||
From here, continue onto `creating-venv-windows`.
|
||||
|
||||
@@ -175,8 +166,7 @@ Once done setting up the instance, run the following command to run Red:
|
||||
redbot <your instance name>
|
||||
|
||||
It will walk through the initial setup, asking for your token and a prefix.
|
||||
You can find out how to obtain a token with
|
||||
`this guide <bot_application_guide>`.
|
||||
`See how to obtain a token. <../bot_application_guide>`
|
||||
|
||||
.. tip::
|
||||
If it's the first time you're using Red, you should check our `getting-started` guide
|
||||
@@ -1,516 +0,0 @@
|
||||
.. _linux-mac-install-guide:
|
||||
|
||||
==============================
|
||||
Installing Red on Linux or Mac
|
||||
==============================
|
||||
|
||||
.. warning::
|
||||
|
||||
For safety reasons, DO NOT install Red with a root user. If you are unsure how to create
|
||||
a new user on Linux, see `this guide by DigitalOcean
|
||||
<https://www.digitalocean.com/community/tutorials/how-to-create-a-new-sudo-enabled-user-on-ubuntu-20-04-quickstart>`_.
|
||||
|
||||
-------------------------------
|
||||
Installing the pre-requirements
|
||||
-------------------------------
|
||||
|
||||
Please install the pre-requirements using the commands listed for your operating system.
|
||||
|
||||
The pre-requirements are:
|
||||
- Python 3.8.1 or greater
|
||||
- Pip 18.1 or greater
|
||||
- Git 2.11+
|
||||
- Java Runtime Environment 11 (for audio support)
|
||||
|
||||
We recommend installing the nano text editor as our guides may instruct you to create or edit some files. We also recommend installing some basic compiler tools in case our dependencies don't provide pre-built "wheels" for your architecture.
|
||||
|
||||
|
||||
*****************
|
||||
Operating systems
|
||||
*****************
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
----
|
||||
|
||||
.. _install-arch:
|
||||
|
||||
~~~~~~~~~~
|
||||
Arch Linux
|
||||
~~~~~~~~~~
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo pacman -Syu python python-pip git jre11-openjdk-headless base-devel nano
|
||||
|
||||
Continue by `creating-venv-linux`.
|
||||
|
||||
----
|
||||
|
||||
.. _install-centos7:
|
||||
.. _install-rhel7:
|
||||
|
||||
~~~~~~~~~~~~~~~~~
|
||||
CentOS and RHEL 7
|
||||
~~~~~~~~~~~~~~~~~
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo yum -y groupinstall development
|
||||
sudo yum -y install zlib-devel bzip2 bzip2-devel readline-devel sqlite sqlite-devel openssl-devel xz xz-devel tk-devel libffi-devel findutils java-11-openjdk-headless nano
|
||||
sudo yum -y install centos-release-scl
|
||||
sudo yum -y install devtoolset-8-gcc devtoolset-8-gcc-c++
|
||||
echo "source scl_source enable devtoolset-8" >> ~/.bashrc
|
||||
source ~/.bashrc
|
||||
|
||||
In order to install Git 2.11 or greater, we recommend adding the IUS repository:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo yum -y install https://repo.ius.io/ius-release-el7.rpm
|
||||
sudo yum -y swap git git224
|
||||
|
||||
Complete the rest of the installation by `installing Python 3.9 with pyenv <install-python-pyenv>`.
|
||||
|
||||
----
|
||||
|
||||
.. _install-centos:
|
||||
.. _install-rhel:
|
||||
|
||||
~~~~~~~~~~~~~~~~~
|
||||
CentOS and RHEL 8
|
||||
~~~~~~~~~~~~~~~~~
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo yum -y install epel-release
|
||||
sudo yum -y update
|
||||
sudo yum -y groupinstall development
|
||||
sudo yum -y install git zlib-devel bzip2 bzip2-devel readline-devel sqlite sqlite-devel openssl-devel xz xz-devel tk-devel libffi-devel findutils java-11-openjdk-headless nano
|
||||
|
||||
Complete the rest of the installation by `installing Python 3.9 with pyenv <install-python-pyenv>`.
|
||||
|
||||
----
|
||||
|
||||
.. _install-debian:
|
||||
.. _install-raspbian:
|
||||
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
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:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt update
|
||||
sudo apt -y install make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev libgdbm-dev uuid-dev python3-openssl git openjdk-11-jre-headless nano
|
||||
CXX=/usr/bin/g++
|
||||
|
||||
Complete the rest of the installation by `installing Python 3.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`.
|
||||
|
||||
----
|
||||
|
||||
.. _install-fedora:
|
||||
|
||||
~~~~~~~~~~~~
|
||||
Fedora Linux
|
||||
~~~~~~~~~~~~
|
||||
|
||||
Fedora Linux 33 and above has all required packages available in official repositories. Install
|
||||
them with dnf:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo dnf -y install python39 git java-11-openjdk-headless @development-tools nano
|
||||
|
||||
Continue by `creating-venv-linux`.
|
||||
|
||||
----
|
||||
|
||||
.. _install-mac:
|
||||
|
||||
~~~
|
||||
Mac
|
||||
~~~
|
||||
|
||||
Install Brew: in Finder or Spotlight, search for and open *Terminal*. In the terminal, paste the
|
||||
following, then press Enter:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
|
||||
|
||||
After the installation, install the required packages by pasting the commands and pressing enter,
|
||||
one-by-one:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
brew install python@3.9
|
||||
echo 'export PATH="$(brew --prefix)/opt/python@3.9/bin:$PATH"' >> ~/.profile
|
||||
source ~/.profile
|
||||
brew install git
|
||||
brew install --cask adoptopenjdk/openjdk/adoptopenjdk11
|
||||
|
||||
Continue by `creating-venv-linux`.
|
||||
|
||||
----
|
||||
|
||||
.. _install-opensuse:
|
||||
|
||||
~~~~~~~~
|
||||
openSUSE
|
||||
~~~~~~~~
|
||||
|
||||
openSUSE Leap 15.2+
|
||||
*******************
|
||||
|
||||
We recommend installing a community package to get Python 3.9 on openSUSE Leap 15.2+. This package will
|
||||
be installed to the ``/opt`` directory.
|
||||
|
||||
First, add the Opt-Python community repository:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
source /etc/os-release
|
||||
sudo zypper -n ar -f https://download.opensuse.org/repositories/home:/Rotkraut:/Opt-Python/openSUSE_Leap_${VERSION_ID}/ Opt-Python
|
||||
sudo zypper -n --gpg-auto-import-keys ref
|
||||
|
||||
Now install the pre-requirements with zypper:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo zypper -n install opt-python39 opt-python39-setuptools git-core java-11-openjdk-headless nano
|
||||
sudo zypper -n install -t pattern devel_basis
|
||||
|
||||
Since Python is now installed to ``/opt/python``, we should add it to PATH. You can add a file in
|
||||
``/etc/profile.d/`` to do this:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
echo 'export PATH="/opt/python/bin:$PATH"' | sudo tee /etc/profile.d/opt-python.sh
|
||||
source /etc/profile.d/opt-python.sh
|
||||
|
||||
Now, bootstrap pip with ensurepip:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo /opt/python/bin/python3.9 -m ensurepip --altinstall
|
||||
|
||||
.. note::
|
||||
|
||||
After this command, a warning about running pip as root might be printed.
|
||||
For this specific command, this warning can be safely ignored.
|
||||
|
||||
Continue by `creating-venv-linux`.
|
||||
|
||||
openSUSE Tumbleweed
|
||||
*******************
|
||||
|
||||
openSUSE Tumbleweed has all required dependencies available in official repositories. Install them
|
||||
with zypper:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo zypper -n install python39-base python39-pip git-core java-11-openjdk-headless nano
|
||||
sudo zypper -n install -t pattern devel_basis
|
||||
|
||||
Continue by `creating-venv-linux`.
|
||||
|
||||
----
|
||||
|
||||
.. _install-ubuntu-1804:
|
||||
|
||||
~~~~~~~~~~~~~~~~
|
||||
Ubuntu 18.04 LTS
|
||||
~~~~~~~~~~~~~~~~
|
||||
|
||||
We recommend adding the ``git-core`` ppa to install Git 2.11 or greater:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt update
|
||||
sudo apt -y install software-properties-common
|
||||
sudo add-apt-repository -y ppa:git-core/ppa
|
||||
|
||||
We recommend adding the ``deadsnakes`` ppa to install Python 3.9:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo add-apt-repository -y ppa:deadsnakes/ppa
|
||||
|
||||
Now install the pre-requirements with apt:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt -y install python3.9 python3.9-dev python3.9-venv python3-pip git openjdk-11-jre-headless build-essential nano
|
||||
|
||||
Continue by `creating-venv-linux`.
|
||||
|
||||
----
|
||||
|
||||
.. _install-ubuntu:
|
||||
|
||||
~~~~~~~~~~~~~~~~
|
||||
Ubuntu 20.04 LTS
|
||||
~~~~~~~~~~~~~~~~
|
||||
|
||||
We recommend adding the ``git-core`` ppa to install Git 2.11 or greater:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt update
|
||||
sudo apt -y install software-properties-common
|
||||
sudo add-apt-repository -y ppa:git-core/ppa
|
||||
|
||||
Now install the pre-requirements with apt:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt -y install python3.9 python3.9-dev python3.9-venv python3-pip git openjdk-11-jre-headless build-essential nano
|
||||
|
||||
Continue by `creating-venv-linux`.
|
||||
|
||||
----
|
||||
|
||||
.. _install-ubuntu-non-lts:
|
||||
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
Ubuntu non-LTS versions
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
We recommend adding the ``git-core`` ppa to install Git 2.11 or greater:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt update
|
||||
sudo apt -y install software-properties-common
|
||||
sudo add-apt-repository -yu ppa:git-core/ppa
|
||||
|
||||
Now, to install non-native version of python on non-LTS versions of Ubuntu, we recommend
|
||||
installing pyenv. To do this, first run the following commands:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
sudo apt -y install make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev libgdbm-dev uuid-dev python3-openssl git openjdk-11-jre-headless nano
|
||||
CXX=/usr/bin/g++
|
||||
|
||||
And then complete the rest of the installation by `installing Python 3.9 with pyenv <install-python-pyenv>`.
|
||||
|
||||
----
|
||||
|
||||
.. _install-python-pyenv:
|
||||
|
||||
****************************
|
||||
Installing Python with pyenv
|
||||
****************************
|
||||
|
||||
.. note::
|
||||
|
||||
If you followed one of the sections above, and weren't linked here afterwards, you should skip
|
||||
this section.
|
||||
|
||||
On distributions where Python 3.9 needs to be compiled from source, we recommend the use of pyenv.
|
||||
This simplifies the compilation process and has the added bonus of simplifying setting up Red in a
|
||||
virtual environment.
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
command -v pyenv && pyenv update || curl https://pyenv.run | bash
|
||||
|
||||
**After this command, you may see a warning about 'pyenv' not being in the load path. Follow the
|
||||
instructions given to fix that, then close and reopen your shell.**
|
||||
|
||||
Then run the following command:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
CONFIGURE_OPTS=--enable-optimizations pyenv install 3.9.7 -v
|
||||
|
||||
This may take a long time to complete, depending on your hardware. For some machines (such as
|
||||
Raspberry Pis and micro-tier VPSes), it may take over an hour; in this case, you may wish to remove
|
||||
the ``CONFIGURE_OPTS=--enable-optimizations`` part from the front of the command, which will
|
||||
drastically reduce the install time. However, be aware that this will make Python run about 10%
|
||||
slower.
|
||||
|
||||
After that is finished, run:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
pyenv global 3.9.7
|
||||
|
||||
Pyenv is now installed and your system should be configured to run Python 3.9.
|
||||
|
||||
Continue by `creating-venv-linux`.
|
||||
|
||||
.. _creating-venv-linux:
|
||||
|
||||
------------------------------
|
||||
Creating a Virtual Environment
|
||||
------------------------------
|
||||
|
||||
.. tip::
|
||||
|
||||
If you want to learn more about virtual environments, see page: `about-venvs`
|
||||
|
||||
We require installing Red into a virtual environment. Don't be scared, it's very
|
||||
straightforward.
|
||||
|
||||
You have 2 options:
|
||||
|
||||
* :ref:`using-venv` (quick and easy, involves just two commands)
|
||||
* :ref:`using-pyenv-virtualenv` (only available and recommended when you installed Python with pyenv)
|
||||
|
||||
----
|
||||
|
||||
.. _using-venv:
|
||||
|
||||
**************
|
||||
Using ``venv``
|
||||
**************
|
||||
This is the quickest way to get your virtual environment up and running, as `venv` is shipped with
|
||||
python.
|
||||
|
||||
First, choose a directory where you would like to create your virtual environment. It's a good idea
|
||||
to keep it in a location which is easy to type out the path to. From now, we'll call it
|
||||
``redenv`` and it will be located in your home directory.
|
||||
|
||||
Create your virtual environment with the following command:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
python3.9 -m venv ~/redenv
|
||||
|
||||
And activate it with the following command:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
source ~/redenv/bin/activate
|
||||
|
||||
.. important::
|
||||
|
||||
You must activate the virtual environment with the above command every time you open a new
|
||||
shell to run, install or update Red.
|
||||
|
||||
Continue by `installing-red-linux-mac`.
|
||||
|
||||
----
|
||||
|
||||
.. _using-pyenv-virtualenv:
|
||||
|
||||
**************************
|
||||
Using ``pyenv virtualenv``
|
||||
**************************
|
||||
|
||||
Using ``pyenv virtualenv`` saves you the headache of remembering where you installed your virtual
|
||||
environments. This option is only available if you installed Python with pyenv.
|
||||
|
||||
First, ensure your pyenv interpreter is set to python 3.8.1 or greater with the following command:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
pyenv version
|
||||
|
||||
Now, create a virtual environment with the following command:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
pyenv virtualenv <name>
|
||||
|
||||
Replace ``<name>`` with whatever you like. If you ever forget what you named it,
|
||||
you can always use the command ``pyenv versions`` to list all virtual environments.
|
||||
|
||||
Now activate your virtualenv with the following command:
|
||||
|
||||
.. prompt:: bash
|
||||
|
||||
pyenv shell <name>
|
||||
|
||||
.. important::
|
||||
|
||||
You must activate the virtual environment with the above command every time you open a new
|
||||
shell to run, install or update Red. You can check out other commands like ``pyenv local`` and
|
||||
``pyenv global`` if you wish to keep the virtualenv activated all the time.
|
||||
|
||||
Continue by `installing-red-linux-mac`.
|
||||
|
||||
.. _pyenv-installer: https://github.com/pyenv/pyenv-installer/blob/master/README.rst
|
||||
|
||||
.. _installing-red-linux-mac:
|
||||
|
||||
--------------
|
||||
Installing Red
|
||||
--------------
|
||||
|
||||
Choose one of the following commands to install Red.
|
||||
|
||||
To install without additional config backend support:
|
||||
|
||||
.. prompt:: bash
|
||||
:prompts: (redenv) $
|
||||
|
||||
python -m pip install -U pip setuptools wheel
|
||||
python -m pip install -U Red-DiscordBot
|
||||
|
||||
Or, to install with PostgreSQL support:
|
||||
|
||||
.. prompt:: bash
|
||||
:prompts: (redenv) $
|
||||
|
||||
python -m pip install -U pip setuptools wheel
|
||||
python -m pip install -U "Red-DiscordBot[postgres]"
|
||||
|
||||
|
||||
.. note::
|
||||
|
||||
These commands are also used for updating Red
|
||||
|
||||
--------------------------
|
||||
Setting Up and Running Red
|
||||
--------------------------
|
||||
|
||||
After installation, set up your instance with the following command:
|
||||
|
||||
.. prompt:: bash
|
||||
:prompts: (redenv) $
|
||||
|
||||
redbot-setup
|
||||
|
||||
This will set the location where data will be stored, as well as your
|
||||
storage backend and the name of the instance (which will be used for
|
||||
running the bot).
|
||||
|
||||
Once done setting up the instance, run the following command to run Red:
|
||||
|
||||
.. prompt:: bash
|
||||
:prompts: (redenv) $
|
||||
|
||||
redbot <your instance name>
|
||||
|
||||
It will walk through the initial setup, asking for your token and a prefix.
|
||||
You can find out how to obtain a token with
|
||||
`this guide <bot_application_guide>`.
|
||||
|
||||
.. tip::
|
||||
If it's the first time you're using Red, you should check our `getting-started` guide
|
||||
that will walk you through all essential information on how to interact with Red.
|
||||
@@ -123,14 +123,11 @@ The *bandaid fix* is for you to change your bot's prefix to a mention and a good
|
||||
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
|
||||
`It is not known what those even entail <https://gist.github.com/spiralw/091714718718379b6efcdbcaf807a024#q-what-usecases-will-be-valid>`_ at this point, but they have already stated that "parsing commands" is not a valid justification. |br|
|
||||
To make the matter worse, Discord is making `a huge push for all bot developers to implement slash commands <https://support.discord.com/hc/en-us/articles/1500000368501-Slash-Commands-FAQ>`_, which at the moment
|
||||
are rather lacking in features and cannot cover all the functionalities that standard commands offer. |br|
|
||||
Discord staff
|
||||
`stated <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|
|
||||
`stated that they will want your bot to have slash commands when you ask for message intent <https://gist.github.com/spiralw/091714718718379b6efcdbcaf807a024#q-if-we-are-granted-this-intent-will-bots-be-sanctioned-if-they-use-it-for-their-own-use-case-but-also-to-continue-to-run-normal-non-slash-commands-or-do-we-assume-that-if-you-are-granted-the-intent-you-are-trusted-with-it-and-are-allowed-to-use-it-for-additional-uses>`_. |br|
|
||||
Slash commands might very well turn out to be a big undertaking for the Red team to implement, even more now that our
|
||||
underlying library, `discord.py <https://github.com/Rapptz/discord.py>`_, has been discontinued. |br|
|
||||
The time window that Discord is giving us to adapt is very narrow: **Red will likely not be able to support slash
|
||||
|
||||
@@ -31,7 +31,7 @@ Red 3.2.0 or newer
|
||||
Windows
|
||||
-------
|
||||
|
||||
If you have Red 3.2.0 or newer, you can upgrade by following these 4 easy steps:
|
||||
If you have Red 3.2.0 or newer, you can upgrade by following these steps:
|
||||
|
||||
1. Shut your bot down.
|
||||
|
||||
@@ -59,7 +59,7 @@ If you have Red 3.2.0 or newer, you can upgrade by following these 4 easy steps:
|
||||
Linux & Mac
|
||||
-----------
|
||||
|
||||
If you have Red 3.2.0 or newer, you can upgrade by following these 4 easy steps:
|
||||
If you have Red 3.2.0 or newer, you can upgrade by following these steps:
|
||||
|
||||
1. Shut your bot down.
|
||||
|
||||
@@ -97,10 +97,7 @@ Red 3.1.X
|
||||
|
||||
If you have Red 3.1.X, you will need to follow the install instructions for your operating system. Make sure that you turn your bot off first.
|
||||
|
||||
- `Windows <install_windows>`
|
||||
- `Linux & Mac <install_linux_mac>`
|
||||
|
||||
Follow every step to ensure you have all dependencies up-to-date and only skip ``redbot-setup`` step as you already have a bot instance.
|
||||
Go to the `install_guides/index` guide and follow every step to ensure you have all dependencies up-to-date and only skip the ``redbot-setup`` step as you already have a bot instance.
|
||||
|
||||
**If you already have Red installed in a virtual environment, you will need to delete it before starting this process.**
|
||||
|
||||
@@ -139,9 +136,6 @@ Red 3.0.2 and older
|
||||
|
||||
If you have Red 3.0.2 or older, you will need to follow the install instructions for your operating system. Make sure that you turn your bot off first.
|
||||
|
||||
- `Windows <install_windows>`
|
||||
- `Linux & Mac <install_linux_mac>`
|
||||
|
||||
Follow every step to ensure you have all dependencies up-to-date and only skip ``redbot-setup`` step as you already have a bot instance.
|
||||
Go to the `install_guides/index` guide and follow every step to ensure you have all dependencies up-to-date and only skip the ``redbot-setup`` step as you already have a bot instance.
|
||||
|
||||
**If you already have Red installed in a virtual environment, you will need to delete it before starting this process.**
|
||||
|
||||
@@ -214,7 +214,7 @@ def _early_init():
|
||||
_ensure_no_colorama()
|
||||
|
||||
|
||||
__version__ = "3.4.13"
|
||||
__version__ = "3.4.17"
|
||||
version_info = VersionInfo.from_str(__version__)
|
||||
|
||||
# Filter fuzzywuzzy slow sequence matcher warning
|
||||
|
||||
@@ -222,7 +222,7 @@ def _edit_instance_name(old_name, new_name, confirm_overwrite, no_prompt):
|
||||
" run this command with --overwrite-existing-instance flag."
|
||||
)
|
||||
elif not no_prompt and confirm("Would you like to change the instance name?", default=False):
|
||||
name = get_name()
|
||||
name = get_name("")
|
||||
if name in _get_instance_names():
|
||||
print(
|
||||
"WARNING: An instance already exists with this name. "
|
||||
@@ -270,7 +270,9 @@ def _edit_data_path(data, instance_name, data_path, copy_data, no_prompt):
|
||||
print("Can't copy data to non-empty location. Data location will remain unchanged.")
|
||||
data["DATA_PATH"] = data_manager.basic_config["DATA_PATH"]
|
||||
elif not no_prompt and confirm("Would you like to change the data location?", default=False):
|
||||
data["DATA_PATH"] = get_data_dir(instance_name)
|
||||
data["DATA_PATH"] = get_data_dir(
|
||||
instance_name=instance_name, data_path=None, interactive=True
|
||||
)
|
||||
if confirm("Do you want to copy the data from old location?", default=True):
|
||||
if not _copy_data(data):
|
||||
print("Can't copy the data to non-empty location.")
|
||||
|
||||
@@ -3,10 +3,11 @@ import logging
|
||||
from typing import Tuple
|
||||
|
||||
import discord
|
||||
|
||||
from redbot.core import Config, checks, commands
|
||||
from redbot.core.i18n import Translator, cog_i18n
|
||||
from redbot.core.utils.chat_formatting import box
|
||||
from redbot.core.utils.predicates import MessagePredicate
|
||||
|
||||
from .announcer import Announcer
|
||||
from .converters import SelfRole
|
||||
|
||||
@@ -509,6 +510,40 @@ class Admin(commands.Cog):
|
||||
|
||||
await ctx.send(message)
|
||||
|
||||
@selfroleset.command(name="clear")
|
||||
async def selfroleset_clear(self, ctx: commands.Context):
|
||||
"""Clear the list of available selfroles for this server."""
|
||||
current_selfroles = await self.config.guild(ctx.guild).selfroles()
|
||||
|
||||
if not current_selfroles:
|
||||
return await ctx.send(_("There are currently no selfroles."))
|
||||
|
||||
await ctx.send(
|
||||
_("Are you sure you want to clear this server's selfrole list?") + " (yes/no)"
|
||||
)
|
||||
try:
|
||||
pred = MessagePredicate.yes_or_no(ctx, user=ctx.author)
|
||||
await ctx.bot.wait_for("message", check=pred, timeout=60)
|
||||
except asyncio.TimeoutError:
|
||||
await ctx.send(_("You took too long to respond."))
|
||||
return
|
||||
if pred.result:
|
||||
for role in current_selfroles:
|
||||
role = ctx.guild.get_role(role)
|
||||
if role is None:
|
||||
continue
|
||||
if not self.pass_user_hierarchy_check(ctx, role):
|
||||
await ctx.send(
|
||||
_(
|
||||
"I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
).format(role=role)
|
||||
)
|
||||
return
|
||||
await self.config.guild(ctx.guild).selfroles.clear()
|
||||
await ctx.send(_("Selfrole list cleared."))
|
||||
else:
|
||||
await ctx.send(_("No changes have been made."))
|
||||
|
||||
@commands.command()
|
||||
@checks.is_owner()
|
||||
async def serverlock(self, ctx: commands.Context):
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Afrikaans\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: af_ZA\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -81,7 +81,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -90,12 +90,12 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -108,11 +108,11 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -122,51 +122,48 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -175,7 +172,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -184,7 +181,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -193,24 +190,24 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -218,23 +215,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -242,28 +239,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: ar_SA\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "حاولت القيام بشيء لا أملك تصريح من ديسكورد لفعله. فشل أمرك في إكمال نجاحه."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
msgid "I can not give {role.name} to {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
|
||||
msgstr "لا يمكنني إعطاء {role.name} إلى {member.display_name} لأن هذا الرتبة أعلى من أو يساوي أعلى رتبةي في التسلسل الهرمي لـ Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
msgid "I can not remove {role.name} from {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
|
||||
msgstr "لا يمكنني إزالة {role.name} من {member.display_name} لأن هذا الرتبة أعلى من أو يساوي أعلى رتبةي في التسلسل الهرمي لـ Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "لا يمكنني تحرير {role.name} لأن هذا الرتبة أعلى من رتبةي أو يساوي أعلى رتبة في التسلسل الهرمي لـ Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
msgid "I can not let you give {role.name} to {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "لا يمكنني السماح لك بإعطاء {role.name} لـ {member.display_name} لأن هذا الرتبة أعلى من أو يساوي أعلى رتبةك في التسلسل الهرمي لـ Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
msgid "I can not let you remove {role.name} from {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "لا يمكنني السماح لك بإزالة {role.name} من {member.display_name} لأن هذا الرتبة أعلى من أو يساوي أعلى رتبةك في التسلسل الهرمي لـ Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
msgid "I can not let you edit {role.name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "لا يمكنني السماح لك بتحرير {role.name} لأن هذا الرتبة أعلى من أو يساوي أعلى رتبةك في التسلسل الهرمي لـ Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "أنا بالفعل أُعلن شيئاً. إذا كنت ترغب في إصدار إعلان مختلف الرجاء إستخدام `{prefix}announce cancel` أولاً."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "مجموعة من أدوات إدارة السيرفر."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name} بالفعل يملك الرتبة {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "لقد قمت بنجاح بإضافة {role.name} إلى {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name} ليس له الرتبة {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "لقد قمت بنجاح بإزالة {role.name} من {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -84,7 +84,7 @@ msgstr "\n"
|
||||
" استخدام علامات اقتباس مزدوجة إذا كان الرتبة يحتوي على مسافات.\n"
|
||||
" إذا ترك المستخدم فارغاً فإنه افتراضياً لمؤلف الأمر.\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -96,12 +96,12 @@ msgstr "\n"
|
||||
" استخدام علامات اقتباس مزدوجة إذا كان الرتبة يحتوي على مسافات.\n"
|
||||
" إذا ترك المستخدم فارغاً فإنه افتراضياً لمؤلف الأمر.\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "تعديل إعدادات الرتبة."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -120,11 +120,11 @@ msgstr "\n"
|
||||
" أمثلة:\n"
|
||||
" '[p]editrole اللون \"الترانزستور\" #ff0000'n'n'[p]editrole لون اختبار #ff9900'n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "تم."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -138,51 +138,48 @@ msgstr "\n"
|
||||
" المثال:\n"
|
||||
" '[p]اسم تحرير \"The Transistor\" Test'\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "الإعلان عن رسالة إلى جميع السيرفرات المتواجد بها البوت."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "تم البدء في الإعلان."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "إلغاء إعلان جارٍ."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "لا يوجد إعلان قيد التشغيل حالياً."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "تم إلغاء الإعلان الحالي."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "تغيير كيفية إرسال الإعلانات في هذه النقابة."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "تم تحديث قناة الإعلانات إلى {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -191,7 +188,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -203,7 +200,7 @@ msgstr "\n"
|
||||
" يجب أن يكون مسؤولو الخادم قد قاموا بتكوين الرتبة كـ settable للمستخدم.\n"
|
||||
" ملاحظة: الرتبة حساس للحالة!\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -215,7 +212,7 @@ msgstr "\n"
|
||||
" يجب أن يكون مسؤولو الخادم قد قاموا بتكوين الرتبة كـ settable للمستخدم.\n"
|
||||
" ملاحظة: الرتبة حساس للحالة!\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
@@ -223,18 +220,18 @@ msgid "\n"
|
||||
msgstr "\n"
|
||||
" يسرد كافة الرتب الذاتية المتوفرة.\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "الرتب الذاتية المتوفرة:\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr "تطبيق الرتبالذاتية."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -242,23 +239,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "لا يمكنني السماح لك بإضافة {role.name} لرتبة ذاتي لأن هذا الرتبة أعلى من أو يساوي أعلى رتبةك في التسلسل الهرمي لـ Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -266,28 +263,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "لا يمكنني السماح لك بإزالة {role.name} من كونه رتبةًا ذاتيًا لأن هذا الرتبة أعلى من أو يساوي أعلى رتبة لك في التسلسل الهرمي Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "قفل البوت للسيرفر الحالي فقط."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "لم يعد البوت مقفول للسيرفر الحالي فقط."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "لقد تم قفل البوت للسيرفر الحالي فقط."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: bg_BG\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Опитах да направя нещо, за което Discord ми забрани права. Команда не успя да завърши успешно."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
msgid "I can not give {role.name} to {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
|
||||
msgstr "Не мога да премахна {role.name} на {member.display_name}, защото ролята е по-голяма или равна на моята най-висока роля в йерархията на Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
msgid "I can not remove {role.name} from {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
|
||||
msgstr "Не мога да махна {role.name} на {member.display_name}, защото ролята е по-голяма или равна на моята най-висока роля в йерархията на Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "Не мога да редактирам {role.name}, защото ролята е по-голяма или равна на моята най-висока роля в йерархията на Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
msgid "I can not let you give {role.name} to {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Не мога да ти позволя да дадеш {role.name} на {member.display_name}, защото ролята е по-голяма или равна на най-високата ти роля в йерархията на Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
msgid "I can not let you remove {role.name} from {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Не мога да ти позволя да махнеш {role.name} на {member.display_name}, защото ролята е по-голяма или равна на най-високата ти роля в йерархията на Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
msgid "I can not let you edit {role.name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Не мога да ти позволя да редактираш {role.name}, защото ролята е по-голяма или равна на най-високата ти роля в йерархията на Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Вече обявявам нещо. Ако искаш да направиш различно съобщение, моля използвай `{prefix}announce cancel` първо."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Колекция от помощни програми за администриране на сървъри."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name} вече има ролята {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "Успешно добавих {role.name} на {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name} няма ролята {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "Успешно махнах {role.name} от {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -85,7 +85,7 @@ msgstr "\n"
|
||||
" Ако потребител е празно, то по подразбиране е автора на командата.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -98,12 +98,12 @@ msgstr "\n"
|
||||
" Ако потребител е празно, то по подразбиране е автора на командата.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Редактирай настройките на ролята."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -116,11 +116,11 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Завършено."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -130,51 +130,48 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -183,7 +180,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -192,7 +189,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -201,24 +198,24 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -226,23 +223,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -250,28 +247,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Заключете бота само за текущите му сървъри."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Ботът вече не е заключен за сървъри."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Ботът е заключен за сървъри."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bosnian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: bs_BA\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -81,7 +81,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -90,12 +90,12 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -108,11 +108,11 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -122,51 +122,48 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -175,7 +172,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -184,7 +181,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -193,24 +190,24 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -218,23 +215,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -242,28 +239,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Catalan\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: ca_ES\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "He intentat fer una cosa per la qual Discord m'ha denegat els permisos. La vostra comanda no s'ha pogut completar correctament."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 puc donar {role.name} a {member.display_name} 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:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "No puc treure {role.name} a {member.display_name} 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:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "No puc editar {role.name} 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:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 "No puc deixar-te donar {role.name} a {member.display_name} 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:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 "No puc deixar-te treure {role.name} a {member.display_name} 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:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 "No puc deixar-te editar {role.name} 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:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Ja estic anunciant alguna cosa. Si voleu fer un anunci diferent, primer utilitzeu `{prefix}announce cancel`."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Una col·lecció d’utilitats d’administració de servidors."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name} ja té el rol {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "He afegit amb èxit {role.name} a {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name} no té el rol {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "He tret amb èxit {role.name} a {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -85,7 +85,7 @@ msgstr "\n"
|
||||
" Si l'usuari es deixa en blanc el valor per defecte és l'autor del comandament.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -98,12 +98,12 @@ msgstr "\n"
|
||||
" Si l'usuari es deixa en blanc el valor per defecte és l'autor del comandament.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Editar la configuració del rol."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -124,11 +124,11 @@ msgstr "\n"
|
||||
" `[p]editrole colour Test #ff9900`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Fet."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -143,54 +143,48 @@ msgstr "\n"
|
||||
" `[p]editrole name \"The Transistor\" Test`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Anunciar un missatge a tots els servidors en què es troba el bot."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "L’anunci ha començat."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Cancel·lar un anunci en curs."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "Actualment no hi ha cap anunci en curs."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "L'anunci actual s'ha cancel·lat."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "Canvia com s’envien els anuncis en aquest servidor."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Change the channel where the bot will send announcements.\n\n"
|
||||
" If channel is left blank it defaults to the current channel.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Canvieu el canal on el bot enviarà anuncis.\n\n"
|
||||
" Si el canal es deixa en blanc el canal per defecte és el canal actual.\n"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "El canal d'anuncis s'ha establert a {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr "Treu el canal per als anuncis."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -203,7 +197,7 @@ msgstr "\n"
|
||||
" NOTA: El rol és sensible a majúscules!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -216,7 +210,7 @@ msgstr "\n"
|
||||
" NOTA: El rol és sensible a majúscules!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -229,7 +223,7 @@ msgstr "\n"
|
||||
" NOTA: El rol és sensible a majúscules!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
@@ -238,18 +232,18 @@ msgstr "\n"
|
||||
" Llista tots els selfrols disponibles.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "Selfroles disponibles:\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr "Gestiona selfroles."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -257,23 +251,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "No puc deixar-te afegir {role.name} com a selfrole perquè el rol està per sobre o igual que el meu rol més alt a la jerarquia de Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -281,28 +275,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "No puc deixar-te treure {role.name} de ser un selfrole perquè el rol està per sobre o igual que el meu rol més alt a la jerarquia de Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Bloqueja el bot només als seus servidors actuals."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "El bot ja no està bloquejat pel servidor."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "El bot està ara bloquejat pel servidor."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Czech\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: cs_CZ\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Pokusil jsem se udělat něco, co mi Discord odepřel. Tvůj příkaz se nepodažilo úspěšně dokončit."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "Nemohu dát {role.name} uživateli {member.display_name}, protože tato role je vyšší nebo rovna mé nejvyšší roli v Discord hierarchii."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "Nemohu odebrat {role.name} uživateli {member.display_name}, protože tato role je vyšší nebo rovna mé nejvyšší roli v Discord hierarchii."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "Nemohu upravit {role.name}, protože tato role je vyšší, než moje nebo stejná jako nejvyšší role v Discord hierarchii."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 "Nemohu ti dovolit dát {role.name} uživateli {member.display_name}, protože tato role je vyšší nebo rovna tvé nejvyšší roli v Discord hierarchii."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 "Nemohu ti dovolit odebrat {role.name} uživateli {member.display_name}, protože tato role je vyšší nebo rovna tvé nejvyšší roli v Discord hierarchii."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 "Nemohu ti dovolit upravit {role.name}, protože tato role je vyšší nebo rovna tvé nejvyšší roli v Discord hierarchii."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Už něco oznamuji. Pokud bys rád provedl jiné oznámení, nejdříve použij `{prefix}announce cancel`."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Kolekce nástrojů pro správu serveru."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name} již má roli {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "Úspěšně jsem přidal {role.name} k {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name} již má roli {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "Úspěšně jsem odstranil {role.name} od {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -85,7 +85,7 @@ msgstr "\n"
|
||||
" Ponecháte-li uživatel prázdný, výchozí hodnota autorovi příkazu.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -98,12 +98,12 @@ msgstr "\n"
|
||||
" Ponecháte-li uživatel prázdný, výchozí hodnota autorovi příkazu.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Upraví nastavení role."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -124,11 +124,11 @@ msgstr "\n"
|
||||
" `[p]editrole colour Spravce #ff9900`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Hotovo."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -143,54 +143,48 @@ msgstr "\n"
|
||||
" `[p]editrole name \"Spravce\" Admin`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Oznámit zprávu na všechny servery ve kterých je bot."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "Oznámení začalo."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Zrušit běžící oznámení."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "V současné době neexistuje žádné spuštěné oznámení."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "Momentální oznámení bylo zrušeno."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "Změňte způsob odesílání oznámení v tomto klanu."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Change the channel where the bot will send announcements.\n\n"
|
||||
" If channel is left blank it defaults to the current channel.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Změnit kanál, kam bot bude posílat oznámení.\n\n"
|
||||
" Pokud je kanál prázdný, nastaví aktuální kanál.\n"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "Kanál pro oznámení byl nastaven na {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr "Zruší kanál pro oznámení."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -199,7 +193,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -212,7 +206,7 @@ msgstr "\n"
|
||||
" POZNÁMKA: Role je citlivá na malá a velká písmena!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -225,7 +219,7 @@ msgstr "\n"
|
||||
" POZNÁMKA: Role je citlivá na malá a velká písmena!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
@@ -234,18 +228,18 @@ msgstr "\n"
|
||||
" Seznam všech dostupných self-rolí.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "Dostupné self-role:\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr "Spravovat self-role."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -253,23 +247,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Nemohu ti dovolit odebrat {role.name} jako self-roli uživateli, protože tato role je vyšší nebo rovna tvé nejvyšší roli v Discord hierarchii."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -277,28 +271,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Nemohu ti dovolit odebrat {role.name} uživateli, protože tato role je vyšší nebo rovna tvé nejvyšší roli v Discord hierarchii."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Uzamkne bota pouze na jeho aktuální servery."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Bot již není uzamčen na server."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Bot je nyní serverem uzamčen."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Danish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: da_DK\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Jeg forsøgte på noget som Discord har nægtet mig adgang til. Din kommando blev ikke gennemført."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "Jeg kan ikke give {role.name} til {member.display_name} da denne rolle er højere eller tilsvarende til min tildelte rolle i hierarkiet."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "Jeg kan ikke fjerne {role.name} fra {member.display_name} da denne rolle er højere eller tilsvarende til min tildelte rolle i hierarkiet."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "Jeg kan ikke redigere {role.name} da denne rolle er højere eller tilsvarende til min tildelte rolle i hierarkiet."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 "Jeg kan ikke lade dig tildele {role.name} til {member.display_name} da denne rolle er højere eller tilsvarende til din tildelte rolle i hierarkiet."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 "Jeg kan ikke lade dig fjerne {role.name} fra {member.display_name} da denne rolle er højere eller tilsvarende til din tildelte rolle i hierarkiet."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 "Jeg kan ikke lade dig redigere {role.name} da denne rolle er højere eller tilsvarende til din tildelte rolle i hierarkiet."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Jeg annoncere allerede noget. Hvis du ønsker at annoncere noget andet, benyt dig af '{prefix} annoncere annuller' først."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "En samling af server administrations værktøjer."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "Jeg gennemførte tilføjelsen af {role.name} til {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "Jeg gennemførte fjernelsen af {role.name} fra {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -81,7 +81,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -90,12 +90,12 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Rediger rolle indstillinger."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -108,11 +108,11 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Færdig."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -122,51 +122,48 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Annoncer en besked til alle serverne botten er i."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "Annonceringen er påbegyndt."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Afbryd en kørende annonce."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "Der er i øjeblikket ikke nogen kørende annonceringer."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "Den nuværende annoncering er blevet afbrudt."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "Ændre hvordan annonceringer er udsendt i denne server."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "Annoncerings kanalen er blevet sat til {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -175,7 +172,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -184,7 +181,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -193,24 +190,24 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -218,23 +215,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -242,28 +239,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Lås en bot til dens nuværende server."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Botten er ikke længere låst til serveren."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Botten er nu låst til serveren."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: German\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: de_DE\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Ich habe versucht, etwas zu tun, wofür mir Discord die Erlaubnis verweigert hat. Dein Befehl wurde nicht erfolgreich ausgeführt."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "Ich kann die Rolle „{role.name}“ nicht an {member.display_name} vergeben, weil diese Rolle höher oder gleich meiner höchsten Rolle in der Discord Rollen-Hierarchie ist."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "Ich kann {member.display_name} nicht die Rolle „{role.name}“ entziehen, weil diese Rolle höher oder gleich meiner höchsten Rolle in der Discord Rollen-Hierarchie ist."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "Ich kann die Rolle „{role.name}“ nicht bearbeiten, weil diese Rolle höher oder gleich meiner höchsten Rolle in der Discord Rollen-Hierarchie ist."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 "Du darfst, die Rolle „{role.name}“ nicht an {member.display_name} vergeben, weil diese Rolle höher oder gleich deiner höchsten Rolle in der Discord Rollen-Hierarchie ist."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 "Du darfst {member.display_name} nicht die Rolle „{role.name}“ entziehen, weil diese Rolle höher oder gleich deiner höchsten Rolle in der Discord Rollen-Hierarchie ist."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 "Du darfst nicht die Rolle „{role.name}“ bearbeiten, weil diese Rolle höher oder gleich deiner höchsten Rolle in der Discord Rollen-Hierarchie ist."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr "Ich brauche dafür die Bereichtigung „Rollen verwalten“."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Ich kündige bereits etwas an. Wenn du eine andere Ankündigung machen willst, benutze bitte zuerst `{prefix}announce cancel`."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Eine Sammlung von administrativen Server-Verwaltungsprogrammen."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name} hat die Rolle „{role.name}“ bereits."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "Ich habe {member.display_name} erfolgreich die Rolle „{role.name}“ gegeben."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name} hat nicht die Rolle „{role.name}“."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "Ich habe die Rolle „{role.name}“ erfolgreich von {member.display_name} entfernt."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -80,12 +80,12 @@ msgid "\n"
|
||||
" If user is left blank it defaults to the author of the command.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Füge einem Mitglied eine Rolle hinzu.\n\n"
|
||||
" Benutze (amerikanische) Anführungszeichen, wenn im Namen Leerzeichen enthalten sind.\n"
|
||||
" Fügen Sie einem Benutzer eine Rolle hinzu.\n"
|
||||
" Verwenden Sie doppelte Anführungszeichen, wenn die Benutzerrolle Leerzeichen enthält.\n"
|
||||
" Wenn keine Person definiert wurde, wird die Rolle dem Autor des Befehls gegeben.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -98,12 +98,12 @@ msgstr "\n"
|
||||
" Wenn keine Person definiert wurde, wird die Rolle von dem Autor des Befehls entfernt.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Rolleneinstellungen bearbeiten."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -116,19 +116,19 @@ msgid "\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Bearbeite die Farbe einer Rolle.\n\n"
|
||||
" Verwende (amerikanische) Anführungszeichen, wenn die Rolle Leerzeichen enthält.\n"
|
||||
" Die Farbe muss im Hexadezimalformat angegeben werden.\n"
|
||||
" Verwende doppelte Anführungszeichen, wenn die Rolle Leerzeichen enthält.\n"
|
||||
" Die Farbe muss im hexadezimal angegeben werden.\n"
|
||||
" [Online Farbwähler](http://www.w3schools.com/colors/colors_picker.asp)\n\n"
|
||||
" Beispiele:\n"
|
||||
" `[p]editrole colour \"The Transistor\" #ff0000`\n"
|
||||
" `[p]editrole colour Test #ff9900`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Erledigt."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -138,59 +138,53 @@ msgid "\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Bearbeite den Namen einer Rolle.\n\n"
|
||||
" Verwende (amerikanische) Anführungszeichen, wenn die Rolle Leerzeichen enthält.\n\n"
|
||||
" Verwende doppelte Anführungszeichen, wenn die Rolle Leerzeichen enthält.\n\n"
|
||||
" Beispiel:\n"
|
||||
" `[p]editrole name \"The Transistor\" Test`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Mache eine Ankündigung auf allen Servern auf denen der Bot ist."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "Die Ankündigung hat begonnen."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Breche eine laufende Ankündigung ab."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "Es gibt keine derzeit laufende Ankündigung."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "Die aktuelle Ankündigung wurde abgebrochen."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "Ändere, wie Ankündigungen in diesem Server gesendet werden."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Change the channel where the bot will send announcements.\n\n"
|
||||
" If channel is left blank it defaults to the current channel.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Ändert den Kanal, in den der Bot Ankündigungen senden wird.\n\n"
|
||||
" Wenn der Kanal freigelassen wird, wird es auf den aktuellen angewendet.\n"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr "Ändern Sie den Kanal, über den der Bot Ankündigungen sendet."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "{channel.mention} wurde nun als Ankündigungskanal festgelegt."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr "Setzt den Kanal für Ankündigungen zurück."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -203,7 +197,7 @@ msgstr "\n"
|
||||
" HINWEIS: Beachte Groß- und Kleinschreibung!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -216,7 +210,7 @@ msgstr "\n"
|
||||
" HINWEIS: Beachte Groß- und Kleinschreibung!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -229,7 +223,7 @@ msgstr "\n"
|
||||
" HINWEIS: Beachte Groß- und Kleinschreibung!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
@@ -238,71 +232,105 @@ msgstr "\n"
|
||||
"Gibt eine Liste verfügbarer selbst auswählbarer Rollen aus.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "Verfügbare selbst auswählbare Rollen:\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr "Selbst hinzufügbare Rollen verwalten."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\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 ""
|
||||
msgstr "\n"
|
||||
"Füge eine oder mehrere Rollen zur Liste der selbst hinzufügbaren Rollen hinzu.\n\n"
|
||||
" ACHTUNG: Beachte korrekte Groß- und Kleinschreibung!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Du kannst dir nicht die Rolle „{role.name}“ zuweisen, weil diese Rolle höher oder gleich deiner höchsten Rolle in der Discord Rollen-Hierarchie ist."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
msgstr "Die Rolle \"{role.name}\" ist bereits eine selbst hinzufügbare Rolle."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
msgstr "{count} selbst hinzufügbare Rollen hinzugefügt."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
msgstr "1 selbst hinzufügbare Rolle hinzugefügt."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\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 "\n"
|
||||
"Entferne eine oder mehrere Rollen von der Liste der selbst hinzufügbaren Rollen.\n\n"
|
||||
" ACHTUNG: Beachte die Groß- und Kleinschreibung! "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Du darfst nicht die Rolle „{role.name}“ von der Liste der selbst hinzufügbaren Rollen entfernen, weil diese Rolle höher oder gleich deiner höchsten Rolle in der Discord Rollen-Hierarchie ist."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
msgstr "{count} selbst hinzufügbare Rollen entfernt."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
msgstr "1 selbst hinzufügbare Rolle entfernt."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr "Lösche die Liste der selbst hinzufügbaren Rollen auf diesem Server."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr "Es sind keine selbst hinzufügbaren Rollen verfügbar."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr "Bist du dir sicher, dass du die Liste der selbst hinzufügbaren Rollen dieses Servers löschen möchtest?"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr "Antwortzeit abgelaufen."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Ich kann die Liste der selbst hinzufügbaren Rollen nicht löschen, da {role.name} auf der gleichen Stufe oder höher als deine höchste Rolle in der Discord Hierarchie ist."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr "Liste der selbst hinzufügbaren Rollen gelöscht."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr "Keine Änderungen vorgenommen"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Der Bot kann keinem neuen Server beitreten."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Der Bot kann nun anderen Servern beitreten."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Der Bot ist jetzt gesperrt neuen Servern beizutreten."
|
||||
|
||||
@@ -320,5 +348,5 @@ msgstr "Das Admin-Cog ist nicht geladen."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
msgstr "Die Rolle \"{role_name}\" ist keine gültige selbst definierte Rolle."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Greek\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: el_GR\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -81,7 +81,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -90,12 +90,12 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -108,11 +108,11 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -122,51 +122,48 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -175,7 +172,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -184,7 +181,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -193,24 +190,24 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -218,23 +215,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -242,28 +239,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: es_ES\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Intenté hacer algo que Discord me ha negado el permiso. Su comando no se pudo completar."
|
||||
msgstr "He intentado hacer algo, pero Discord me ha negado el permiso. Su comando no ha podido completarse correctamente. "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "No puedo eliminar el rol {role.name} de {member.display_name} porque ese rol es mayor o igual que mi rol más alto en la jerarquía de Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "No puedo editar el rol {role.name} porque ese rol es mayor que el mío o igual al rol más alto en la jerarquía de Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 "No puedo dejar que le des el rol {role.name} a {member.display_name} porque ese rol es mayor o igual a tu rol más alto en la jerarquía de Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 "No puedo dejar que elimines el rol {role.name} de {member.display_name} porque ese rol es mayor o igual a tu rol más alto en la jerarquía de Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 "No puedo permitir que edites el rol{role.name} porque ese rol es mayor o igual a tu rol más alto en la jerarquía de Discord."
|
||||
msgstr "No puedo permitir que edites el rol {role.name} porque ese rol es mayor o igual a tu rol más alto en la jerarquía de Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr "Necesito el permiso de \"Gestionar Roles\" para hacer eso."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Ya estoy anunciando algo. Si quieres hacer un anuncio diferente, por favor usa `{prefix}announce cancel` primero."
|
||||
msgstr "Ya estoy anunciando algo en este instante. Si quieres hacer un anuncio diferente, por favor usa `{prefix}announce cancel` primero."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Una colección de utilidades de administración de servidores."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name} ya tiene el rol {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "He añadido con éxito {role.name} a {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name} no tiene el rol {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "He retirado con éxito {role.name} de {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -81,11 +81,11 @@ msgid "\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Añadir un rol a un usuario.\n\n"
|
||||
" Usar comillas dobles si el rol contiene espacios.\n"
|
||||
" Use comillas dobles si el rol contiene espacios.\n"
|
||||
" Si el usuario se deja en blanco el valor por defecto es el autor del comando.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -98,12 +98,12 @@ msgstr "\n"
|
||||
" Si el usuario se deja en blanco el valor por defecto es el autor del comando.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Editar configuración de rol."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -124,11 +124,11 @@ msgstr "\n"
|
||||
" `[p]editrole colour Test #ff9900`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Listo."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -140,57 +140,51 @@ msgstr "\n"
|
||||
" Edita el nombre de un rol.\n\n"
|
||||
" Utilice comillas dobles si el rol o el nombre contiene espacios.\n\n"
|
||||
" Ejemplo:\n"
|
||||
" `[p]nombre editrole \"The Transistor\" Test`\n"
|
||||
" `[p]editrole name \"The Transistor\" Test`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Anunciar un mensaje a todos los servidores en que el bot está."
|
||||
msgstr "Anuncie un mensaje a todos los servidores en los que el bot esté presente."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "El anuncio ha comenzado."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Cancela un anuncio en ejecución."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "No hay ningún anuncio en ejecución."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "El anuncio actual ha sido cancelado."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "Cambia cómo son enviados los anuncios en este servidor."
|
||||
msgstr "Cambia cómo son enviados los anuncios en este gremio."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Change the channel where the bot will send announcements.\n\n"
|
||||
" If channel is left blank it defaults to the current channel.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Cambia el canal donde el bot enviará anuncios.\n\n"
|
||||
" Si el canal se deja en blanco el canal por defecto es el canal actual.\n"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr "Cambia el canal donde el bot enviará anuncios."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "El canal de anuncios se ha establecido en {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr "Quita el canal para los anuncios."
|
||||
msgstr "Deshabilita el canal para los anuncios."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -198,12 +192,12 @@ msgid "\n"
|
||||
" NOTE: The role is case sensitive!\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
" Server admins must have configured the role as user settable.\n"
|
||||
" NOTE: The role is case sensitive!\n"
|
||||
" Añade o quita un auto rol de ti mismo.\n\n"
|
||||
" Los administradores del servidor deben haber configurado el rol como configuración del usuario.\n"
|
||||
" NOTA: El rol es sensible a mayúsculas/minúsculas!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -216,7 +210,7 @@ msgstr "\n"
|
||||
" NOTA: El rol es sensible a mayúsculas!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -229,80 +223,113 @@ msgstr "\n"
|
||||
" NOTA: El rol es sensible a mayúsculas!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Lista de todos los selfroles disponibles.\n"
|
||||
" Lista todos los autoroles disponibles.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "Selfroles disponibles:\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr "Gestionar selfroles."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\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 ""
|
||||
msgstr "\n"
|
||||
"Añade un rol, o una selección de roles, a la lista de auto-roles disponibles.\n\n"
|
||||
"NOTA: ¡El rol es sensible a mayúsculas! "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "No puedo permitir que añadas {role.name} como selfrole porque ese rol es mayor o igual a tu rol más alto en la jerarquía de Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
msgstr "El rol \"{role.name}\" ya es un auto-rol."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
msgstr "Añadidos {count} auto-roles."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
msgstr "Se añadió 1 auto-rol."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\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 "\n"
|
||||
"Elimina un rol, o una selección de roles, de la lista de auto-roles disponibles.\n\n"
|
||||
"NOTA: ¡El rol es sensible a mayúsculas! "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "No puedo permitir que elimines a {role.name} de ser un selfrole porque ese rol es mayor o igual a tu rol más alto en la jerarquía de Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
msgstr "Se han eliminado {count} auto-roles."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
msgstr "Se ha eliminado 1 auto-rol."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr "Borra la lista de auto-roles disponibles para este servidor."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr "Actualmente no hay auto-roles."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr "¿Estás seguro de querer borrar la lista de auto-roles de este servidor?"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr "Has tardado demasiado en responder."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "No puedo borrar los auto-roles porque el auto-rol '{role.name}' es mayor o igual a tu rol más alto en la jerarquía de Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr "Lista de auto-roles eliminada."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr "No se han realizado cambios."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Bloquea el bot sólo a sus servidores actuales."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "El bot ya no está bloqueado por el servidor."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "El bot está bloqueado por el servidor."
|
||||
|
||||
@@ -320,5 +347,5 @@ msgstr "El cog Admin no está cargado."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
msgstr "El rol \"{role_name}\" no es un auto-rol válido."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Finnish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: fi_FI\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Yritin tehdä jotain, jonka Discord kielsi minulle luvat. Komento epäonnistui onnistuneesti."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "En voi antaa roolia {role.name} käyttäjälle {member.display_name}, koska rooli on korkeammalla kuin minun ylin roolini Discordin hierarkiassa."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "En voi poistaa roolia {role.name} käyttäjältä {member.display_name}, koska rooli on korkeammalla kuin minun ylin roolini Discordin hierarkiassa."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "En voi muokata roolia {role.name}, koska se on korkeammalla kuin minun ylin roolini Discordin hierarkiassa."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 "En voi antaa roolia {role.name} käyttäjälle {member.display_name}, koska rooli on korkeammalla kuin minun ylin roolini Discordin hierarkiassa."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 "En voi poistaa roolia {role.name} käyttäjältä {member.display_name}, koska rooli on korkeammalla kuin minun ylin roolini Discordin hierarkiassa."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 "En voi antaa sinun muokata roolia {role.name}, koska rooli on korkeammalla kuin sinun korkein rooli Discordin hierarkiassa."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr "Tarvitsen \"Muokkaa Rooleja\" oikeudet tehdäkseni tuon."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Olen jo ilmoittanut jotain. Jos haluat tehdä toisen ilmoituksen, käytä ensin \"{prefix} announce cancel\"."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Kokoelma palvelinhallintaohjelmia."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "Käyttäjällä {member.display_name} on jo rooli {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "Lisäsin {role.name} onnistuneesti {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "Käyttäjällä {member.display_name} ei ole roolia {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "Olen poistanut {role.name} onnistuneesti {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -85,7 +85,7 @@ msgstr "\n"
|
||||
" Jos käyttäjä jätetään tyhjäksi, se on oletuksena tekijä komennon.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -98,12 +98,12 @@ msgstr "\n"
|
||||
" Jos käyttäjä jätetään tyhjäksi, se on oletuksena tekijä komennon.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Muokkaa rooliasetuksia."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -124,11 +124,11 @@ msgstr "\n"
|
||||
" `[p]editrole colour Test #ff9900`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Tehty."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -143,54 +143,48 @@ msgstr "\n"
|
||||
" `[p]editrole name \"The Transistor\" Test`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Ilmoita viesti kaikille palvelimille, joihin botti on."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "Ilmoittaminen on aloitettu."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Peruuta käynnissä oleva ilmoitus."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "Tällä hetkellä ei ole käynnissä olevaa ilmoitusta."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "Tämänhetkinen ilmoitus on peruutettu."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "Muokkaa kuinka ilmoitukset lähetetään tässä guildissa."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Change the channel where the bot will send announcements.\n\n"
|
||||
" If channel is left blank it defaults to the current channel.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Muuta kanavaa, jossa botti lähettää ilmoituksia.\n\n"
|
||||
" Jos kanava jätetään tyhjäksi, se oletetaan nykyiselle kanavalle.\n"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "Ilmoituskanava on asetettu {channel.mention} -kanavalle"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr "Poista ilmoituskanava käytöstä."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -201,7 +195,7 @@ msgstr "Lisää tai poista rooli itseltäsi.\n\n"
|
||||
"Palvelimen ylläpitäjän pitää olla asettanut se rooli käyttäjä-asetettavaksi.\n"
|
||||
"MUISTA: Roolin nimessä merkitsee isot ja pienet kirjaimet."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -214,7 +208,7 @@ msgstr "\n"
|
||||
" HUOM: Rooli on kirjainkoolla herkkä!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -227,7 +221,7 @@ msgstr "\n"
|
||||
" HUOM: Rooli on kirjainkoolla herkkä!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
@@ -236,18 +230,18 @@ msgstr "\n"
|
||||
" Luettele kaikki saatavilla olevat selfrot.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "Saatavilla olevat omafroles:\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr "Hallitse selfroleja."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -255,23 +249,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "En voi antaa roolia {role.name} käyttäjälle, koska rooli on korkeammalla kuin minun ylin roolini Discordin hierarkiassa."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -279,28 +273,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "En voi antaa roolia {role.name} käyttäjälle, koska rooli on korkeammalla kuin minun ylin roolini Discordin hierarkiassa."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Lukitse botti vain nykyisille palvelimille."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Botti ei ole enää palvelinlukittu."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Botti on nyt palvelinlukittu."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: fr_FR\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "J'ai tenté de faire quelque chose que pour lequel Discord m'a refusé les permissions. La commande a échoué."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "Je ne peux pas donner {role.name} à {member.display_name} car ce rôle est supérieur ou égal à mon rôle le plus élevé dans la hiérarchie Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "Je ne peux pas supprimer {role.name} de {member.display_name} car ce rôle est supérieur ou égal à mon rôle le plus élevé dans la hiérarchie Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "Je ne peux pas modifier {role.name} parce que ce rôle est supérieur ou égal à mon rôle le plus élevé dans la hiérarchie Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 "Je ne peux pas vous laisser donner {role.name} à {member.display_name} 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:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 "Je ne peux pas vous permettre de supprimer {role.name} de {member.display_name} car ce rôle est supérieur ou égal à votre rôle le plus élevé dans la hiérarchie Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 "Je ne peux pas vous permettre de modifier {role.name} car ce rôle est supérieur ou égal à votre rôle le plus élevé dans la hiérarchie Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr "J’ai besoin de la permission \"Gérer les rôles\" pour faire cela."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Je suis déjà en train d'annoncer quelque chose. Si vous souhaitez faire une annonce différente, vous devez d'abord utiliser la commande `{prefix}announce cancel`."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Un ensemble d'utilitaires d'administration du serveur."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name} a déjà le rôle {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "J'ai bien ajouté le rôle {role.name} à {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name} n'a pas le rôle {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "J'ai bien retiré le rôle {role.name} de {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -85,7 +85,7 @@ msgstr "\n"
|
||||
" Si l'utilisateur est laissé vide, ce sera par défaut l'auteur de la commande.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -98,12 +98,12 @@ msgstr "\n"
|
||||
" Si l'utilisateur est laissé vide, ce sera par défaut l'auteur de la commande.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Modifier les paramètres d'un rôle."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -124,11 +124,11 @@ msgstr "\n"
|
||||
" `[p]editrole colour Test #ff9900`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Fait."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -143,54 +143,48 @@ msgstr "\n"
|
||||
" `[p]editrole name \"The Transistor\" Test`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Faire une annonce à tous les serveurs dans lesquels le bot se trouve."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "L’annonce a commencé."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Interrompre une annonce en cours."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "Il n'y a aucune annonce en cours d'exécution."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "L'annonce actuelle a été interrompue."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "Change la façon dont les annonces sont envoyées dans ce serveur."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Change the channel where the bot will send announcements.\n\n"
|
||||
" If channel is left blank it defaults to the current channel.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Change le salon où le bot enverra les annonces.\n\n"
|
||||
" Si le champ salon est laissé vide, il utilisera par défaut le salon actuel.\n"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "Les annonces seront maintenant faites dans {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr "Désactive le salon pour les annonces."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -203,7 +197,7 @@ msgstr "\n"
|
||||
" NOTE : Le rôle est sensible aux majuscules et minuscules !\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -216,7 +210,7 @@ msgstr "\n"
|
||||
" NOTE : Le rôle est sensible aux majuscules et minuscules !\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -229,7 +223,7 @@ msgstr "\n"
|
||||
" NOTE : Le rôle est sensible aux majuscules et minuscules !\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
@@ -238,71 +232,106 @@ msgstr "\n"
|
||||
" Liste de tous les auto-rôles disponibles.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "Auto-rôles disponibles :\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr "Gérer les auto-roles."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\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 ""
|
||||
msgstr "\n"
|
||||
"Ajouter un rôle, ou une sélection de rôles, à la liste des rôles personnels disponibles.\n\n"
|
||||
" NOTE : Le nom du rôle est sensible aux majuscules et minuscules !\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Je ne peux pas vous laisser ajouter {role.name} comme auto-rôle car ce rôle est supérieur ou égal à votre rôle le plus haut dans la hiérarchie Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
msgstr "Le rôle \"{role.name}\" est déjà un rôle auto-attribué."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
msgstr "{count} auto-rôles ajouté(s)."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
msgstr "Ajout de 1 auto-rôle."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\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 "\n"
|
||||
"Ajouter un rôle, ou une sélection de rôles, à la liste des rôles personnels disponibles.\n\n"
|
||||
" NOTE : Le nom du rôle est sensible aux majuscules et minuscules !\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Je ne peux pas vous laisser ajouter {role.name} comme auto-rôle car ce rôle est supérieur ou égal à votre rôle le plus haut dans la hiérarchie Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
msgstr "Suppression de {count} auto-rôles."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
msgstr "Suppression d'un auto-rôle."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr "Nettoyage de la liste des auto-rôles disponibles pour ce serveur."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr "Actuellement, il n'y a pas d'auto-rôles."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr "Êtes-vous certain de vouloir nettoyer la liste des auto-rôles de ce serveur ?"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr "Vous avez pris trop de temps à répondre."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Je ne peux pas supprimer les rôles personnels car le rôle personnel '{role.name}' est supérieur ou égal à votre rôle le plus élevé dans la hiérarchie Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr "La liste des rôles personnes a été nettoyée."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr "Aucune modification n'a été faite."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Verrouiller un bot sur ses serveurs actuels uniquement."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Le bot n'est plus verrouillé sur ses serveurs actuels."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Le bot est maintenant verrouillé sur ses serveurs actuels."
|
||||
|
||||
@@ -320,5 +349,5 @@ msgstr "Le cog Admin n'est pas chargé."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
msgstr "Le rôle \"{role_name}\" n'est pas un auto-rôle valide."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hebrew\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: he_IL\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -81,7 +81,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -90,12 +90,12 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -108,11 +108,11 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -122,51 +122,48 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -175,7 +172,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -184,7 +181,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -193,24 +190,24 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -218,23 +215,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -242,28 +239,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hindi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: hi_IN\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "मैंने कुछ ऐसा करने का प्रयास किया, जिसके लिए डिस्कॉर्ड ने मुझे अनुमति से इनकार कर दिया। आपका आदेश सफलतापूर्वक पूरा होने में विफल रहा।"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "मैं {member.display_name} को {role.name} नहीं दे सकती क्योंकि वह रोल डिस्कॉर्ड् पदानुक्रम में मेरे उच्चतम रोल से अधिक या उसके बराबर है।"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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} से नहीं निकाल सकती, क्योंकि वह रोल डिस्कॉर्ड पदानुक्रम में मेरे उच्चतम रोल से अधिक या उसके बराबर है।"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
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} को संपादित नहीं कर सकती, क्योंकि यह रोल डिस्कॉर्ड पदानुक्रम में मेरे रोल से अधिक है,या सबसे उच्चतम रोल के बराबर है।"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
msgstr "मुझे ऐसा करने के लिए \"Manage Roles\" अनुमति की आवश्यकता है।"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr ""
|
||||
msgstr "मैं पहले से ही कुछ घोषणा कर रहा हूं। यदि आप कोई भिन्न घोषणा करना चाहते हैं, तो कृपया पहले `{prefix}announce cancel` का उपयोग करें।"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr ""
|
||||
msgstr "सर्वर प्रशासन उपयोगिता का एक संग्रह।"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -81,7 +81,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -90,12 +90,12 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -108,11 +108,11 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -122,51 +122,48 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -175,7 +172,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -184,7 +181,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -193,24 +190,24 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -218,23 +215,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -242,28 +239,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
|
||||
353
redbot/cogs/admin/locales/hr-HR.po
Normal file
353
redbot/cogs/admin/locales/hr-HR.po
Normal file
@@ -0,0 +1,353 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Croatian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
"X-Crowdin-Language: hr\n"
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: hr_HR\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Pokušao sam učiniti nešto za što mi je Discord uskratio dozvole. Vaša naredba nije uspješno dovršena."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "Ne mogu dati {role.name} korisniku {member.display_name} jer je ta uloga viša ili jednaka mojoj najvišoj ulozi u Discord hijerarhiji."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "Ne mogu ukloniti {role.name} od {member.display_name} jer je ta uloga viša ili jednaka mojoj najvišoj ulozi u Discord hijerarhiji."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "Ne mogu uređivati {role.name} jer je ta uloga viša od moje ili jednaka najvišoj ulozi u Discord hijerarhiji."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 "Ne mogu vam dopustiti da dodate {role.name} korisniku {member.display_name} jer je ta uloga viša ili jednaka vašoj najvišoj ulozi u Discord hijerarhiji."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 "Ne mogu vam dopustiti da uklonite {role.name} od {member.display_name} jer je ta uloga viša ili jednaka vašoj najvišoj ulozi u Discord hijerarhiji."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 "Ne mogu vam dopustiti da uređujete {role.name} jer je ta uloga viša ili jednaka vašoj najvišoj ulozi u Discord hijerarhiji."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr "Za to trebam \"Upravljanje ulogama\" dozvolu."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Već nešto najavljujem. Ako želite napraviti drugačiju najavu, prvo upotrijebite `{prefix}announce cancel`."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Zbirka usluga za administraciju servera."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name} već ima {role.name} ulogu."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "Uspješno sam dodao {role.name} {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name} nema {role.name} ulogu."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "Uspješno sam uklonio {role.name} s {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
" Use double quotes if the role contains spaces.\n"
|
||||
" If user is left blank it defaults to the author of the command.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Dodajte ulogu korisniku.\n\n"
|
||||
" Koristite navodnike ako uloga sadrži razmake.\n"
|
||||
" Ako je ime korisnika ostavljeno prazno, zadati će se autor naredbe.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
" Use double quotes if the role contains spaces.\n"
|
||||
" If user is left blank it defaults to the author of the command.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Uklonite ulogu s korisnika.\n\n"
|
||||
" Koristite navodnike ako uloga sadrži razmake.\n"
|
||||
" Ako je ime korisnika ostavljeno prazno, zadati će se autor naredbe.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Uredite postavke uloge."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
" Use double quotes if the role contains spaces.\n"
|
||||
" Colour must be in hexadecimal format.\n"
|
||||
" [Online colour picker](http://www.w3schools.com/colors/colors_picker.asp)\n\n"
|
||||
" Examples:\n"
|
||||
" `[p]editrole colour \"The Transistor\" #ff0000`\n"
|
||||
" `[p]editrole colour Test #ff9900`\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Uredite boju uloge.\n\n"
|
||||
" Koristite navodnike ako uloga sadrži razmake.\n"
|
||||
" Boja mora biti u heksadecimalnom formatu.\n"
|
||||
" [Online odabir boja](http://www.w3schools.com/colors/colors_picker.asp)\n\n"
|
||||
" Primjeri:\n"
|
||||
" `[p]editrole colour \"The Transistor\" #ff0000`\n"
|
||||
" `[p]editrole colour Test #ff9900`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Gotovo."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
" Use double quotes if the role or the name contain spaces.\n\n"
|
||||
" Example:\n"
|
||||
" `[p]editrole name \"The Transistor\" Test`\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Uredite naziv uloge.\n\n"
|
||||
" Koristite navodnike ako uloga ili naziv uloge sadrže razmake.\n\n"
|
||||
" Primjer:\n"
|
||||
" `[p]editrole name \"The Transistor\" Test`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Najavite poruku svim serverima u kojima se bot nalazi."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "Najava je počela."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Otkažite aktivnu najavu."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "Trenutno nema aktivne najave."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "Trenutna najava je otkazana."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "Promijenite način slanja najava u ovom serveru."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "{channel.mention} je postavljen kao kanal za najave"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr "Poništava kanal za najave."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
" Server admins must have configured the role as user settable.\n"
|
||||
" NOTE: The role is case sensitive!\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Dodajte ili uklonite samo-ulogu sa sebe.\n\n"
|
||||
" Administratori servera moraju konfigurirati ulogu kao korisnički podesivu.\n"
|
||||
" NAPOMENA: Uloga je osjetljiva na velika i mala slova!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
" Server admins must have configured the role as user settable.\n"
|
||||
" NOTE: The role is case sensitive!\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Dodajte si samo-ulogu.\n\n"
|
||||
" Administratori servera moraju konfigurirati ulogu kao korisnički podesivu.\n"
|
||||
" NAPOMENA: Uloga je osjetljiva na velika i mala slova!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
" Server admins must have configured the role as user settable.\n"
|
||||
" NOTE: The role is case sensitive!\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Uklonite samo-ulogu sa sebe.\n\n"
|
||||
" Administratori servera moraju konfigurirati ulogu kao korisnički podesivu.\n"
|
||||
" NAPOMENA: Uloga je osjetljiva na velika i mala slova!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Navodi sve dostupne samo-uloge.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "Dostupne samo-uloge:\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr "Upravljajte samo-ulogama."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\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"
|
||||
" Dodajte ulogu ili izbor uloga u popis dostupnih samo-uloga.\n\n"
|
||||
" NAPOMENA: Uloga je osjetljiva na velika i mala slova!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
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 mogu vam dopustiti da dodate {role.name} kao samo-ulogu jer je ta uloga viša ili jednaka vašoj najvišoj ulozi u Discord hijerarhiji."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr "Uloga \"{role.name}\" je već samo-uloga."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr "Dodano {count} samo-uloga."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr "Dodana jedna samo-uloga."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\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"
|
||||
" Uklonite ulogu ili izbor uloga s popisa dostupnih samo-uloga.\n\n"
|
||||
" NAPOMENA: Uloga je osjetljiva na velika i mala slova!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
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 mogu vam dopustiti da uklonite {role.name} kao samo-ulogu jer je ta uloga viša ili jednaka vašoj najvišoj ulozi u Discord hijerarhiji."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr "Uklonjeno {count} samo-uloga."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr "Uklonjena jedna samo-uloga."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr "Izbrišite popis dostupnih samo-uloga za ovaj server."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr "Trenutno nema samo-uloga."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr "Jeste li sigurni da želite izbrisati serverov popis samo-uloga?"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr "Trebalo vam je predugo da odgovorite."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Ne mogu izbrisati samo-uloge jer je samo-uloga '{role.name}' viša ili jednaka vašoj najvišoj ulozi u Discord hijerarhiji."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr "Popis samo-uloga je izbrisan."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr "Nisu napravljene ikakve promjene."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Zaključaj bota samo na njegove trenutne servere."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Bot više nije zaključan na servere u kojima se nalazi."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Bot je sada zaključan na servere u kojima se nalazi."
|
||||
|
||||
#: redbot/cogs/admin/announcer.py:68
|
||||
msgid "I could not announce to the following server: "
|
||||
msgstr "Nisam mogao objaviti sljedećem serveru: "
|
||||
|
||||
#: redbot/cogs/admin/announcer.py:70
|
||||
msgid "I could not announce to the following servers: "
|
||||
msgstr "Nisam mogao objaviti sljedećim serverima: "
|
||||
|
||||
#: redbot/cogs/admin/converters.py:12
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr "Admin Cog nije učitan."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr "Uloga \"{role_name}\" nije važeća samo-uloga."
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: hu_HU\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Olyan műveletet próbáltam elvégezni, amihez a Discord elutasította a jogosultságom. A parancsod végrehajtása sikertelen volt."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "Nem adhatom meg a {role.name} rangot {member.display_name}-nak/nek, mert az a rang magasabb vagy egyenlő az én legmagasabb rangommal a Discord rangsorrendben."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "Nem vonhatom meg a {role.name} rangot {member.display_name}-tól/től, mert az a rang magasabb vagy egyenlő az én legmagasabb rangommal a Discord rangsorrendben."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "Nem szerkeszthetem a {role.name} rangot, mert az a rang magasabb vagy egyenlő az én legmagasabb rangommal a Discord rangsorrendben."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -81,7 +81,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -90,12 +90,12 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -108,11 +108,11 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Kész."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -122,51 +122,48 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -175,7 +172,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -184,7 +181,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -193,24 +190,24 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -218,23 +215,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -242,28 +239,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Indonesian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: id_ID\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Saya mencoba melakukan sesuatu yang tidak diizinkan oleh Discord untuk saya. Perintah Anda gagal untuk dijalankan."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "Saya tidak dapat memberikan {role.name} kepada {member.display_name} karena Role itu lebih tinggi atau sama dengan Role tertinggi saya dalam tingkatan Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "Saya tidak dapat memberikan {role.name} kepada {member.display_name} karena Role itu lebih tinggi atau sama dengan Role tertinggi saya dalam tingkatan Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "Saya tidak dapat mengedit {role.name} karena role itu lebih tinggi dari saya atau sama dengan role tertinggi dalam tingkatan Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 "Saya tidak dapat memberikan {role.name} kepada {member.display_name} karena Role itu lebih tinggi atau sama dengan Role tertinggi saya dalam tingkatan Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 "Saya tidak dapat memberikan {role.name} kepada {member.display_name} karena Role itu lebih tinggi atau sama dengan Role tertinggi saya dalam tingkatan Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 "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:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Saya sudah mengumumkan sesuatu. Jika Anda ingin membuat pengumuman lain, gunakan `{prefix} umumkan pembatalan` terlebih dahulu."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Kumpulan utilitas administrasi server."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name} sudah memiliki role {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "Saya berhasil menambahkan {role.name} ke {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name} tidak memiliki role {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "Saya berhasil menambahkan {role.name} ke {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -86,7 +86,7 @@ msgstr "\n"
|
||||
" Jika pengguna dibiarkan kosong, defaultnya adalah pembuat perintah. \n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -95,12 +95,12 @@ msgid "\n"
|
||||
" "
|
||||
msgstr "\\ n Tambahkanrole ke user. \\ n \\ n Gunakan tanda kutip ganda jika role berisi spasi. \\ n Jika pengguna dibiarkan kosong, defaultnya adalah pembuat perintah. \\ n "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Edit pengaturan role."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -121,11 +121,11 @@ msgstr "\n"
|
||||
" `[p]editrole colour Test #ff9900`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Selesai."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -140,54 +140,48 @@ msgstr "\n"
|
||||
" `[p]editrole name \"The Transistor\" Test`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Umumkan pesan ke semua server tempat bot berada."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "Pengumuman telah dimulai."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Batalkan pengumuman berjalan."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "Tidak ada pengumuman yang sedang berjalan."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "Pengumuman saat ini telah dibatalkan."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "Ubah cara pengumuman dikirim di guild ini."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Change the channel where the bot will send announcements.\n\n"
|
||||
" If channel is left blank it defaults to the current channel.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Ubah Channel tempat bot akan mengirim pengumuman.\n\n"
|
||||
" Jika channel dibiarkan kosong maka default nya adalah channel saat ini.\n"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "Channel pengumuman telah di setel ke {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr "Tidak menyetel saluran untuk pengumuman."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -196,7 +190,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -209,7 +203,7 @@ msgstr "\n"
|
||||
" NOTE: Role peka huruf besar / kecil!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -222,7 +216,7 @@ msgstr "\n"
|
||||
" NOTE: Role peka huruf besar / kecil!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
@@ -231,18 +225,18 @@ msgstr "\n"
|
||||
" Daftar semua role diri yang tersedia.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "Role diri yang tersedia:\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr "Kelola Roles diri sendiri."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -250,23 +244,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Saya tidak dapat memberikan {role.name} kepada karena Role itu lebih tinggi atau sama dengan Role tertinggi saya dalam tingkatan Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -274,28 +268,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Saya tidak dapat menghapus {role.name} dari role diri sendiri karena role itu lebih tinggi dari atau sama dengan role tertinggi Anda dalam tingkatan Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Kunci bot ke servernya saat ini saja."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Bot tidak lagi terkunci server."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Bot sekarang terkunci server."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Italian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: it_IT\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Ho provato a fare qualcosa ma Discord mi ha negato i permessi per farla. Il tuo comando non è stato completato con successo."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "Non posso dare {role.name} a {member.display_name} poiché quel ruolo è superiore o uguale al mio ruolo più alto nella gerarchia di Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "Non posso rimuovere {role.name} da {member.display_name} poiché quel ruolo è superiore o uguale al mio ruolo più alto nella gerarchia di Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "Non posso modificare {role.name} poiché quel ruolo è superiore o uguale al mio ruolo nella gerarchia di Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 "Non posso permetterti di dare {role.name} a {member.display_name} perché quel ruolo è superiore o uguale al tuo ruolo più alto nella gerarchia di Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 "Non posso permetterti di rimuovere {role.name} da {member.display_name} poiché quel ruolo è superiore o uguale al tuo ruolo più alto nella gerarchia di Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 "Non posso permetterti di modificare {role.name} perché quel ruolo è superiore o uguale al tuo ruolo più alto nella gerarchia di Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr "Mi serve l'autorizzazione \"Gestisci Ruoli\" per farlo."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Sto già annunciando qualcosa. Se vorresti fare un annuncio diverso, usa prima `{prefix}announce cancel`."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Una collezione di servizi di amministrazione del server."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name} ha già il ruolo {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "Ho aggiunto con successo {role.name} a {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name} non ha il ruolo {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "Ho rimosso con successo {role.name} da {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -84,7 +84,7 @@ msgstr "\n"
|
||||
"Usa le virgolette se il ruolo contiene spazi.\n"
|
||||
"Se l'utente è lasciato vuoto, prenderà per predefinito chi ha utilizzato il comando. "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -96,12 +96,12 @@ msgstr "\n"
|
||||
"Usa le virgolette se il ruolo contiene spazi.\n"
|
||||
"Se l'utente è lasciato vuoto, prenderà per predefinito chi ha utilizzato il comando. "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Modifica impostazioni ruolo."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -121,11 +121,11 @@ msgstr "\n"
|
||||
" `[p]editrole colour \"The Transistor\" #ff0000`\n"
|
||||
" `[p]editrole colour Test #ff9900` "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Fatto."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -139,53 +139,48 @@ msgstr "\n"
|
||||
"Esempio:\n"
|
||||
" `[p]editrole name \"The Transistor\" Test` "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Annuncia un messaggio a tutti i server in cui si trova il bot."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "L'annuncio è partito."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Cancella un annuncio in corso."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "Non c'è alcun annuncio in corso."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "Il corrente annuncio è stato cancellato."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "Cambia come gli annunci sono inviati in questo server."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Change the channel where the bot will send announcements.\n\n"
|
||||
" If channel is left blank it defaults to the current channel.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
"Cambia il canale dove il bot manderà gli annunci.\n\n"
|
||||
"Se il canale è lasciato vuoto prenderà per predefinito il canale corrente. "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "Il canale di annuncio è stato impostato su {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr "Rimuove il canale per gli annunci."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -197,7 +192,7 @@ msgstr "\n"
|
||||
"Gli amministratori devono avere configurato il ruolo come impostabile dall'utente.\n"
|
||||
"NOTA: Il ruolo è caso sensitivo! "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -209,7 +204,7 @@ msgstr "\n"
|
||||
"Gli amministratori devono avere configurato il ruolo come impostabile dall'utente.\n"
|
||||
"NOTA: Il ruolo è caso sensitivo! "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -221,7 +216,7 @@ msgstr "\n"
|
||||
"Gli amministratori devono avere configurato il ruolo come impostabile dall'utente.\n"
|
||||
"NOTA: Il ruolo è caso sensitivo! "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
@@ -229,18 +224,18 @@ msgid "\n"
|
||||
msgstr "\n"
|
||||
"Elenca tutti i ruoli assegnabili dall'utente. "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "Ruoli assegnabili dall'utente:\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr "Gestisci i ruoli assegnabili dall'utente."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -248,23 +243,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Non posso permetterti di aggiungere {role.name} come ruolo assegnabile dall'utente poiché tale ruolo è superiore o uguale al tuo ruolo più alto nella gerarchia di Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -272,28 +267,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Non posso permetterti di rimuovere {role.name} dall'essere un selfrole perché quel ruolo è superiore o uguale al tuo ruolo più alto nella gerarchia di Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Blocca un bot ai suoi server attuali."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Il bot non è più bloccato ai server."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Il bot è adesso bloccato ai server."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Japanese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: ja_JP\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "私はDiscordが許可を拒否した何かをしようとしました。あなたのコマンドは正常に完了できませんでした。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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} に与えることはできません。その役職は、私が持っている最高役職より、上にあるためです。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
msgid "I can not remove {role.name} from {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
|
||||
msgstr "{role.name}から{member.display_name}を削除することはできません。 その役割は、Discord階層における私の最高の役割以上のものだからです。"
|
||||
msgstr "{role.name}から{member.display_name}を削除できません。その役割は、Discord階層における私の最高の役割以上のものです。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -81,7 +81,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -90,12 +90,12 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -108,11 +108,11 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -122,51 +122,48 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -175,7 +172,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -184,7 +181,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -193,24 +190,24 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -218,23 +215,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -242,28 +239,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Botを現在のサーバーにのみロックします。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Botはもうサーバーロックされていません。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Botはサーバーロックされました。"
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Korean\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: ko_KR\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "제가 사용할 수 없는 기능이 포함되어 당신의 요청을 수행할 수 없었어요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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}님에게 지급할 수 없었어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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}님에게서 뺏을 수 없었어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
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} 역할을 수정할 수 없었어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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}님에게 부여할 수 없어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
msgid "I can not let you remove {role.name} from {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "당신은 {role.name} 역할을 {member.display_name}님에게서 뺏을 수 없어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
msgid "I can not let you edit {role.name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "당신은 {role.name} 역할을 수정할 수 없어요. 이 역할은 제 가장 높은 역할보다 높거나, 같아요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr "이 작업을 수행하려면 \"역할 관리\" 권한이 필요해요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "이미 공지하고 있어요. 다른 공지를 보내고 싶다면 `{prefix}announce cancel`을 사용해주세요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "서버 관리를 위한 기능 모음"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name}님은 이미 {role.name} 역할을 가지고 있어요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "{member.display_name}님에게 {role.name} 역할을 부여했어요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name}님은 {role.name} 역할을 가지고 있지 않아요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "{member.display_name}님에게서 {role.name} 역할을 삭제했어요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -85,7 +85,7 @@ msgstr "\n"
|
||||
" 유저를 지정하지 않으면 명령어 실행자에게 역할을 지급해요.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -98,12 +98,12 @@ msgstr "\n"
|
||||
" 유저를 지정하지 않으면 명령어 실행자에게서 역할을 뺏어요.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "역할 설정을 변경했어요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -114,13 +114,20 @@ msgid "\n"
|
||||
" `[p]editrole colour \"The Transistor\" #ff0000`\n"
|
||||
" `[p]editrole colour Test #ff9900`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "\n"
|
||||
"역할 색상을 편집합니다.\n\n"
|
||||
"역할에 공백이 포함된 경우 큰따옴표를 사용합니다.\n"
|
||||
"색상은 16진수 형식이어야 합니다.\n"
|
||||
"[온라인 색상 선택기](http://www.w3schools.com/colors/colors_picker.asp)\n\n"
|
||||
"예:\n"
|
||||
"'[p]editrole 색상 \"The Transistor\" #ff0000'\n"
|
||||
"'[p]editrole 색상 Test #ff9900' "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "다 했어요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -128,152 +135,197 @@ msgid "\n"
|
||||
" Example:\n"
|
||||
" `[p]editrole name \"The Transistor\" Test`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "\n"
|
||||
"역할 이름을 편집합니다.\n\n"
|
||||
"역할 또는 이름에 공백이 포함된 경우 큰따옴표를 사용하십시오.\n\n"
|
||||
"예:\n"
|
||||
"`[p]editrole name \"The Transistor\" Test` "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr ""
|
||||
msgstr "봇이 있는 모든 서버에 메시지를 알립니다."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr ""
|
||||
msgstr "안내방송이 시작되었습니다."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "실행 중인 공지사항을 취소했어요."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr ""
|
||||
msgstr "현재 진행 중인 공지사항이 없습니다."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "최근의 공지사항은 취소되었습니다."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr ""
|
||||
msgstr "이 길드에서 공지사항을 보내는 방법을 변경합니다."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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 ""
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr "봇이 공지를 보낼 채널을 찾지 못했어요"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr ""
|
||||
msgstr "공지 채널이 {channel.mention} 으로 설정되었습니다."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
msgstr "공지사항에 대한 채널 설정을 해제합니다."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\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"
|
||||
"참고: 역할은 대소문자를 구분합니다! "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\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"
|
||||
"참고: 역할은 대소문자를 구분합니다! "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\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"
|
||||
"참고: 역할은 대소문자를 구분합니다! "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "\n"
|
||||
"사용 가능한 모든 역할을 나열합니다. "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr ""
|
||||
msgstr "사용 가능한 selfroles:\n"
|
||||
"{selfrolees}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
msgstr "자기 역할을 관리합니다."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\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 ""
|
||||
msgstr "\n"
|
||||
"사용 가능한 역할 목록에 역할 또는 역할 선택을 추가합니다.\n\n"
|
||||
"참고: 역할은 대소문자를 구분합니다! "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
msgstr "{role.name}(을)를 역할로 추가할 수 없습니다. 해당 역할이 Discord 계층 구조에서 당신의 가장 높은 역할보다 높거나 같기 때문입니다."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
msgstr "\"{role.name}\" 역할은 이미 있는 역할입니다."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
msgstr "{count} 역할을 추가했습니다."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
msgstr "1개의 역할이 추가되었습니다."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\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 "\n"
|
||||
"사용 가능한 selfroles 목록에서 역할 또는 선택한 역할을 제거합니다.\n\n"
|
||||
"참고: 역할은 대소문자를 구분합니다! "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
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}이(가) Discloss 계층 구조에서 사용자의 가장 높은 역할보다 높거나 같으므로 해당 역할을 셀프역할에서 제거할 수 없습니다."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr "{count} 개의 자기역할을 제거했어요"
|
||||
|
||||
#: 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 ""
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr "1개의 자기역할을 제거했어요"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr "이 서버에 가능한 자기 역할의 리스트를 초기화해요"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr "현재 가능한 셀프역할이 없어요"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr "진짜로 서버의 셀프롤을 지우겠습니까..?"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr "반응까지 너무 오래 걸리셨어요.."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "{role.name}이 제가 갖고있는 역할보다 높거나 동등하여 자기역할을 초기화하지 못했어요"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr "자기역할 목록이 초기화되었어요"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr "만들어진 변경사항이 없어요"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
msgstr "이 서버에서만 사용 할 수 있게 봇을 잠궈요"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
msgstr "봇이 더 이상 서버에 잠기지 않습니다."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
msgstr "이제 봇은 서버에 잠겼습니다."
|
||||
|
||||
#: redbot/cogs/admin/announcer.py:68
|
||||
msgid "I could not announce to the following server: "
|
||||
@@ -289,5 +341,5 @@ msgstr "관리자 cog가 로드되지 않았어요."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
msgstr "{role_name}은 제대로 된 역할이 아니에요"
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Norwegian Bokmal\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: nb_NO\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Jeg forsøkte å gjøre noe som Discord nektet meg tillatelser til. Kommandoen din kunne ikke fullføre."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "Jeg kan ikke gi {role.name} til {member.display_name} fordi den rollen er høyere enn eller lik min høyeste rolle i Discord-hierarkiet."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "Jeg kan ikke fjerne {role.name} fra {member.display_name} fordi den rollen er høyere enn eller lik min høyeste rolle i Discord-hierarkiet."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "Jeg kan ikke redigere {role.name} fordi den rollen er høyere enn min eller lik den høyeste rollen i Discord-hierarkiet."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 "Jeg kan ikke la deg gi {role.name} til {member.display_name} fordi den rollen er høyere enn eller lik din høyeste rolle i Discord-hierarkiet."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 "Jeg kan ikke la deg fjerne {role.name} fra {member.display_name} fordi den rollen er høyere enn eller lik din høyeste rolle i Discord-hierarkiet."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 "Jeg kan ikke la deg redigere {role.name} fordi den rollen er høyere enn eller lik din høyeste rolle i Discord-hierarkiet."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
msgstr "Jeg trenger tillatelsen \"Administrer roller\" for å gjøre dette."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Jeg kunngjør allerede noe. Hvis du vil gi en annen kunngjøring, bruk først `{prefix}announce cancel`."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "En samling av serveradministrasjonsverktøy."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name} har allerede rollen {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "Jeg har lagt til {role.name} til {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name} har ikke rollen {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "Jeg har fjernet {role.name} fra {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -86,7 +86,7 @@ msgstr "\n"
|
||||
" Hvis brukeren er tom, er den standard for forfatteren av kommandoen.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -99,12 +99,12 @@ msgstr "\n"
|
||||
" Hvis brukeren er tom, er den standard for forfatteren av kommandoen.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Endre rolle innsillinger."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -125,11 +125,11 @@ msgstr "\n"
|
||||
"` [p] redigeringsrollefarge Test # ff9900` \n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Ferdig."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -146,54 +146,48 @@ msgstr "\n"
|
||||
" `[p] editrole name \" Transistor \\ \"Test` \n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Gi en melding til alle servere boten er i."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "Kunngjøringen har begynt."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Avbryt en løpende kunngjøring."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "Det er for øyeblikket ingen kunngjøring."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "Den nåværende kunngjøringen er kansellert."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "Endre hvordan kunngjøringer sendes i denne serveren."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Change the channel where the bot will send announcements.\n\n"
|
||||
" If channel is left blank it defaults to the current channel.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
"Endre kanalen der bot vil sende kunngjøringer. \n\n"
|
||||
" Hvis kanalen er tom, er den standard for den nåværende kanalen. \n"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "Kunngjøringskanalen er satt til {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr "Opphever kanalen for kunngjøringer."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -206,7 +200,7 @@ msgstr "\n"
|
||||
" MERK: Rollen skiller mellom små og store bokstaver!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -219,7 +213,7 @@ msgstr "\n"
|
||||
"MERK: Rollen er små og små bokstaver!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -232,7 +226,7 @@ msgstr "\n"
|
||||
" MERKNAD: Rollen er store og små bokstaver!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
@@ -241,71 +235,106 @@ msgstr "\n"
|
||||
"Viser alle tilgjengelige selvroller.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "Tilgjengelige selvroller:\n"
|
||||
" {selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr "Behandle selvroller."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\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 ""
|
||||
msgstr "\n"
|
||||
" Legg til en rolle, eller et utvalg av roller, til listen over tilgjengelige selvroller.\n\n"
|
||||
" MERK: Rollen skilles mellom store og små bokstaver!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Jeg kan ikke la deg gi {role.name} til fordi den rollen er høyere enn eller lik din høyeste rolle i Discord-hierarkiet."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
msgstr "Rollen \"{role.name}\" er allerede en selv rolle."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
msgstr "La til {count} selvroller."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
msgstr "Lagt til 1 selvrolle."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\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 "\n"
|
||||
" Fjern en rolle, eller et utvalg av roller, fra listen over tilgjengelige selvroller.\n\n"
|
||||
" MERK: Rollen skille mellom store og små bokstaver!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Jeg kan ikke la deg fjerne {role.name} fra fordi den rollen er høyere enn eller lik din høyeste rolle i Discord-hierarkiet."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr "Fjernet {count} selvroller."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr "Fjernet 1 selvrolle."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
msgid "Removed 1 selfrole."
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr "Du tok for lang tid å svare."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr "Ingen endringer er utført."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Lås bare en bot til sine nåværende servere."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Bot er ikke lenger serverlåst."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Bot er nå serverlåst."
|
||||
|
||||
@@ -323,5 +352,5 @@ msgstr "Admin cog er ikke lastet."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
msgstr "Rollen \"{role_name}\" er ikke en gyldig selvrolle."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Dutch\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: nl_NL\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Ik probeerde iets te doen waarvoor Discord me geen toestemming heeft gegeven. Je commando kon niet worden voltooid."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "Ik kan {role.name} niet aan {member.display_name} geven omdat die rol hoger of gelijk is aan mijn hoogste rol in de Discord hiërarchie."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "Ik kan {role.name} niet van {member.display_name} verwijderen omdat die rol hoger dan of gelijk is aan mijn hoogste rol in de Discord hiërarchie."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "Ik kan {role.name} niet bewerken omdat die rol hoger is dan mijn of de hoogste rol in de Discord hiërarchie."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 "Ik kan je {role.name} niet aan {member.display_name} laten geven omdat die rol hoger is dan of gelijk is aan je hoogste rol in de Discord hiërarchie."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 "Ik kan je {role.name} niet van {member.display_name} laten verwijderen omdat die rol hoger dan of gelijk is aan je hoogste rol in de Discord hiërarchie."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 "Ik kan je {role.name} niet laten bewerken omdat die rol hoger of gelijk is aan je hoogste rol in de Discord hiërarchie."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Ik ben al iets aan het aankondigen. Als je iets anders wilt aankondigen, voer dan eerst deze command uit: '{prefix}announce cancel'."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Een collectie van de server administratie voorzieningen."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name} heeft de rol {role.name} al."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "Ik heb succesvol {role.name} toegevoegd aan {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name} heeft de rol {role.name} niet."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "Ik heb succesvol {role.name} verwijderd van {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -85,7 +85,7 @@ msgstr "\n"
|
||||
" Als de gebruiker leeg gelaten wordt, is het standaard ingesteld op de auteur van het commando.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -98,12 +98,12 @@ msgstr "\n"
|
||||
" Als de gebruiker leeg gelaten wordt, is het standaard ingesteld op de auteur van het commando.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Rol instellingen bewerken."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -124,11 +124,11 @@ msgstr "\n"
|
||||
" `[p]editrole colour Test #ff9900`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Klaar."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -143,54 +143,48 @@ msgstr "\n"
|
||||
" `[p]editrole naam \"The Transistor\" Test`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Kondig een bericht aan in alle servers."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "De aankondiging is begonnen."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Annuleer een huidige aankondiging."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "Er is momenteel geen lopende aankondiging."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "De huidige aankondiging is geannuleerd."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "Verander hoe aankondigingen worden verzonden in deze gilde."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Change the channel where the bot will send announcements.\n\n"
|
||||
" If channel is left blank it defaults to the current channel.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Verander het kanaal waar de bot aankondigingen zal verzenden.\n\n"
|
||||
" Als het kanaal leeg is dan is het standaard ingesteld op het huidige kanaal.\n"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "Het aankondigingskanaal is aangepast naar {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr "Kanaal voor aankondigingen uitschakelen."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -199,7 +193,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -212,7 +206,7 @@ msgstr "\n"
|
||||
" Let op: De rol is hoofdlettergevoelig!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -225,7 +219,7 @@ msgstr "\n"
|
||||
" Let op: De rol is hoofdlettergevoelig!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
@@ -234,18 +228,18 @@ msgstr "\n"
|
||||
" Toont alle beschikbare zelfrollen.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "Beschikbare zelfrollen:\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr "Beheer zelfrollen."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -253,23 +247,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Ik kan je {role.name} niet als zelfrol toe laten voegen omdat die rol hoger dan of gelijk is aan je hoogste rol in de Discord hiërarchie."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -277,28 +271,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Ik kan je {role.name} niet uit zelfrol laten verwijderen omdat die rol hoger dan of gelijk is aan je hoogste rol in de Discord-hiërarchie."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Vergrendel de bot voor alleen deze server."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "De bot is niet langer vergrendeld."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "De bot is vergrendeld."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Polish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: pl_PL\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Próbowałem/am zrobić coś, do czego Discord odmówił mi uprawnień. Twoja komenda nie powiodła się."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "Nie mogę dać {role.name} {member.display_name} ponieważ ta rola jest wyższa lub równa mojej najwyższej roli w hierarchii Discorda."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "Nie mogę usunąć {role.name} z {member.display_name}, ponieważ ta rola jest wyższa lub równa mojej najwyższej roli w hierarchii Discorda."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "Nie mogę edytować {role.name}, ponieważ ta rola jest wyższa niż moja lub równa najwyższej roli w hierarchii Discorda."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 "Nie mogę pozwolić Tobie dać {role.name} {member.display_name} ponieważ ta rola jest większa lub równa twojej najwyższej roli w hierarchii Discorda."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 "Nie mogę pozwolić ci usunąć {role.name} z {member.display_name}, ponieważ ta rola jest wyższa lub równa twojej najwyższej roli w hierarchii Discorda."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 "Nie mogę pozwolić ci edytować {role.name}, ponieważ ta rola jest wyższa lub równa twojej najwyższej roli w hierarchii Discorda."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Już coś ogłaszam. Jeśli chcesz złożyć inne ogłoszenie, najpierw użyj `{prefix}announce cancel`."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Zbiór narzędzi administracyjnych serwera."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name} ma już rolę {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "Pomyślnie dodałem/am {role.name} dla {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name} nie ma roli {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "Pomyślnie usunąłem/am {role.name} od {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -85,7 +85,7 @@ msgstr "\n"
|
||||
" Jeśli użytkownik jest pozostanie pusty, domyślnie zostanie wybrany autor komendy.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -98,12 +98,12 @@ msgstr "\n"
|
||||
" Jeśli użytkownik jest pozostanie pusty, domyślnie zostanie wybrany autor komendy.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Edytuj ustawienia roli."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -124,11 +124,11 @@ msgstr "\n"
|
||||
" `[p]editrole colour Test #ff9900`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Gotowe."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -143,54 +143,48 @@ msgstr "\n"
|
||||
" `[p]editrole name \"The Transistor\" Test`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Rozgłoś wiadomość do wszystkich serwerów w których jest ten bot."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "Ogłaszanie rozpoczęte."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Anuluj uruchomione ogłoszenie."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "Nie ma aktualnie uruchomionych ogłoszeń."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "Bieżące ogłoszenie zostało anulowane."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "Zmień sposób wysyłania ogłoszeń w tej gildii."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Change the channel where the bot will send announcements.\n\n"
|
||||
" If channel is left blank it defaults to the current channel.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Zmień kanał, w którym bot wyśle ogłoszenia.\n\n"
|
||||
" Jeśli kanał nie zostanie zdefiniowany, domyślnie zostanie wybrany bieżący kanał.\n"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "Kanał ogłoszeniowy został ustawiony na {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr "Usuwa wybór kanału dla ogłoszeń."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -199,7 +193,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -212,7 +206,7 @@ msgstr "\n"
|
||||
" UWAGA: Rola rozróżnia wielkość liter!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -225,7 +219,7 @@ msgstr "\n"
|
||||
" UWAGA: Wielkość liter ma znaczenie!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
@@ -234,18 +228,18 @@ msgstr "\n"
|
||||
" Wyświetla role do samodzielnego przypisania.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "Dostępne role do samodzielnego przypisania:\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr "Zarządzaj rolami do samodzielnego przypisania."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -253,23 +247,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Nie mogę Ci pozwolić dać {role.name} jako roli samodzielnego przypisania, ponieważ ta rola jest wyższa lub równa twojej najwyższej roli w hierarchii Discorda."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -277,28 +271,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Nie mogę Ci pozwolić usunąć {role.name} z bycia rolą samodzielnego przypisania, ponieważ ta rola jest wyższa lub równa twojej najwyższej roli w hierarchii Discorda."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Ogranicz bota wyłącznie do obecnych serwerów."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Bot nie jest już ograniczony do obecnych serwerów."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Bot jest teraz ograniczony do obecnych serwerów."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: pt_BR\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Eu tentei fazer algo que o Discord me negou as permissões necessárias. Seu comando falhou em ser completado com sucesso."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "Não posso atribuir o cargo {role.name} para {member.display_name} porque este cargo é mais alto ou igual que o meu cargo mais alto na hierarquia do Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "Não posso remover o cargo {role.name} de {member.display_name} porque este cargo é mais alto ou igual que o meu cargo mais alto na hierarquia do Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "Não posso alterar o cargo {role.name} porque este cargo é mais alto ou igual que o meu cargo mais alto na hierarquia do Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 "Não posso deixar você atribuir o cargo {role.name} para {member.display_name} porque este cargo é mais alto ou igual que o meu cargo mais alto na hierarquia do Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 "Não posso deixar você rmover o cargo {role.name} de {member.display_name} porque este cargo é mais alto ou igual que o meu cargo mais alto na hierarquia do Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 "Não posso deixar você alterar o cargo {role.name} porque este cargo é mais alto ou igual que o meu cargo mais alto na hierarquia do Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr "Eu preciso da permissão \"Gerenciar Funções\" para fazer isso."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Eu já estou anunciando algo. Se quer fazer um anúncio diferente, por favor use `{prefix}announce cancel` primeiro."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Um conjunto de ferramentas para a administração do servidor."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name} já tem o cargo {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "Eu adicionei com sucesso {role.name} de {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name} não tem o cargo {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "Eu removi {role.name} de {member.display_name} com sucesso"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -85,7 +85,7 @@ msgstr "\n"
|
||||
" Se o usuário for deixado em branco, por padrão será usado a(o) autor(a) do comando.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -98,12 +98,12 @@ msgstr "\n"
|
||||
" Se o usuário for deixado em branco, por padrão será usado a(o) autor(a) do comando.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Altera as configurações de cargo."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -124,11 +124,11 @@ msgstr "\n"
|
||||
" `[p]editrole colour Teste #ff9900`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Concluído."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -143,54 +143,48 @@ msgstr "\n"
|
||||
" `[p]editrole name \"O Transistor\" Teste`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Anuncia uma mensagem para todos os servidores onde o bot está."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "O anúncio começou."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Cancela um anúncio em andamento."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "Não existe nenhum anúncio em andamento."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "O anúncio atual foi cancelado."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "Altera como os anúncios são enviados nessa guilda."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Change the channel where the bot will send announcements.\n\n"
|
||||
" If channel is left blank it defaults to the current channel.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Altera o canal para onde o bot enviará os anúncios.\n\n"
|
||||
" Se o canal for deixado em branco, por padrão será usado o canal atual.\n"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "O canal de anúncios foi definido como {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr "Desativa o canal para anúncios."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -203,7 +197,7 @@ msgstr "\n"
|
||||
" NOTA: o nome do cargo diferencia as variações entre letras maiúsculas e minúsculas!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -216,7 +210,7 @@ msgstr "\n"
|
||||
" NOTA: o nome do cargo diferencia entre maiúsculas e minúsculas!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -229,7 +223,7 @@ msgstr "\n"
|
||||
" NOTA: o nome do cargo diferencia entre maiúsculas e minúsculas!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
@@ -238,18 +232,18 @@ msgstr "\n"
|
||||
" Lista todos os cargos autoatribuíveis.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "Cargos autoatribuíveis disponíveis:\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr "Gerenciar cargos autoatribuíveis."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -260,23 +254,23 @@ msgstr "\n"
|
||||
" NOTA: o nome do cargo é sensivel á letras maiúsculas e minúsculas!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Não posso deixar você atribuir {role.name} como um cargo autoatribuível porque este cargo é mais alto ou igual ao seu mais alto cargo na hierarquia do Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
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:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr "Foram adicionados {count} cargos auto atribuíveis."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr "Adicionado um cargo auto atribuível."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -287,28 +281,57 @@ msgstr "\n"
|
||||
" NOTA: o nome do cargo é sensível á letras maiúsculas e minúsculas!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Não posso deixar você remover o cargo {role.name} da lista de cargos autoatribuíveis porque este cargo é mais alto ou igual ao seu mais alto cargo na hierarquia do Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr "Foram removidos {count} cargos auto atribuíveis."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr "1 cargo autoatribuivel foi removido."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Restringe o bot somente aos servidores atuais."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "O bot não está mais restrito aos servidores atuais."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "O está restrito aos servidores atuais."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: pt_PT\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Tentei fazer uma coisa que o Discord negou permissão para fazer. O comando não foi concluído."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "Eu não posso dar {role.name} a {member.display_name} porque esse cargo é igual ou maior a meu cargo na hierarquia do Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "Não posso remover {role.name} de {member.display_name} porque esse cargo é igual ou maior a meu cargo na hierarquia do Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "Não posso editar {role.name} porque esse cargo é igual ou maior à minha hierarquia no Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
msgid "I can not let you give {role.name} to {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Eu não posso dar {role.name} a {member.display_name} porque esse cargo é igual ou maior ao meu cargo na hierarquia do Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Já estou a anunciar algo. Se queres fazer um anúncio diferente usa `{prefix}announce cancel` antes de usares este comando."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Uma coleção de utilidades para administração de servidores."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "Adicionei com sucesso {role.name} a {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "Removi com sucesso {role.name} de {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -81,7 +81,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -90,12 +90,12 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -108,11 +108,11 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Concluído."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -122,51 +122,48 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Anuncia uma mensagem para todos os servidores em que o bot está."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "O anúncio foi iniciado."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Cancelar um anúncio em curso."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "O anúncio atual foi cancelado."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "O canal de anúncio foi definido para {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -175,7 +172,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -184,7 +181,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -193,24 +190,24 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -218,23 +215,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -242,28 +239,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Bloquear o bot aos servidores atuais."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "O bot já não está bloqueado aos servidores atuais."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "O bot está agora bloqueado aos servidores atuais."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Romanian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: ro_RO\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -81,7 +81,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -90,12 +90,12 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -108,11 +108,11 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -122,51 +122,48 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -175,7 +172,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -184,7 +181,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -193,24 +190,24 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -218,23 +215,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -242,28 +239,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Russian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: ru_RU\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Я попыталась сделать что-то, в чем Discord отказал мне в разрешениях. Ваша команда не была выполнена успешно."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
msgid "I can not give {role.name} to {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
|
||||
msgstr "Я не могу добавить роль {role.name} пользователю {member.display_name}, потому что эта роль выше или равна моей самой высокой роли в иерархии Discord."
|
||||
msgstr "Я не могу дать {role.name} {member.display_name}, потому что эта роль выше или равна моей самой высокой роли в иерархии Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
msgid "I can not remove {role.name} from {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
|
||||
msgstr "Я не могу удалить роль {role.name} у пользователя {member.display_name}, потому что эта роль выше или равна моей самой высокой роли в иерархии Discord."
|
||||
msgstr "Я не могу убрать {role.name} из {member.display_name}, потому что эта роль выше или равна моей самой высокой роли в иерархии Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "Я не могу редактировать роль {role.name}, потому что эта роль выше или равна моей самой высокой роли в иерархии Discord."
|
||||
msgstr "Я не могу редактировать {role.name}, потому что эта роль выше, чем моя или равная самой высокой роли в иерархии Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
msgid "I can not let you give {role.name} to {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Я не могу дать {role.name} пользователю {member.display_name}, поскольку эта роль выше или равна вашей самой высокой роли в иерархии Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
msgid "I can not let you remove {role.name} from {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Я не могу позволить вам удалить {role.name} у {member.display_name}, потому что эта роль выше или равна вашей самой высокой роли в иерархии Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
msgid "I can not let you edit {role.name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Я не могу позволить вам редактировать роль {role.name}, потому что эта роль выше или равна вашей самой высокой роли в иерархии Discord."
|
||||
msgstr "Я не могу позволить вам редактировать {role.name}, потому что эта роль выше или равна вашей самой высокой роли в иерархии Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr "Для этого мне нужно разрешение «Управление Ролями»."
|
||||
msgstr "Мне нужно управлять правами ролей, чтобы сделать это."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Я уже что-то объявляю. Если вы хотите сделать другое объявление, сначала используйте `{prefix}announce cancel`."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Набор утилит администрирования сервера."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name} уже имеет роль {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "Я успешно добавила роль {role.name} пользователю {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name} не имеет роли {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "Я успешно забрала роль {role.name} у пользователя {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -82,10 +82,10 @@ msgid "\n"
|
||||
msgstr "\n"
|
||||
" Добавить роль пользователю.\n\n"
|
||||
" Используйте двойные кавычки, если роль содержит пробелы.\n"
|
||||
" Если пользователь не указан, по умолчанию используется автор команды.\n"
|
||||
" Если пользователь остался пустым, он по умолчанию используется автором команды.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -93,17 +93,17 @@ msgid "\n"
|
||||
" If user is left blank it defaults to the author of the command.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Удалить роль у пользователя.\n\n"
|
||||
" Удалить роль от пользователя.\n\n"
|
||||
" Используйте двойные кавычки, если роль содержит пробелы.\n"
|
||||
" Если пользователь не указан, по умолчанию используется автор команды.\n"
|
||||
" Если пользователь остался пустым, он по умолчанию используется автором команды.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Изменение параметров роли."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -118,17 +118,17 @@ msgstr "\n"
|
||||
" Изменить цвет роли.\n\n"
|
||||
" Используйте двойные кавычки, если роль содержит пробелы.\n"
|
||||
" Цвет должен быть в шестнадцатеричном формате.\n"
|
||||
" [Онлайн выбор цвета](http://www.w3schools. om/colors/colors_picker.asp)\n\n"
|
||||
" [Онлайн выбор цвета](http://www.w3schools. om/colors/colors_picker.sp)\n\n"
|
||||
" Примеры:\n"
|
||||
" `[p]edit role color \"The Transistor\" #ff00`\n"
|
||||
" `[p]edit role color Test #ff9900`\n"
|
||||
" `[p]edit role color--ur Test #ff9900`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Готово."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -143,54 +143,48 @@ msgstr "\n"
|
||||
" `[p]edit role name \"The Transistor\" Test`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Объявить сообщение на всех серверах, к которым подключен бот."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "Объявление началось."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Отменить текущее объявление."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "В настоящее время нет запущенных объявлений."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "Текущее объявление было отменено."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "Изменить способ отправки объявлений на этом сервере."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Change the channel where the bot will send announcements.\n\n"
|
||||
" If channel is left blank it defaults to the current channel.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Изменение канала, в который бот будет отправлять объявления.\n\n"
|
||||
" Если оставить поле пустым, то по умолчанию будет использоваться текущий канал.\n"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "Канал объявления был установлен на {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr "Сбрасывает канал для объявлений."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -198,12 +192,12 @@ msgid "\n"
|
||||
" NOTE: The role is case sensitive!\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Удалить свою роль у себя.\n\n"
|
||||
" Администраторы сервера должны настроить роль как устанавливаемую пользователем.\n"
|
||||
" ПРИМЕЧАНИЕ: Роль чувствительна к размером!\n"
|
||||
"Добавить себе роль.\n\n"
|
||||
" Администраторы сервера должны настроить роль как настраиваемую пользователем.\n"
|
||||
" ПРИМЕЧАНИЕ: Роль чувствительна к регистру!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -211,12 +205,12 @@ msgid "\n"
|
||||
" NOTE: The role is case sensitive!\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Добавить собственную роль себе.\n\n"
|
||||
" Администраторы сервера должны настроить роль как устанавливаемую пользователем.\n"
|
||||
" Добавьте себе роль себя.\n\n"
|
||||
" Администраторы сервера должны настроить роль в качестве пользовательской установки.\n"
|
||||
" ПРИМЕЧАНИЕ: Роль чувствительна к регистру!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -229,54 +223,54 @@ msgstr "\n"
|
||||
" ПРИМЕЧАНИЕ: Роль чувствительна к регистру!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Списки всех доступных своих ролей.\n"
|
||||
" Список всех доступных ролей.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "Доступные собственные роли:\n"
|
||||
msgstr "Доступные роли:\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr "Управление своими ролями."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\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:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Нельзя добавить {role.name} в качестве собственной роли, потому что эта роль выше или равна вашей самой высшей роли в иерархии Discord."
|
||||
msgstr "Я не могу вам дать {role.name},, поскольку эта роль выше или равна вашей самой высокой роли в иерархии Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr "Роль \"{role.name}\" уже является саморолью."
|
||||
msgstr "Роль \"{role.name}\" уже является вашей."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr "Добавлена {count} саморолей."
|
||||
msgstr "Добавлено {count} ролей."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr "Добавлена 1 самороль."
|
||||
msgstr "Роль добавлена."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -287,28 +281,57 @@ msgstr "\n"
|
||||
" ПРИМЕЧАНИЕ: Роль чувствительна к регистру!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Вы не можете забрать у себя роль {role.name}, потому что эта роль выше или равна вашей самой высокой роли в иерархии Discord."
|
||||
msgstr "Я не могу позволить вам удалить {role.name}, эта роль выше или равна вашей самой высокой роли в иерархии Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr "Удалено {count} ролей."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr "Убрана 1 роль."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr "Очистить список доступных саморолей для этого сервера."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr "Удалены {count} саморолей."
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr "Удалена 1 самороль."
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr "Вы слишком долго не отвечали."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr "Никаких изменений не произошло."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Зафиксировать бота только на его текущих серверах."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Бот больше не зафиксирован на сервере."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Бот теперь зафиксирован на сервере."
|
||||
|
||||
@@ -318,7 +341,7 @@ msgstr "Я не могу сделать объявление на следующ
|
||||
|
||||
#: redbot/cogs/admin/announcer.py:70
|
||||
msgid "I could not announce to the following servers: "
|
||||
msgstr "Я не могу объявить на следующих серверах: "
|
||||
msgstr "Я не могу сделать объявление на следующем сервере: "
|
||||
|
||||
#: redbot/cogs/admin/converters.py:12
|
||||
msgid "The Admin cog is not loaded."
|
||||
@@ -326,5 +349,5 @@ msgstr "Модуль Admin не загружен."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr "Роль \"{role_name}\" не является допустимой саморолью."
|
||||
msgstr "Роль \"{role_name}\" не является допустимой ролью."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Slovak\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,65 +15,65 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: sk_SK\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Pokúsil som sa urobiť niečo, pre čo mi Discord odoprel povolenie. Váš príkaz sa nepodarilo úspešne dokončiť."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "Nemôžem dať {role.name} na {member.display_name} pretože táto rola je vyššia alebo rovná mojej najvyššej rolí v Discord hierarchií."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Už niečo oznamujem. Ak by ste chceli urobiť iné oznámenie, prosím, najskôr použite `{prefix} announce cancel`."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Zbierka nástrojov na správu servera."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name} už má rolu {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "\n"
|
||||
"Úspešne som pridal {role.name} do {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name} nemá rolu {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "Úspešne som odstránil {role.name} od {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -86,7 +86,7 @@ msgstr "\n"
|
||||
" Ak je užívateľ ponechaný prázdny, predvolene sa použije autor príkazu.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -99,12 +99,12 @@ msgstr "\n"
|
||||
" Ak je užívateľ ponechaný prázdny, predvolene sa použije autor príkazu.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Úpravy nastavenia role."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -125,11 +125,11 @@ msgstr "\n"
|
||||
" `[p]editrole colour Spravce #ff9900`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Hotovo."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -144,54 +144,48 @@ msgstr "\n"
|
||||
" `[p]editrole name \"Správca servera\" Majitel`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Oznámiť správu všetkým serverom, na ktorých sa bot nachádza."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "Oznam sa začal."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Zrušiť prebiehajúce oznámenie."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "Momentálne nie je spustené žiadne oznámenie."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "Aktuálne oznámenie bolo zrušené."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "Zmeňte spôsob odosielania oznámení v tomto klane."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Change the channel where the bot will send announcements.\n\n"
|
||||
" If channel is left blank it defaults to the current channel.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Zmeniť kanál, kam bude bot posielať oznámenia.\n\n"
|
||||
" Ak je kanál nevyplnený, použije sa predvolený aktuálny kanál.\n"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "Kanál pre oznámenia bol nastavený na {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr "Zruší nastavenie kanálu pre oznámenia."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -204,7 +198,7 @@ msgstr "\n"
|
||||
" POZNÁMKA: Rola je citlivá na malé a veľké písmena!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -217,7 +211,7 @@ msgstr "\n"
|
||||
" POZNÁMKA: Rola je citlivá na malé a veľké písmena!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -230,7 +224,7 @@ msgstr "\n"
|
||||
" POZNÁMKA: Rola je citlivá na malé a veľké písmena!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
@@ -239,18 +233,18 @@ msgstr "\n"
|
||||
" Zoznam dostupných self-rolí.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "Dostupné self-role:\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr "Spravovať self-role."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -258,23 +252,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Nemôžem ti dovoliť pridať {role.name} ako self-rolu, pretože táto rola je vyššia alebo rovná tvojej najvyššej roli v Discord hierarchii."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -282,28 +276,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Nemôžem ti dovoliť odobrať {role.name} užívateľovi, pretože táto rola je vyššia alebo rovná tvojej najvyššej roli v Discord hierarchii."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Uzamkne bota iba na jeho aktuálne servery."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Bot už nie je uzamknutý serverom."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Bot je teraz uzamknutý serverom."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Slovenian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: sl_SI\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Poskusil sem narediti nekaj kar mi Discord ne dovoljuje. Ukaza ni bilo mogoče uspešno dokončati."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "Ne morem dodati role {role.name} uporabniku {member.display_name} ker je ta rola višja ali enaka moji najvišji roli v Discordovi hierarhiji."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "Ne morem odstraniti role {role.name} uporabniku {member.display_name} ker je ta rola višja ali enaka moji najvišji roli v Discordovi hierarhiji."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "Ne morem spreminjati role {role.name} ker je ta rola višja ali enaka moji najvišji roli v Discordovi hierarhiji."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 "Ne morem ti dovoliti dodati role {role.name} uporabniku {member.display_name} ker je ta rola višja ali enaka tvoji roli v Discordovi hierarhiji."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 "Ne morem ti dovoliti odstraniti role {role.name} uporabniku {member.display_name} ker je ta rola višja ali enaka tvoji roli v Discordovi hierarhiji."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 "Ne morem ti dovoliti urejati role {role.name} ker je ta rola višja ali enaka tvoji najvišji roli v Discordovi hierarhiji."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr "Potrebujem dovoljenje \"Manage Roles\" za izvršitev tega ukaza."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Nekaj že naznanjam. Če želiš objaviti drugačno obvestilo, prosim, uporabi `{prefix}announce cancel` za preklic."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Zbirka pripomočkov za administracijo strežnika."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name} že ima rolo {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "Rola {role.name} je uspešno dodana uporabniku {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "Uporabnik {member.display_name} nima role {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "Rola {role.name} uspešno odstranjena uporabniku {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -85,7 +85,7 @@ msgstr "\n"
|
||||
" Če je polje uporabnika prazno se avtomatsko doda avtorju komande.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -98,12 +98,12 @@ msgstr "\n"
|
||||
" Če je polje uporabnika prazno se avtomatsko doda avtorju komande.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Spremeni nastavitve role."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -124,11 +124,11 @@ msgstr "\n"
|
||||
" `[p]editrole colour Test #ff9900`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Opravljeno."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -143,54 +143,48 @@ msgstr "\n"
|
||||
" `[p]editrole name \"The Transistor\" Test`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Pošljite sporočilo v vse strežnike, v katerih je bot."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "Napoved se je začela."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Prekini aktivni napovednik."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "Trenutno ni aktivnega napovednika."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "Trenutni napovednik je bil preklican."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "Spremeni način kako je napoved poslana v tem strežniku."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Change the channel where the bot will send announcements.\n\n"
|
||||
" If channel is left blank it defaults to the current channel.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Spremeni kanal v katerega bot pošilja napovedi.\n\n"
|
||||
" Če je polje za kanal prazen, bo uporabljen trenutni kanal.\n"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "Kanal za napovedi je bil nastavljen na {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr "Odstrani kanal za napovedi."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -203,7 +197,7 @@ msgstr "\n"
|
||||
" POMNI: Rola razlikuje med velikimi in malimi črkami!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -216,7 +210,7 @@ msgstr "\n"
|
||||
" POMNI: Rola razlikuje med velikimi in malimi črkami!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -229,7 +223,7 @@ msgstr "\n"
|
||||
" POMNI: Rola razlikuje med velikimi in malimi črkami!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
@@ -238,18 +232,18 @@ msgstr "\n"
|
||||
" Izpiše vse lastne role ki so na voljo.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "Razpoložljive lastne role:\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr "Upravlja lastne role."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -257,23 +251,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Ne morem ti dovoliti dodati role {role.name} kot lastno rolo ker je ta rola višja ali enaka tvoji roli v Discordovi hierarhiji."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -281,28 +275,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Ne morem ti dovoliti odstraniti role {role.name} kot lastno rolo ker je ta rola višja ali enaka tvoji roli v Discordovi hierarhiji."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Zaklene bota na trenutne strežnike."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Bot je zopet odklenjen za vse strežnike."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Bot je trenutno zaklenjen za vse strežnike."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Serbian (Latin)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: sr_CS\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -81,7 +81,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -90,12 +90,12 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -108,11 +108,11 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -122,51 +122,48 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -175,7 +172,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -184,7 +181,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -193,24 +190,24 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -218,23 +215,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -242,28 +239,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Serbian (Cyrillic)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: sr_SP\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -81,7 +81,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -90,12 +90,12 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -108,11 +108,11 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -122,51 +122,48 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -175,7 +172,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -184,7 +181,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -193,24 +190,24 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -218,23 +215,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -242,28 +239,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Swedish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,73 +15,77 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: sv_SE\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Jag försökte göra något som Discord nekade mig behörighet till. Ditt kommando kunde inte slutföras."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "Jag kan inte ge {role.name} till {member.display_name} eftersom den rollen är högre än eller lika med min högsta roll i Discord-hierarkin."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "Jag kan inte ta bort {role.name} från {member.display_name} eftersom den rollen är högre än eller lika med min högsta roll i Discord-hierarkin."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
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 "Jag kan inte redigera {role.name} eftersom den rollen är högre än min eller lika med högsta roll i Discord-hierarkin."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 "Jag kan inte låta dig ge {role.name} till {member.display_name} eftersom den rollen är högre än eller lika med din högsta roll i Discord-hierarkin."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 "Jag kan inte låta dig ta bort {role.name} från {member.display_name} eftersom den rollen är högre än eller lika med din högsta roll i Discord-hierarkin."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 "Jag kan inte låta dig redigera {role.name} eftersom den rollen är högre än eller lika med din högsta roll i Discord-hierarkin."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
msgstr "Jag behöver behörigheten \"Hantera roller\" för att göra det."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Jag tillkännager redan något. Om du vill göra ett annat tillkännagivande, vänligen använd `{prefix}announce cancel` först."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "En samling administrationsverktyg för servern."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr ""
|
||||
msgstr "{member.display_name} har redan rollen {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "Jag lyckades lägga till {role.name} till {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr ""
|
||||
msgstr "{member.display_name} har inte rollen {role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "Jag lyckades ta bort {role.name} från {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\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"
|
||||
" Lägg till en roll till en användare.\n\n"
|
||||
" Använd dubbla citat om rollen innehåller mellanslag.\n"
|
||||
" Om användaren lämnas tom används som standard skaparen av kommandot.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -94,12 +98,12 @@ msgstr "\n"
|
||||
" Om användaren lämnas tom är det standard för skaparen av kommandot.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Redigera rollinställningar."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -110,13 +114,21 @@ msgid "\n"
|
||||
" `[p]editrole colour \"The Transistor\" #ff0000`\n"
|
||||
" `[p]editrole colour Test #ff9900`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "\n"
|
||||
" Redigera en rolls färg.\n\n"
|
||||
" Använd dubbla citat om rollen innehåller mellanslag.\n"
|
||||
" Färgen måste vara i hexadecimalt format.\n"
|
||||
" [Online färgväljare] (http://www.w3schools. om/colors/colors_picker. sp)\n\n"
|
||||
" Exempel:\n"
|
||||
" `[p]editrole colour \"The Transistor\" #ff0000`\n"
|
||||
" `[p]editrole colour Test #ff9900`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Klart."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -124,80 +136,94 @@ msgid "\n"
|
||||
" Example:\n"
|
||||
" `[p]editrole name \"The Transistor\" Test`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "\n"
|
||||
" Redigera en rolls namn.\n\n"
|
||||
" Använd dubbla citat om rollen eller namnet innehåller mellanslag.\n\n"
|
||||
" Exempel:\n"
|
||||
" `[p]editrole name \"The Transistor\" Test`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Meddela ett meddelande till alla servrar som botten är i."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "Tillkännagivandet har börjat."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Avbryt en löpande avisering."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr ""
|
||||
msgstr "Det finns inget aktivt meddelande för närvarande."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "Det aktuella meddelandet har avbrutits."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr ""
|
||||
msgstr "Ändra hur meddelanden skickas i detta gille."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "Tillkännagivandekanalen har satts till {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
msgstr "Inaktiverar kanalen för meddelanden."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
" Server admins must have configured the role as user settable.\n"
|
||||
" NOTE: The role is case sensitive!\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "\n"
|
||||
" Lägg till eller ta bort en självroll från dig själv.\n\n"
|
||||
" Serveradministratörer måste ha konfigurerat rollen som användarinställbar.\n"
|
||||
" OBS: Rollen är skiftlägeskänslig!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
" Server admins must have configured the role as user settable.\n"
|
||||
" NOTE: The role is case sensitive!\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "\n"
|
||||
" Lägg till en självroll till dig själv.\n\n"
|
||||
" Serveradministratörer måste ha konfigurerat rollen som användarinställbar.\n"
|
||||
" OBS: Rollen är skiftlägeskänslig!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
" Server admins must have configured the role as user settable.\n"
|
||||
" NOTE: The role is case sensitive!\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr "\n"
|
||||
" Ta bort en självroll från dig själv.\n\n"
|
||||
" Serveradministratörer måste ha konfigurerat rollen som användarinställbar.\n"
|
||||
" OBS: Rollen är skiftlägeskänslig!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
@@ -206,81 +232,116 @@ msgstr "\n"
|
||||
" Listar alla tillgängliga självroller.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "Tillgängliga Selfroles:\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr "Hantera självroller."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\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 ""
|
||||
msgstr "\n"
|
||||
" Lägg till en roll eller ett urval av roller till listan över tillgängliga självroller.\n\n"
|
||||
" OBS: Rollen är skiftlägeskänslig!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
msgstr "Jag kan inte låta dig lägga till {role.name} som en självroll eftersom den rollen är högre än eller lika med din högsta roll i Discord-hierarkin."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
msgstr "Rollen \"{role.name}\" är redan en självroll."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
msgstr "Lade till {count} självroller."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
msgstr "Lade till 1 självroll."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\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 "\n"
|
||||
" Ta bort en roll eller ett urval av roller från listan över tillgängliga självroller.\n\n"
|
||||
" OBS: Rollen är skiftlägeskänslig!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
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 "Jag kan inte låta dig ta bort {role.name} från att vara en självroll eftersom den rollen är högre än eller lika med din högsta roll i Discord-hierarkin."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr "Tog bort {count} självroller."
|
||||
|
||||
#: 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 ""
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr "Tog bort 1 självroll."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr "Rensa listan över tillgängliga självroller för denna server."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr "Det finns för närvarande inga självroller."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr "Är du säker på att du vill rensa serverns självrollista?"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr "Du tog för lång tid att svara."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Jag kan inte rensa självrollerna eftersom självrollen'{role.name}' är högre än eller lika med din högsta roll i Discord-hierarkin."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr "Självrollistan rensad."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr "Inga ändringar har gjorts."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Lås en bot till sina nuvarande servrar."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Botten är inte längre serverlåst."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Botten är nu serverlåst."
|
||||
|
||||
#: redbot/cogs/admin/announcer.py:68
|
||||
msgid "I could not announce to the following server: "
|
||||
msgstr ""
|
||||
msgstr "Jag kunde inte meddela till följande server: "
|
||||
|
||||
#: redbot/cogs/admin/announcer.py:70
|
||||
msgid "I could not announce to the following servers: "
|
||||
msgstr ""
|
||||
msgstr "Jag kunde inte meddela till följande servrar: "
|
||||
|
||||
#: redbot/cogs/admin/converters.py:12
|
||||
msgid "The Admin cog is not loaded."
|
||||
@@ -288,5 +349,5 @@ msgstr "Admin cog är inte laddad."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
msgstr "Rollen \"{role_name}\" är inte en giltig självroll."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Turkish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: tr_TR\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Bir şey denemeye çalıştım ancak Discord izinlerim yeterli olmadı. Komutunuz işleme koyulamadı."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "{member.display_name} kullanıcısına {role.name} veremiyorum çünkü bu rol Discord hiyerarşisinde rolüme eşit veya daha yüksek."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "{member.display_name} kullanıcısından {role.name} rolünü kaldıramıyorum çünkü bu rol Discord hiyerarşisinde rolüme eşit veya daha yüksek."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
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} kullanıcısının rolünü düzenleyemiyorum, çünkü bu rol Discord hiyerarşisinde rolüme eşit veya daha yüksek."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 "{member.display_name} kullanıcısına {role.name} rolünü verilemedi çünkü bu rol discord hiyerarşisinde senin mevcut rolünden daha yüksek durumda."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 "{member.display_name} kullanıcısının {role.name} rolünü silmene müsaade edemem çünkü bu rol mevcut rolünden daha yüksek durumda."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
msgid "I can not let you edit {role.name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "{role.name} rolünü düzenlemene müsaade edemem çünkü bu rol mevcut rolünden daha yüksek durumda."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr "Bunu yapabilmek için \"Rolleri Yönet\" iznine ihtiyacım var."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Zaten şu anda bir duyuru yapmaktayım. Başka bir duyuru yapmak istiyorsanız lütfen bu komutu kullanın: `{prefix}announce cancel`."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Sunucu yönetimiyle ilgili ayarlar."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name} kullanıcısı {role.name} rolüne zaten sahip."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "{role.name} rolünü {member.display_name} kullanıcısına başarılı bir şekilde ekledim."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name} kullanıcısı {role.name} rolüne sahip değil."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "{role.name} rolünü {member.display_name} kullanıcısından başarılı bir şekilde kaldırdım"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -85,7 +85,7 @@ msgstr "\n"
|
||||
" Kullanıcı boş bırakılırsa, varsayılan olarak komutu yazan kabul edilir.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -98,12 +98,12 @@ msgstr "\n"
|
||||
" Kullanıcı boş bırakılırsa, varsayılan olarak komutu yazan kabul edilir.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Rol ayarlarını düzenle."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -123,11 +123,11 @@ msgstr "\n"
|
||||
" `[p]editrole colour \"Rol adı\" #ff0000`\n"
|
||||
" `[p]editrole colour Test #ff9900` "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Tamamlandı."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -141,54 +141,48 @@ msgstr "\n"
|
||||
" Örneğin:\n"
|
||||
" `[p]editrole name \"Rol adı\" Test` "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Botun bulunduğu tüm sunuculara duyuru geçer."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "Duyuru başladı."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Şu an yapılan duyuruyu iptal eder."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "Şu anda yapılan bir duyuru mevcut değil."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "Şu an yapılan duyuru iptal edildi."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "Anonsların sunucuya nasıl gönderileceğini belirleyin."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Change the channel where the bot will send announcements.\n\n"
|
||||
" If channel is left blank it defaults to the current channel.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" Botun duyuru göndereceği kanalı değiştir.\n\n"
|
||||
" Boş bırakılırsa şu anki kanal kabul edilir.\n"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "{channel.mention} duyuru kanalı olarak ayarlandı"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr "Kanalı duyuru ayarından kaldır."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -201,7 +195,7 @@ msgstr "\n"
|
||||
" NOT: Rol büyük küçük harf duyarlıdır!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -214,7 +208,7 @@ msgstr "\n"
|
||||
" NOT: Rol büyük küçük harf duyarlıdır!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -227,7 +221,7 @@ msgstr "\n"
|
||||
" NOT: Rol büyük küçük harf duyarlıdır!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
@@ -236,71 +230,106 @@ msgstr "\n"
|
||||
" Kullanılabilir tüm selfroleleri listeler.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "Kullanılabilir Selfroleler:\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr "Kişisel rolleri düzenle."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\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 ""
|
||||
msgstr "\n"
|
||||
" Kullanılabilir selfroleler listesine bir veya daha fazla rol ekle.\n\n"
|
||||
" NOT: Rol büyük küçük harf duyarlıdır!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "{role.name} kullanıcısına belirttiğin rolü vermene müsaade edemem çünkü bu rol mevcut rolünden daha yüksek."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
msgstr "\"{role.name}\" zaten bir selfrole."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
msgstr "{count} selfrole eklendi."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
msgstr "1 selfrole eklendi."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\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 "\n"
|
||||
" Kullanılabilir selfroleler listesinden bir veya daha fazla rol çıkar.\n\n"
|
||||
" NOT: Rol büyük küçük harf duyarlıdır!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "{role.name} kullanıcısından belirttiğin rolü silmene müsaade edemem çünkü bu rol mevcut rolünden daha yüksek."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
msgstr "{count} selfrole kaldırıldı."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
msgstr "1 selfrole kaldırıldı."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr "Bu sunucu için eklenebilir rol listesini temizleyin."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr "Şu anda eklenebilir rol yok."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr "Sunucudaki tüm eklenebilir rolleri silmek istediğine emin misin?"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr "Cevap vermeniz çok uzun sürdü."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "Eklenebilir rollerden {role.name}' rolünü silemiyorum çünkü Discord hiyerarşisinde benden daha yüksek bir rol."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr "Eklenebilir roller temizlendi."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr "Herhangi bir değişiklik yapılmadı."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Botu şu an bulunduğu sunucularda kilitler."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr "Botun sunucu kilidi aktif değil."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr "Botun sunucu kilidi aktif."
|
||||
|
||||
@@ -318,5 +347,5 @@ msgstr "The Admin eklentisi yüklenmedi."
|
||||
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
msgstr "\"{role_name}\" geçerli bir selfrole değil."
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: uk_UA\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -81,7 +81,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -90,12 +90,12 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -108,11 +108,11 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -122,51 +122,48 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -175,7 +172,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -184,7 +181,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -193,24 +190,24 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -218,23 +215,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -242,28 +239,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: vi_VN\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "Lệnh của bạn không được thực hiện thành công vì discord đã từ chối quyền của tôi."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 "Không thể đưa {role.name} cho {member.display_name} vì role đó có quyền cao hơn hoặc bằng role cao nhất của tôi trong Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "Không thể xoá {role.name} cho {member.display_name} vì role đó có quyền cao hơn hoặc bằng role cao nhất của tôi trong Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
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 "Không thể chỉnh sửa {role.name} vì role đó có quyền cao hơn hoặc bằng role cao nhất của tôi trong Discord."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "Tôi đang thông báo lúc này. Nếu bạn muốn làm một thông báo khác hãy sử dụng lệnh `{prefix}announce cancel` trước."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Một tập hợp các dụng cụ cho việc quản lý server."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "Đã thêm thành công vai trò{role.name} cho {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "Đã xóa thành công vai trò{role.name} từ {member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -81,7 +81,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -90,12 +90,12 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "Chỉnh quyền của vai trò."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -108,11 +108,11 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "Xong!"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -122,51 +122,48 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "Thông báo một thông báo tới tất cả các server mà con bot ở trong."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "Sự kiện {0} đã được bắt đầu."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "Hủy một thông báo đang chạy."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "Thông báo đang chạy đã được hủy."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "Kênh thông báo đã được đổi sang {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -175,7 +172,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -184,7 +181,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -193,7 +190,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
@@ -202,18 +199,18 @@ msgstr "\n"
|
||||
" Hiển thị hết tất cả các vai trò tự thêm.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr "Vai trò tự thêm:\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -221,23 +218,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -245,28 +242,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr "Khóa lệnh bot cho server hiện tại."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: zh_CN\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "我试图做一些Discord没有允许我做的事情。你的命令无法完成"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
msgid "I can not give {role.name} to {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
|
||||
msgstr "我不能将 {role.name} 给 {member.display_name} ,因为这个角色高于或等于我在Discord等级中的最高角色"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
msgid "I can not remove {role.name} from {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
|
||||
msgstr "我不能将 {role.name} 从 {member.display_name} 中移除,因为这个角色高于或等于我在Discord等级中的最高角色"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "我不能编辑 {role.name} ,因为该角色高于或等于我在Discord等级中的最高角色"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
msgid "I can not let you give {role.name} to {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "我不能让你把 {role.name} 给 {member.display_name} ,因为这个角色高于或等于你在 Discord 等级中的最高角色"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
msgid "I can not let you remove {role.name} from {member.display_name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "我不能让你把这个{role.name}从{member.display_name}去掉应为这个role比你的最高的role高或者一样高"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
msgid "I can not let you edit {role.name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "我不能让你改变{role.name}应为这个role比你的最高的role高或者一样高"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr "我需要“管理角色”权限才能做到这一点"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "我已经在宣布一段话。要是你想做一个不同的宣布请用`{prefix}announce cancel` 先"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "一些管理server的东西"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name}已经有{role.name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "我成功的的加了{role.name}到{member.display_name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name}没有{role.name}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "我成功的从{member.display_name}去掉了{role.name}."
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -85,7 +85,7 @@ msgstr "\n"
|
||||
" 要是没有说出人,就会被加到用这个命令的人\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -99,12 +99,12 @@ msgstr "\n"
|
||||
"要是没有说出人加给用命令的人.\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "编辑角色设置"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -115,13 +115,20 @@ msgid "\n"
|
||||
" `[p]editrole colour \"The Transistor\" #ff0000`\n"
|
||||
" `[p]editrole colour Test #ff9900`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr " 编辑身份证颜色\n\n"
|
||||
" 如果角色包含空格,请使用双引号。\n"
|
||||
" 颜色必须是十六进制格式。\n"
|
||||
" [在线取色器](http://www.w3schools.com/colors/colors_picker.asp)\n\n"
|
||||
" 例子:\n"
|
||||
" `[p]editrole colour \"The Transistor\" #ff0000`\n"
|
||||
" `[p]editrole colour Test #ff9900`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "完成。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -129,56 +136,54 @@ msgid "\n"
|
||||
" Example:\n"
|
||||
" `[p]editrole name \"The Transistor\" Test`\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr " 编辑角色名称。\n\n"
|
||||
" 如果角色名称包含空格,请使用双引号。\n\n"
|
||||
" 例子:\n"
|
||||
" `[p]editrole name \"The Transistor\" Test`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr ""
|
||||
msgstr "已向机器人所在的所有服务器发送公告。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "公告开始了"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr ""
|
||||
msgstr "取消了一个运行中的公告。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "目前没有正在运行的公告"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "目前公告已被取消"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr "更改了公会中通知的发送方式。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Change the channel where the bot will send announcements.\n\n"
|
||||
" If channel is left blank it defaults to the current channel.\n"
|
||||
" "
|
||||
msgstr "\n"
|
||||
" 更改机器人发送公告的频道\n\n"
|
||||
" 如果频道留空,则默认设置为当前频道\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr "公告频道已设置为 {channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr "取消公告频道"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -191,7 +196,7 @@ msgstr "\n"
|
||||
" 注意:角色是区分大小写的\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -204,7 +209,7 @@ msgstr "\n"
|
||||
" 注意:角色是区分大小写的!\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -213,24 +218,26 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
msgstr " 列出所有可用的角色。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr ""
|
||||
msgstr "可用的角色:\n"
|
||||
"{selfroles}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
msgstr "管理自我角色"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -238,23 +245,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
msgstr "无法添加[role.name],因为该角色高于或等于你的角色。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
msgstr "你已经获得\"[role.name]\"权限。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
msgstr "成功添加 {count} 。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
msgstr "成功添加了一个角色。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -262,44 +269,73 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/announcer.py:68
|
||||
msgid "I could not announce to the following server: "
|
||||
msgstr ""
|
||||
msgstr "我无法向以下服务器发送公告:"
|
||||
|
||||
#: redbot/cogs/admin/announcer.py:70
|
||||
msgid "I could not announce to the following servers: "
|
||||
msgstr ""
|
||||
msgstr "我无法向以下服务器发送公告:"
|
||||
|
||||
#: redbot/cogs/admin/converters.py:12
|
||||
msgid "The Admin cog is not loaded."
|
||||
msgstr ""
|
||||
msgstr "admin cog未加载"
|
||||
|
||||
#: redbot/cogs/admin/converters.py:21
|
||||
msgid "The role \"{role_name}\" is not a valid selfrole."
|
||||
msgstr ""
|
||||
msgstr "\"[role_name]\"不是一个有效的角色"
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Traditional, Hong Kong\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: zh_HK\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -81,7 +81,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -90,12 +90,12 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -108,11 +108,11 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -122,51 +122,48 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -175,7 +172,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -184,7 +181,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -193,24 +190,24 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -218,23 +215,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -242,28 +239,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-01 22:38+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -15,64 +15,64 @@ msgstr ""
|
||||
"X-Crowdin-File-ID: 42\n"
|
||||
"Language: zh_TW\n"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:18
|
||||
#: redbot/cogs/admin/admin.py:19
|
||||
msgid "I attempted to do something that Discord denied me permissions for. Your command failed to successfully complete."
|
||||
msgstr "我嘗試做了某些事情,但因權限不足而被 Discord 拒絕。您的指令無法完成。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:23
|
||||
#: redbot/cogs/admin/admin.py:24
|
||||
msgid "I can not give {role.name} to {member.display_name} because that role is higher than or equal to my highest role in the Discord hierarchy."
|
||||
msgstr "我無法將 {role.name} 給予 {member.display_name},因為在 Discord 架構中此身份組高於或等於我最高的身分組。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:29
|
||||
#: redbot/cogs/admin/admin.py:30
|
||||
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 "我無法從 {member.display_name} 移除 {role.name},因為在 Discord 架構中此身份組高於或等於我最高的身分組。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:35
|
||||
#: redbot/cogs/admin/admin.py:36
|
||||
msgid "I can not edit {role.name} because that role is higher than my or equal to highest role in the Discord hierarchy."
|
||||
msgstr "我無法編輯 {role.name},因為在 Discord 架構中此身份組高於或等於我最高的身分組。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:41
|
||||
#: redbot/cogs/admin/admin.py:42
|
||||
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 "我無法讓你給予 {member.display_name} {role.name} 身分組,因為該身分組位階高於或等於你最高的Discord 身分組。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:47
|
||||
#: redbot/cogs/admin/admin.py:48
|
||||
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 "我無法讓你從 {member.display_name} 移除 {role.name} 身分組,因為該身分組位階高於或等於你最高的Discord 身分組。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:53
|
||||
#: redbot/cogs/admin/admin.py:54
|
||||
msgid "I can not let you edit {role.name} because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr "我無法讓你編輯 {role.name} 身分組,因為該身分組位階高於或等於你最高的Discord 身分組。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:59
|
||||
#: redbot/cogs/admin/admin.py:60
|
||||
msgid "I need the \"Manage Roles\" permission to do that."
|
||||
msgstr "我需要管理權限來完成。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:61
|
||||
#: redbot/cogs/admin/admin.py:62
|
||||
msgid "I am already announcing something. If you would like to make a different announcement please use `{prefix}announce cancel` first."
|
||||
msgstr "我已經發過公告。如果您想要發出不同的公告,請先執行`{prefix}announce cancel`。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:71
|
||||
#: redbot/cogs/admin/admin.py:72
|
||||
#, docstring
|
||||
msgid "A collection of server administration utilities."
|
||||
msgstr "Discord伺服器管理工具"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:164
|
||||
#: redbot/cogs/admin/admin.py:158
|
||||
msgid "{member.display_name} already has the role {role.name}."
|
||||
msgstr "{member.display_name} 已擁有 {role.name} 身分組。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:184
|
||||
#: redbot/cogs/admin/admin.py:178
|
||||
msgid "I successfully added {role.name} to {member.display_name}"
|
||||
msgstr "我已成功為 {role.name} 添加 {member.display_name} 身分組。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:194
|
||||
#: redbot/cogs/admin/admin.py:188
|
||||
msgid "{member.display_name} does not have the role {role.name}."
|
||||
msgstr "{member.display_name} 並未擁有 {role.name} 身分組。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:214
|
||||
#: redbot/cogs/admin/admin.py:208
|
||||
msgid "I successfully removed {role.name} from {member.display_name}"
|
||||
msgstr "我已成功為 {role.name} 移除 {member.display_name} 身分組。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:225
|
||||
#: redbot/cogs/admin/admin.py:219
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role to a user.\n\n"
|
||||
@@ -85,7 +85,7 @@ msgstr "\n"
|
||||
" 如果使用者是留空的,則預設是給當前的指令操作者。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:241
|
||||
#: redbot/cogs/admin/admin.py:235
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role from a user.\n\n"
|
||||
@@ -98,12 +98,12 @@ msgstr "\n"
|
||||
" 如果使用者是留空的,則預設是給當前的指令操作者。\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:255
|
||||
#: redbot/cogs/admin/admin.py:249
|
||||
#, docstring
|
||||
msgid "Edit role settings."
|
||||
msgstr "編輯身分組設定。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:262
|
||||
#: redbot/cogs/admin/admin.py:256
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's colour.\n\n"
|
||||
@@ -124,11 +124,11 @@ msgstr "\n"
|
||||
" `[p]editrole colour Test #ff9900`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:291 redbot/cogs/admin/admin.py:324
|
||||
#: redbot/cogs/admin/admin.py:285 redbot/cogs/admin/admin.py:318
|
||||
msgid "Done."
|
||||
msgstr "完成。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:295
|
||||
#: redbot/cogs/admin/admin.py:289
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Edit a role's name.\n\n"
|
||||
@@ -143,51 +143,48 @@ msgstr "\n"
|
||||
" `[p]editrole name \"The Transistor\" Test`\n"
|
||||
" "
|
||||
|
||||
#: redbot/cogs/admin/admin.py:329
|
||||
#: redbot/cogs/admin/admin.py:323
|
||||
#, docstring
|
||||
msgid "Announce a message to all servers the bot is in."
|
||||
msgstr "向機器人所在的所有伺服器宣布一則訊息。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:336
|
||||
#: redbot/cogs/admin/admin.py:330
|
||||
msgid "The announcement has begun."
|
||||
msgstr "已經開始宣布。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:343
|
||||
#: redbot/cogs/admin/admin.py:337
|
||||
#, docstring
|
||||
msgid "Cancel a running announce."
|
||||
msgstr "取消進行中的宣布。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:345
|
||||
#: redbot/cogs/admin/admin.py:339
|
||||
msgid "There is no currently running announcement."
|
||||
msgstr "目前沒有正在執行的宣布。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#: redbot/cogs/admin/admin.py:342
|
||||
msgid "The current announcement has been cancelled."
|
||||
msgstr "已取消目前的宣布。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:354
|
||||
#: redbot/cogs/admin/admin.py:348
|
||||
#, docstring
|
||||
msgid "Change how announcements are sent in this guild."
|
||||
msgstr ""
|
||||
msgstr "更改群組發送公告的方式。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:359
|
||||
#: redbot/cogs/admin/admin.py:353
|
||||
#, docstring
|
||||
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"
|
||||
" "
|
||||
msgid "Change the channel where the bot will send announcements."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:368
|
||||
#: redbot/cogs/admin/admin.py:356
|
||||
msgid "The announcement channel has been set to {channel.mention}"
|
||||
msgstr ""
|
||||
msgstr "公告文字頻道設為{channel.mention}"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:373
|
||||
#: redbot/cogs/admin/admin.py:361
|
||||
#, docstring
|
||||
msgid "Unsets the channel for announcements."
|
||||
msgstr ""
|
||||
msgstr "移除設置的公告頻道。"
|
||||
|
||||
#: redbot/cogs/admin/admin.py:398
|
||||
#: redbot/cogs/admin/admin.py:386
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add or remove a selfrole from yourself.\n\n"
|
||||
@@ -196,7 +193,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:411
|
||||
#: redbot/cogs/admin/admin.py:399
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a selfrole to yourself.\n\n"
|
||||
@@ -205,7 +202,7 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:422
|
||||
#: redbot/cogs/admin/admin.py:410
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a selfrole from yourself.\n\n"
|
||||
@@ -214,24 +211,24 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:433
|
||||
#: redbot/cogs/admin/admin.py:421
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Lists all available selfroles.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:443
|
||||
#: redbot/cogs/admin/admin.py:431
|
||||
msgid "Available Selfroles:\n"
|
||||
"{selfroles}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:449
|
||||
#: redbot/cogs/admin/admin.py:437
|
||||
#, docstring
|
||||
msgid "Manage selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:454
|
||||
#: redbot/cogs/admin/admin.py:442
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Add a role, or a selection of roles, to the list of available selfroles.\n\n"
|
||||
@@ -239,23 +236,23 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:463
|
||||
#: redbot/cogs/admin/admin.py:451
|
||||
msgid "I cannot let you add {role.name} as a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:473
|
||||
#: redbot/cogs/admin/admin.py:461
|
||||
msgid "The role \"{role.name}\" is already a selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:479
|
||||
#: redbot/cogs/admin/admin.py:467
|
||||
msgid "Added {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:481
|
||||
#: redbot/cogs/admin/admin.py:469
|
||||
msgid "Added 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:487
|
||||
#: redbot/cogs/admin/admin.py:475
|
||||
#, docstring
|
||||
msgid "\n"
|
||||
" Remove a role, or a selection of roles, from the list of available selfroles.\n\n"
|
||||
@@ -263,28 +260,57 @@ msgid "\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
#: redbot/cogs/admin/admin.py:484
|
||||
msgid "I cannot let you remove {role.name} from being a selfrole because that role is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
#: redbot/cogs/admin/admin.py:494
|
||||
msgid "Removed {count} selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:508
|
||||
#: redbot/cogs/admin/admin.py:496
|
||||
msgid "Removed 1 selfrole."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:502
|
||||
#, docstring
|
||||
msgid "Clear the list of available selfroles for this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:506
|
||||
msgid "There are currently no selfroles."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:509
|
||||
msgid "Are you sure you want to clear this server's selfrole list?"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:515
|
||||
msgid "You took too long to respond."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:524
|
||||
msgid "I cannot clear the selfroles because the selfrole '{role.name}' is higher than or equal to your highest role in the Discord hierarchy."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:530
|
||||
msgid "Selfrole list cleared."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:532
|
||||
msgid "No changes have been made."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:537
|
||||
#, docstring
|
||||
msgid "Lock a bot to its current servers only."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:520
|
||||
#: redbot/cogs/admin/admin.py:542
|
||||
msgid "The bot is no longer serverlocked."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/admin/admin.py:522
|
||||
#: redbot/cogs/admin/admin.py:544
|
||||
msgid "The bot is now serverlocked."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-03 01:50+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Afrikaans\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -26,164 +26,164 @@ msgid "Create aliases for commands.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:203
|
||||
#: redbot/cogs/alias/alias.py:180
|
||||
msgid "Aliases:\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:205
|
||||
#: redbot/cogs/alias/alias.py:182
|
||||
msgid "\n\n"
|
||||
"Page {page}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:215
|
||||
#: redbot/cogs/alias/alias.py:192
|
||||
#, docstring
|
||||
msgid "Manage command aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:220
|
||||
#: redbot/cogs/alias/alias.py:197
|
||||
#, docstring
|
||||
msgid "Manage global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:227
|
||||
#: redbot/cogs/alias/alias.py:204
|
||||
#, docstring
|
||||
msgid "Add an alias for a command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:232
|
||||
#: redbot/cogs/alias/alias.py:209
|
||||
msgid "You attempted to create a new alias with the name {name} but that name is already a command on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:243
|
||||
#: redbot/cogs/alias/alias.py:220
|
||||
msgid "You attempted to create a new alias with the name {name} but that alias already exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:254
|
||||
#: redbot/cogs/alias/alias.py:231
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:266 redbot/cogs/alias/alias.py:325
|
||||
#: redbot/cogs/alias/alias.py:243 redbot/cogs/alias/alias.py:302
|
||||
msgid "You attempted to create a new alias for a command that doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:280
|
||||
#: redbot/cogs/alias/alias.py:257
|
||||
msgid "A new alias with the trigger `{name}` has been created."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:286
|
||||
#: redbot/cogs/alias/alias.py:263
|
||||
#, docstring
|
||||
msgid "Add a global alias for a command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:291
|
||||
#: redbot/cogs/alias/alias.py:268
|
||||
msgid "You attempted to create a new global alias with the name {name} but that name is already a command on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:302
|
||||
#: redbot/cogs/alias/alias.py:279
|
||||
msgid "You attempted to create a new global alias with the name {name} but that alias already exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:313
|
||||
#: redbot/cogs/alias/alias.py:290
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:336
|
||||
#: redbot/cogs/alias/alias.py:313
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:345
|
||||
#: redbot/cogs/alias/alias.py:322
|
||||
#, docstring
|
||||
msgid "Edit an existing alias in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:350 redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:327 redbot/cogs/alias/alias.py:362
|
||||
msgid "The alias with the name {name} does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:356 redbot/cogs/alias/alias.py:391
|
||||
#: redbot/cogs/alias/alias.py:333 redbot/cogs/alias/alias.py:368
|
||||
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
|
||||
#: redbot/cogs/alias/alias.py:342 redbot/cogs/alias/alias.py:375
|
||||
msgid "The alias with the trigger `{name}` has been edited sucessfully."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:372 redbot/cogs/alias/alias.py:405
|
||||
#: redbot/cogs/alias/alias.py:349 redbot/cogs/alias/alias.py:382
|
||||
msgid "Alias with the name `{name}` was not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:380
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#, docstring
|
||||
msgid "Edit an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:412
|
||||
#: redbot/cogs/alias/alias.py:389
|
||||
#, docstring
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
#: redbot/cogs/alias/alias.py:394
|
||||
msgid "No such alias exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#: redbot/cogs/alias/alias.py:398
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
#: redbot/cogs/alias/alias.py:403
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#: redbot/cogs/alias/alias.py:414
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:439 redbot/cogs/alias/alias.py:471
|
||||
#: redbot/cogs/alias/alias.py:416 redbot/cogs/alias/alias.py:448
|
||||
msgid "There are no aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:444 redbot/cogs/alias/alias.py:459
|
||||
#: redbot/cogs/alias/alias.py:421 redbot/cogs/alias/alias.py:436
|
||||
msgid "Alias with the name `{name}` was successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:447 redbot/cogs/alias/alias.py:462
|
||||
#: redbot/cogs/alias/alias.py:424 redbot/cogs/alias/alias.py:439
|
||||
msgid "Alias with name `{name}` was not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#: redbot/cogs/alias/alias.py:429
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#: redbot/cogs/alias/alias.py:445
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
#: redbot/cogs/alias/alias.py:457
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
#: redbot/cogs/alias/alias_entry.py:197
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
#: redbot/cogs/alias/alias_entry.py:204
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-03 01:50+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -26,164 +26,164 @@ msgid "Create aliases for commands.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:203
|
||||
#: redbot/cogs/alias/alias.py:180
|
||||
msgid "Aliases:\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:205
|
||||
#: redbot/cogs/alias/alias.py:182
|
||||
msgid "\n\n"
|
||||
"Page {page}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:215
|
||||
#: redbot/cogs/alias/alias.py:192
|
||||
#, docstring
|
||||
msgid "Manage command aliases."
|
||||
msgstr "إدارة الأسماء المستعارة للأوامر."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:220
|
||||
#: redbot/cogs/alias/alias.py:197
|
||||
#, docstring
|
||||
msgid "Manage global aliases."
|
||||
msgstr "إدارة الأسماء المستعارة العالمية."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:227
|
||||
#: redbot/cogs/alias/alias.py:204
|
||||
#, docstring
|
||||
msgid "Add an alias for a command."
|
||||
msgstr "إضافة اسم مستعار لأمر ما."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:232
|
||||
#: redbot/cogs/alias/alias.py:209
|
||||
msgid "You attempted to create a new alias with the name {name} but that name is already a command on this bot."
|
||||
msgstr "لقد حاولت إنشاء اسم مستعار جديد باسم {name} ولكن هذا الاسم هو بالفعل أمر على هذا بوت."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:243
|
||||
#: redbot/cogs/alias/alias.py:220
|
||||
msgid "You attempted to create a new alias with the name {name} but that alias already exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:254
|
||||
#: redbot/cogs/alias/alias.py:231
|
||||
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 "لقد حاولت إنشاء اسم مستعار جديد باسم {name} ولكن هذا الاسم اسم مستعار غير صالح. الأسماء المستعارة قد لا تحتوي على مسافات."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:266 redbot/cogs/alias/alias.py:325
|
||||
#: redbot/cogs/alias/alias.py:243 redbot/cogs/alias/alias.py:302
|
||||
msgid "You attempted to create a new alias for a command that doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:280
|
||||
#: redbot/cogs/alias/alias.py:257
|
||||
msgid "A new alias with the trigger `{name}` has been created."
|
||||
msgstr "تم إنشاء اسم مستعار جديد مع المشغل `{name}`."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:286
|
||||
#: redbot/cogs/alias/alias.py:263
|
||||
#, docstring
|
||||
msgid "Add a global alias for a command."
|
||||
msgstr "إضافة اسم مستعار عام لأمر ما."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:291
|
||||
#: redbot/cogs/alias/alias.py:268
|
||||
msgid "You attempted to create a new global alias with the name {name} but that name is already a command on this bot."
|
||||
msgstr "لقد حاولت إنشاء اسم مستعار عالمي جديد باسم {name} ولكن هذا الاسم هو بالفعل أمر على هذا بوت."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:302
|
||||
#: redbot/cogs/alias/alias.py:279
|
||||
msgid "You attempted to create a new global alias with the name {name} but that alias already exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:313
|
||||
#: redbot/cogs/alias/alias.py:290
|
||||
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 "لقد حاولت إنشاء اسم مستعار عالمي جديد باسم {name} ولكن هذا الاسم اسم مستعار غير صالح. أسماء الاسم المستعار قد لا تحتوي على مسافات."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:336
|
||||
#: redbot/cogs/alias/alias.py:313
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
msgstr "تم إنشاء اسم مستعار عالمي جديد مع مشغل{name}`."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:345
|
||||
#: redbot/cogs/alias/alias.py:322
|
||||
#, docstring
|
||||
msgid "Edit an existing alias in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:350 redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:327 redbot/cogs/alias/alias.py:362
|
||||
msgid "The alias with the name {name} does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:356 redbot/cogs/alias/alias.py:391
|
||||
#: redbot/cogs/alias/alias.py:333 redbot/cogs/alias/alias.py:368
|
||||
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
|
||||
#: redbot/cogs/alias/alias.py:342 redbot/cogs/alias/alias.py:375
|
||||
msgid "The alias with the trigger `{name}` has been edited sucessfully."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:372 redbot/cogs/alias/alias.py:405
|
||||
#: redbot/cogs/alias/alias.py:349 redbot/cogs/alias/alias.py:382
|
||||
msgid "Alias with the name `{name}` was not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:380
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#, docstring
|
||||
msgid "Edit an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:412
|
||||
#: redbot/cogs/alias/alias.py:389
|
||||
#, docstring
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr "حاول تنفيذ المساعدة للقيادة الأساسية للإسم المستعار."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
#: redbot/cogs/alias/alias.py:394
|
||||
msgid "No such alias exists."
|
||||
msgstr "لا يوجد مثل هذا المستخدم"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#: redbot/cogs/alias/alias.py:398
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr "إظهار ما هو الأمر الذي ينفذه الاسم المستعار."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
#: redbot/cogs/alias/alias.py:403
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr "`{alias_name}` الاسم المستعار سوف ينفذ الأمر `{command}`"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr "لا يوجد اسم مستعار باسم `{name}`"
|
||||
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#: redbot/cogs/alias/alias.py:414
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
msgstr "حذف اسم مستعار موجود على هذا السيرفر."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:439 redbot/cogs/alias/alias.py:471
|
||||
#: redbot/cogs/alias/alias.py:416 redbot/cogs/alias/alias.py:448
|
||||
msgid "There are no aliases on this server."
|
||||
msgstr "لا توجد أسماء مستعارة على هذا السيرفر."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:444 redbot/cogs/alias/alias.py:459
|
||||
#: redbot/cogs/alias/alias.py:421 redbot/cogs/alias/alias.py:436
|
||||
msgid "Alias with the name `{name}` was successfully deleted."
|
||||
msgstr "تم حذف الاسم المستعار باسم `{name}` بنجاح."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:447 redbot/cogs/alias/alias.py:462
|
||||
#: redbot/cogs/alias/alias.py:424 redbot/cogs/alias/alias.py:439
|
||||
msgid "Alias with name `{name}` was not found."
|
||||
msgstr "لم يتم العثور على الاسم المستعار `{name}`."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#: redbot/cogs/alias/alias.py:429
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr "يحذف اسم مستعار عالمي قائم."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#: redbot/cogs/alias/alias.py:445
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr "قائمة الأسماء المستعارة المتوفرة على هذا السيرفر."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr "قائمة الأسماء المستعارة العامة المتاحة على هذا البوت."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
#: redbot/cogs/alias/alias.py:457
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
#: redbot/cogs/alias/alias_entry.py:197
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr "يجب أن يتم تحديد الحجج برقم."
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
#: redbot/cogs/alias/alias_entry.py:204
|
||||
msgid "Arguments must be sequential. Missing arguments: "
|
||||
msgstr "يجب أن تكون الحجج متتابعة. الحجج المفقودة: "
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: red-discordbot\n"
|
||||
"POT-Creation-Date: 2021-09-03 01:50+0000\n"
|
||||
"POT-Creation-Date: 2022-04-03 01:21+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: redgettext 3.3\n"
|
||||
"Generated-By: redgettext 3.4.2\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: red-discordbot\n"
|
||||
"X-Crowdin-Project-ID: 289505\n"
|
||||
@@ -26,164 +26,164 @@ msgid "Create aliases for commands.\n\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:203
|
||||
#: redbot/cogs/alias/alias.py:180
|
||||
msgid "Aliases:\n"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:205
|
||||
#: redbot/cogs/alias/alias.py:182
|
||||
msgid "\n\n"
|
||||
"Page {page}/{total}"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:215
|
||||
#: redbot/cogs/alias/alias.py:192
|
||||
#, docstring
|
||||
msgid "Manage command aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:220
|
||||
#: redbot/cogs/alias/alias.py:197
|
||||
#, docstring
|
||||
msgid "Manage global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:227
|
||||
#: redbot/cogs/alias/alias.py:204
|
||||
#, docstring
|
||||
msgid "Add an alias for a command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:232
|
||||
#: redbot/cogs/alias/alias.py:209
|
||||
msgid "You attempted to create a new alias with the name {name} but that name is already a command on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:243
|
||||
#: redbot/cogs/alias/alias.py:220
|
||||
msgid "You attempted to create a new alias with the name {name} but that alias already exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:254
|
||||
#: redbot/cogs/alias/alias.py:231
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:266 redbot/cogs/alias/alias.py:325
|
||||
#: redbot/cogs/alias/alias.py:243 redbot/cogs/alias/alias.py:302
|
||||
msgid "You attempted to create a new alias for a command that doesn't exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:280
|
||||
#: redbot/cogs/alias/alias.py:257
|
||||
msgid "A new alias with the trigger `{name}` has been created."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:286
|
||||
#: redbot/cogs/alias/alias.py:263
|
||||
#, docstring
|
||||
msgid "Add a global alias for a command."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:291
|
||||
#: redbot/cogs/alias/alias.py:268
|
||||
msgid "You attempted to create a new global alias with the name {name} but that name is already a command on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:302
|
||||
#: redbot/cogs/alias/alias.py:279
|
||||
msgid "You attempted to create a new global alias with the name {name} but that alias already exists."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:313
|
||||
#: redbot/cogs/alias/alias.py:290
|
||||
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 ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:336
|
||||
#: redbot/cogs/alias/alias.py:313
|
||||
msgid "A new global alias with the trigger `{name}` has been created."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:345
|
||||
#: redbot/cogs/alias/alias.py:322
|
||||
#, docstring
|
||||
msgid "Edit an existing alias in this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:350 redbot/cogs/alias/alias.py:385
|
||||
#: redbot/cogs/alias/alias.py:327 redbot/cogs/alias/alias.py:362
|
||||
msgid "The alias with the name {name} does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:356 redbot/cogs/alias/alias.py:391
|
||||
#: redbot/cogs/alias/alias.py:333 redbot/cogs/alias/alias.py:368
|
||||
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
|
||||
#: redbot/cogs/alias/alias.py:342 redbot/cogs/alias/alias.py:375
|
||||
msgid "The alias with the trigger `{name}` has been edited sucessfully."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:372 redbot/cogs/alias/alias.py:405
|
||||
#: redbot/cogs/alias/alias.py:349 redbot/cogs/alias/alias.py:382
|
||||
msgid "Alias with the name `{name}` was not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:380
|
||||
#: redbot/cogs/alias/alias.py:357
|
||||
#, docstring
|
||||
msgid "Edit an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:412
|
||||
#: redbot/cogs/alias/alias.py:389
|
||||
#, docstring
|
||||
msgid "Try to execute help for the base command of the alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:417
|
||||
#: redbot/cogs/alias/alias.py:394
|
||||
msgid "No such alias exists."
|
||||
msgstr "Този псевдоним не съществува."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:421
|
||||
#: redbot/cogs/alias/alias.py:398
|
||||
#, docstring
|
||||
msgid "Show what command the alias executes."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:426
|
||||
#: redbot/cogs/alias/alias.py:403
|
||||
msgid "The `{alias_name}` alias will execute the command `{command}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
#: redbot/cogs/alias/alias.py:408
|
||||
msgid "There is no alias with the name `{name}`"
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:437
|
||||
#: redbot/cogs/alias/alias.py:414
|
||||
#, docstring
|
||||
msgid "Delete an existing alias on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:439 redbot/cogs/alias/alias.py:471
|
||||
#: redbot/cogs/alias/alias.py:416 redbot/cogs/alias/alias.py:448
|
||||
msgid "There are no aliases on this server."
|
||||
msgstr "Няма използвани псевдоними на този сървър."
|
||||
|
||||
#: redbot/cogs/alias/alias.py:444 redbot/cogs/alias/alias.py:459
|
||||
#: redbot/cogs/alias/alias.py:421 redbot/cogs/alias/alias.py:436
|
||||
msgid "Alias with the name `{name}` was successfully deleted."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:447 redbot/cogs/alias/alias.py:462
|
||||
#: redbot/cogs/alias/alias.py:424 redbot/cogs/alias/alias.py:439
|
||||
msgid "Alias with name `{name}` was not found."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:452
|
||||
#: redbot/cogs/alias/alias.py:429
|
||||
#, docstring
|
||||
msgid "Delete an existing global alias."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
#: redbot/cogs/alias/alias.py:431
|
||||
msgid "There are no global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:468
|
||||
#: redbot/cogs/alias/alias.py:445
|
||||
#, docstring
|
||||
msgid "List the available aliases on this server."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:477
|
||||
#: redbot/cogs/alias/alias.py:454
|
||||
#, docstring
|
||||
msgid "List the available global aliases on this bot."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias.py:480
|
||||
#: redbot/cogs/alias/alias.py:457
|
||||
msgid "There are no global aliases."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:199
|
||||
#: redbot/cogs/alias/alias_entry.py:197
|
||||
msgid "Arguments must be specified with a number."
|
||||
msgstr ""
|
||||
|
||||
#: redbot/cogs/alias/alias_entry.py:206
|
||||
#: redbot/cogs/alias/alias_entry.py:204
|
||||
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